dat1 %>%
rowwise() %>%
mutate(total_score = sum(c_across(contains("score"))))
I have the above code that allows me to sum all columns that contain the word score in the variable name
how do I do rowwise sum that allows me to sum all my columns except for the ones titled "dog", "monkey" "Ali". this would bevery helpful to know thank you sooo much