如何防止R中的程序退出?

时间:2017-04-14 01:45:50

标签: r

我是R的新手,在运行ggplot命令时遇到问题。以下是我的代码。程序立即退出而不显示图表。我的代码有什么问题吗?

#!/usr/bin/env Rscript
library(ggplot2)

data <- read.csv(file="./data/assignment-02-data.csv",head=TRUE,sep=",")

head(data)
nrow(data)

print(ggplot(data, aes(longitude, latitude)) + geom_point())

从这篇文章:Generate multiple graphics from within an R function。它说我需要打印该值,但它不起作用。

我正在从shell ./myr.r运行该程序。

0 个答案:

没有答案