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... 17.04.2025 0 Read More