所以我在excel中有一组数据:
StudID Score Participation
100 54 0.43
432 70 0.65
321 98 0.96
100 65 0.55
我将其读入R:
stud_stat <- read.csv("student.csv")
我现在想要做的是仅基于特定ID检索分数和参与值。例如,如果ID为100,我会希望:
StudID Score Participation
100 54 0.43
100 65 0.55
我做了类似的事情:
find <- stud_stat[which(stud_stat$StudID == "100")]
,我收到一条错误消息,其中提到未定义的选定列。