R语言画时间序列图

Python042

R语言画时间序列图,第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))

1、整理数据,第一列为基因列表,后面为不同时期表达量。

2、

3、图片美化调整。

4、输出相关信息