Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

enter image description here

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
302 views
Welcome To Ask or Share your Answers For Others

1 Answer

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 + ...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...