rstudio ?

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

rstudio ?

mollie
How do we enter a new data set? what are the commands for that if we just have a bunch of data points? how do we enter that to be able to use that to find the qqnorm and stuff?
Reply | Threaded
Open this post in threaded view
|

Re: rstudio ?

Taeho Kim
Administrator
Hi mollie,

I guess you ask this because of Problem #3.
In this case, you can use the command "c".
As we want to obtain the mean and standard deviation,
let us save the data in a specific variable, "sheep", as follows:

sheep<-c(33, 26, 35, 31, 23, 25)

Once you have this, please use the variable as the argument of
qqnorm, mean, sd, and etc.