R Functions (M2) Flashcards
1
Q
how do we import data set
A
read.csv(“file”)
2
Q
not equal to, equal to
A
!=
3
Q
input percentile and it’ll give you z-score
A
qnorm
4
Q
input z-score and it’ll give you percentile
A
pnorm
5
Q
input a t-statistic and the degrees of freedom (df). The function returns the cumulative probability (percentile) for that t-statistic.
A
pt
6
Q
input a percentile (cumulative probability) and the degrees of freedom (df). The function returns the t-statistic corresponding to that percentile.
A
qt