- 积分
- 36
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-4-24
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
res = True
res@gsnDraw = False
res@gsnFrame = False
res@xyLineThicknessF = 2
res@trXMinF = 0.
res@trXMaxF = 6.
res@xyLineColors ="black"
res@gsnCenterString = "RMSE of T"
res@gsnCenterStringFontHeightF=0.04
res@tiXAxisString =""
res@gsnLeftString =""
plot(1) = gsn_csm_xy(wks,rmset,rmset&bottom_top,res)
res@tiXAxisString=""
res@xyMonoDashPattern =False
;patterns =("$_$_$_$_$_$")
res@xyDashPattern = 1
plot(3) = gsn_csm_xy(wks,rmsetr,rmsetr&bottom_top,res)
overlay(plot(1),plot(3))
res@xyDashPattern = 0
res@xyLineColors ="grey"
plot(5) =gsn_csm_xy(wks,rmsect,rmsect&bottom_top,res)
overlay(plot(1),plot(5))
plot(3)里面应该是虚线,可是画在图上都是实线是怎么回事? |
|