Package:
install.packages("pROC")
library(pROC)
The dataset looks like this: Dataset #Apologies for not including the actual dataset
I am trying to apply the roc() code across all columns starting from column 3:
roc1 <- roc(df$Immunoscore,df$col_name)
Currently, I was thinking of doing a lapply
method.
list_of_AUC <- lapply(3:ncol, function(i){
roc(RD0161_Final$Immunoscore, RD0161_Final[,i])})
I'm getting a mistake:
Error in 3:ncol : NA/NaN argument
Is there a better method? please help!
Does this work for you?
Alternatively, you could specify the column name