R Functions (M2) Flashcards

1
Q

how do we import data set

A

read.csv(“file”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

not equal to, equal to

A

!=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

input percentile and it’ll give you z-score

A

qnorm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

input z-score and it’ll give you percentile

A

pnorm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly