The standard R sd() function uses a different standard deviation equation than numpy does. R uses the MatLab equation so:
>sd(c(1,2,6)
[1] 2.645751
>np.std([1,2,6])
[1] 2.1602468994692869
What is an equivalent R function that produces the bottom result?