R Basics

Posted by:

R is a free software environment for statistical computing and graphics. The following is some basics about R data types.

Comparison of vector,list,matrix and dataframe

  vector list matrix dataframe
creation c list matrix data.frame
same type Y N Y N
class class of its elements list matrix data.frame
Continue Reading →
0