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 + ...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…