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.
我在文件中有以下结构:
2014 50 2012 60 2016 80
我希望使用第一列作为 x 值和第二列作为 y 值来绘制直方图。
我试过了:
data<-read.table(fileinput.txt, header = T) hist(data[,2])
但它只给了我两个酒吧。
如果我想将其写入 R 脚本,如何将图像保存到服务器上的某个位置?
barplot(dt$obs,dt$year)
看看其他的论点。
您可以使用jpeg将其保存到文件中。
jpeg