how to calculate combined column mean value in R

喜夏-厌秋 提交于 2019-12-25 19:05:40

问题


I want to make representative combined column and calculate mean.

for example, there are BILL_AMT(1,2,3,4,5,6). but i want

BILL_AMT <- which includes mean value of all BILL_AMT values.

how can i do?


回答1:


Please provide a reproducible example of your data.

Just assuming what you're trying to do:

data <- data.frame(x = rep(1:10,1), y = rep(11:20, 1))

data %>% 
  rowwise() %>% 
  mutate(mean = mean(x + y + ...))

Based on your comment: fill in your variables for x + y + ...



来源:https://stackoverflow.com/questions/52941895/how-to-calculate-combined-column-mean-value-in-r

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!