Replace NA values by row means

前端 未结 3 1863
耶瑟儿~
耶瑟儿~ 2020-11-28 15:33

I want to replace my NA values from a matrix acquired by :

read.table(…)

Those values should be the mean of the corresponding row.

3条回答
  •  孤独总比滥情好
    2020-11-28 16:25

    Here's some sample data.

    m <- matrix(1:16, nrow=4)
    m[c(1,4,6,11,16)] <- NA
    

    And here's how I'd fill in missings with the row means.

    k <- which(is.na(m), arr.ind=TRUE)
    m[k] <- rowMeans(m, na.rm=TRUE)[k[,1]]
    

    Your data will be in a data.frame; you'll have to convert to a matrix first using as.matrix. You may or may not want to leave it in that format; to convert back use as.data.frame.

提交回复
热议问题