R语言画时间序列图

2025-05-20 11:09:58
推荐回答(2个)
回答(1):

用xlim或者ylim命令。比如:
# Specify axis options within plot()
plot(x, y, main="title", sub="subtitle",
xlab="X-axis label", ylab="y-axix label",
xlim=c(xmin, xmax), ylim=c(ymin, ymax))

回答(2):

哥们,你跟我选了一个课吧