繁体   English   中英

R中缺少值的加权平均值计算

[英]Weighted mean calculation in R with missing values

有谁知道是否可以在缺少值时计算R中的加权平均值,而在缺少值时,现有值的权重会按比例向上缩放?

为了清楚地表达这一点,我创建了一个假设的场景。 这描述了问题的根源,需要根据丢失的值为每一行调整标量。

图片:加权平均值计算

文件:Excel中的加权平均值计算

发布示例数据集的最佳方法是使用dput(head(dat, 20)) ,其中dat是数据集的名称。 图形图像是一个非常糟糕的选择。
数据。

dat <-
structure(list(Test1 = c(90, NA, 81), Test2 = c(91, 79, NA), 
    Test3 = c(92, 98, 83)), .Names = c("Test1", "Test2", "Test3"
), row.names = c("Mark", "Mike", "Nick"), class = "data.frame")

w <-
structure(list(Test1 = c(18, NA, 27), Test2 = c(36.4, 39.5, NA
), Test3 = c(36.8, 49, 55.3)), .Names = c("Test1", "Test2", "Test3"
), row.names = c("Mark", "Mike", "Nick"), class = "data.frame")

码。
您可以使用功能weighted.mean在基础包statssapply这一点。 请注意,如果音符和权重的数据集是类matrix R个对象,则不需要unlist

sapply(seq_len(nrow(dat)), function(i){
    weighted.mean(unlist(dat[i,]), unlist(w[i, ]), na.rm = TRUE)
})

使用weighted.mean从基础stats包的说法na.rm = TRUE应该得到你需要的结果。 这里是一个tidyverse方式可以这样做:

library(tidyverse)
scores <- tribble(
 ~student, ~test1, ~test2, ~test3,
   "Mark",     90,     91,     92,
   "Mike",     NA,     79,     98,
   "Nick",     81,     NA,     83)

weights <- tribble(
  ~test,   ~weight, 
  "test1",     0.2, 
  "test2",     0.4,
  "test3",     0.4)

scores %>% 
  gather(test, score, -student) %>%
  left_join(weights, by = "test") %>%
  group_by(student) %>%
  summarise(result = weighted.mean(score, weight, na.rm = TRUE))
#> # A tibble: 3 x 2
#>   student   result
#>     <chr>    <dbl>
#> 1    Mark 91.20000
#> 2    Mike 88.50000
#> 3    Nick 82.33333

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM