library(ggplot2)
text<-"
name,date,value
PLT,2017-01-01,40
PLT,2017-01-03,37
"
mydata<-read.table(header=TRUE,sep=",",text=text)
mydata$date<-as.Date(mydata$date)
ggplot(mydata,aes(date,value))+geom_line()
上面的代码在Rstudio上获得了“R会话中止”,而在线编译器成功了。
答案 0 :(得分:0)
我在Rgui中运行代码并且它有效,所以我认为我的Rstudio可能有一些问题。但我仍然不知道为什么。