You are doing an analysis in R and need to use the summary f
You are doing an analysis in R and need to use the \'summary()\' function, but you are not exactly sure how it works. Which of the following commands should you run?
- help(summary)
-?summary
-man(summary)
-?summary()
Solution
example:
x = c (1,4,5,6)
summary(x)
from R:
> x = c (1,4,5,6)
> summary(x)
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.00 3.25 4.50 4.00 5.25 6.00
if you need to read about summary, write in R
?summary
