- 积分
- 127
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2022-10-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
家人们,我在对趋势进行显著性检验后,想将通过显著性检验的区域打点,但是它所打出来的点超过了研究区域,想问一下大家这个问题怎么解决?实现打点的代码是:sres = True ; set up a second resource list
sres@gsnDraw = False ; do not draw the plot
sres@gsnFrame = False ; do not advance the frame
sres@cnLineLabelsOn = False ; do not use line labels
sres@cnLinesOn = False ; do not draw contour lines
sres@cnInfoLabelOn = False
sres@cnFillOn = True ; color fill
sres@lbLabelBarOn= False
sres@cnLevelSelectionMode = "ExplicitLevels"
; sres@cnFillDrawOrder="postDraw"
sres@cnLevels = (/0.05/)
sres@cnMonoFillPattern = False ; want multiple patterns
sres@cnFillPatterns = (/17,-1/) ; the patterns
sres@cnMonoFillScale = False ; want different densities
sres@cnFillScales = (/1,1/) ; change densities
sres@cnMonoFillColor =True
sres@cnFillDotSizeF = 0.003
sres@cnFillOpacityF = 0.6 ,运行后它有一个提示:warning:ContourPlotSetValues: Data values out of range of levels set by EXPLICITLEVELS mode。然而我通过输出得到的p值均小于0.05,所以说明整个区域均通过了显著性检验。请各位大佬赐教!
|
|