Vectors (CloudStat)
The simplest type of data object in R is a vector, which is simply an ordered set of values. Some further examples of creating vectors are shown below:
Input:
1:20
Output:
[1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
This creates a... [Read more...]