R语言-时间序列图

更新时间:2023-07-20 18:45:35 阅读: 评论:0

R语⾔-时间序列图1.时间序列图
plot()函数飘柔洗发水广告
> air<-read.csv("openair.csv")
末将于禁
> plot(air$nox~as.Date(air$date,"%d/%m/%Y %H:%M"),  #把年⽉⽇时分秒转换成⽇期格式
+ type="l",
+ xlab="Time", ylab="Concentration (ppb)",
+ main="Time trend of Oxides of Nitrogen")
zoo()包
> library(zoo)
> plot(zoo(air$nox,as.Date(air$date,"%d/%m/%Y %H:%M")),  #zoo简化plot函数的参数设置西游记好句摘抄
+ xlab="Time", ylab="Concentration (ppb)",
+ main="Time trend of Oxides of Nitrogen")
2.时间刻度可读化
> plot(air$nox~as.Date(air$date,"%d/%m/%Y %H:%M"),type="l",
+ xaxt="n",                                #不画X轴
+ xlab="Time", ylab="Concentration (ppb)",
+ main="Time trend of Oxides of Nitrogen")
> xlabels<-strptime(air$date, format = "%d/%m/%Y %H:%M")
> axis.Date(1,                            #设置X轴刻度显⽰位置
+ at=xlabels[xlabels$mday==1],            #设置刻度为每天⼀个刻度
+ format="%b-%Y")                        #设置标记格式
3.标记特定的时间事件
> plot(air$nox~as.Date(air$date,"%d/%m/%Y %H:%M"),type="l",
+ xlab="Time", ylab="Concentration (ppb)",
刘汉民+ main="Time trend of Oxides of Nitrogen")
> abline(v=as.Date("25/12/2003","%d/%m/%Y"),col="red")    #在特定时间画垂直线
⽰例:股票数据图
初中英语教学案例> library(quantmod)
> library(tries)
> aapl<-get.hist.quote(instrument = "aapl", quote = c("Cl", "Vol"))        #抓取苹果股票数据
卫生条> goog <- get.hist.quote(instrument = "goog", quote = c("Cl", "Vol"))      #抓取⾕歌股票数据
> msft <- get.hist.quote(instrument = "msft", quote = c("Cl", "Vol"))      #抓取微软股票数据
> plot(msft$Clo,main = "Stock Price Comparison",
+ ylim=c(0,800), col="red", type="l", lwd=0.5,
+ pch=19,cex=0.6, xlab="Date" ,ylab="Stock Price (USD)")
> lines(goog$Clo,col="blue",lwd=0.5)
大闹天宫故事
> lines(aapl$Clo,col="gray",lwd=0.5)
> legend("top",horiz=T,legend=c("Microsoft","Google","Apple"),            #horiz=T图例⽔平摆开+ col=c("red","blue","gray"),lty=1,bty="n")
小学教师资格证考几科
> getSymbols("AAPL",src="yahoo")
> barChart(AAPL)                      #画成交量与股价图
> candleChart(AAPL,theme="white")      #画蜡烛图
转载于:/all1008/p/10110749.html

本文发布于:2023-07-20 18:45:35,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1107400.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:时间   刻度   序列图   股票   数据   设置   标记   抓取
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图