Answers for "find standard deviation using r"

R
3

r standard deviation

> duration = faithful$eruptions    # the eruption durations 
> sd(duration)                     # apply the sd function 
[1] 1.1414
Posted by: Guest on February-03-2021

Code answers related to "find standard deviation using r"

Browse Popular Code Answers by Language