下面调用plot()可以工作,而调用ggplot()不行。我的视力很差,也许我错过了一些明显的东西?
library(ggplot2)
n=1000
data <- rnorm(n) #Error in rpois(n) : argument "lambda" is missing, with no default
dates <- seq(as.Date("2017-05-01"),length=n,by= "days")
ts <- xts(x=data, order.by=dates)
plot(ts)
ggplot(ts)
1条答案
按热度按时间4szc88ey1#
我们可以这样做: