1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
View contents of data frame
View(nameofdataframe)
View the first few rows of data frame
head(nameofdataframe)
data stored in nth row of mth column
nameofdataframe[n,m]
data stored in nth row
nameofdataframe[n,]
data stored in mth column
nameofdataframe[,m]
Output of column
nameofdataframe$columnname
Output of data greater than x from chosen column
nameofdataframe[nameofdataframe$columnname>x]