首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
rscript专题
[Rscript]逻辑回归识别学生群体的R实现
library(ggplot2)library(pROC)###读取数据并查看数据情况setwd("D:\\student_recognition")student<-read.csv("student.csv")str(student) #查看变量apply(student,2,function(x){mean(x=='NULL'|x=="")}) #查看缺失值情况###数据预处理
阅读更多...