Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何为学生分配成绩?
grades<-runif(18,min=80,max=100) df<-data.frame(student=c("Amanda","Betty","Carol"),grades,semester=1:6) View(df) ggplot(df,aes(x=semester,y=grades,color=student))+geom_line()+ facet_wrap(~student)