- 积分
- 14
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2022-3-1
- 最后登录
- 1970-1-1
|
50金钱
想把过显著性检验和不过显著性检验的矢量箭头颜色进行区别,但是一叠加,没有任何变化,是不可以这么操作吗?有啥其他方法吗?谢谢!!!
prob = ttest(ep_6_early_ano_ave*10e4, ep_6_early_ano_var*10e4, nyear_6, ep_5_early_ano_ave*10e4, ep_5_early_ano_var*10e4, nyear_5, False,False)
ep6_ep5_t = mask(ep6_ep5, prob.gt.0.05, False)
epf6_epf5_t = mask(epf6_epf5, prob.gt.0.05, False)
copy_VarMeta(ep5_JRA, ep6_ep5_t)
copy_VarMeta(ep5_JRA, epf6_epf5_t)
res@vcLineArrowColor = "darkgreen"
res@gsnLeftString = "(f) (b)-(c)"
res@vcRefAnnoOn = True
plot = gsn_csm_pres_hgt_vector(wks,div6_div5(:,:71),epf6_epf5(:,:71),ep6_ep5(:,:71),res) ;所有数值
res@vcLineArrowColor = "red"
plot1 = gsn_csm_pres_hgt_vector(wks,div6_div5(:,:71),epf6_epf5_t(:,:71),ep6_ep5_t(:,:71),res) ;通过显著性检验的数值
overlay(plot,plot1)
|
|