How to calculate Score byby summing all numeric columns using PHP
I have an Excel file, and when I upload it, I want to Calculate the Score by summing all numeric columns except the first one for each row. Here is the R codes:
data$Mark<- rowSums(data[, -1, drop = FALSE]) to give you a clue.