R Programming basics

R Programming basics
Quick notes on R Datatypestypeof(x) or class(x)– both returns the data type of variable. however, typeof(x) is tend to be more specific ⛶x<-23.5 print(class(x)) >>>Numeric pr...
0 Read More