📜  在 R 编程中计算值的方差和标准差 – var() 和 sd()函数

📅  最后修改于: 2022-05-13 01:54:46.272000             🧑  作者: Mango

在 R 编程中计算值的方差和标准差 – var() 和 sd()函数

R 语言中的var()函数计算向量的样本方差。它是衡量值与平均值相差多少的度量。

示例 1:计算向量的方差

# R program to illustrate
# variance of vector
  
# Create example vector
x <- c(1, 2, 3, 4, 5, 6, 7)   
  
# Apply var function in R 
var(x)                       
  
print(x)

输出:

4.667

在上面的代码中,我们取了一个示例向量“x1”并计算了它的方差。

sd()函数

sd()函数用于计算 R 中给定值的标准差。它是其方差的平方根。

Syntax: sd(x)

Parameters:
x: numeric vector

示例 1:计算向量的标准差

# R program to illustrate
# standard deviation of vector
  
# Create example vector
x2 <- c(1, 2, 3, 4, 5, 6, 7) 
  
# Compare with sd function
sd(x2)                          
  
print(x2)
Output: 2.200

在上面的代码中,我们取了一个示例向量“x2”并计算了它的标准差。