• 2022-06-08
    某学生成绩表中有6列:序号、学号、姓名、语文成绩、数学成绩、英语成绩,读入数据放在数据框x中,要对语文成绩分组,分为(0,60] (60,70] (70,80] (80,90] (90,100]五组,放在变量yw_group中,应使用的的命令是( )
    A: yw_group<- cut(x$语文成绩,breaks = c(0, 60, 70, 80, 90))
    B: yw_group<- cut(x$语文成绩))
    C: yw_group<- cut(x$语文成绩,breaks = c(0, 60, 70, 80, 90,100))
    D: yw_group<- cut(x$语文成绩,breaks = c(60, 70, 80, 90,100))
  • 举一反三