Initial analysis of the data Flashcards
What are all R commands?
Functions
how do you get data into R
Read.table()
read.csv()
how do you get data out of R
write.csv()
what is nominal data?
names of things
what is ordinal data?
ordered names
what is interval data?
numeric with no true zero (Celsius)
what is ratio data?
numeric with true zero (kelvin)
which 2 data classifications are categorical or discreet?
nominal and ordinal
which 2 data classifications are continuous variables?
interval and ratio
what is a number?
can have decimals
what is a integer?
whole number
what is a character?
not a number
what is a vector?
set of values of the same data (combine function c() )
what is a list?
collection of different vectors or other data structures
what is a factor?
categorical variable
fixed set of values
what are arrays?
n-dimensional homogeneous data types
what are matrices?
2D and numeric
what is a data frame?
a list but all component vectors are same length
what is the R code for viewing the data?
head()
tail()