load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl" begin scatdat = new((/5,10/),float) scatdat(0,:) = random_uniform(.00001, 5, 10) scatdat(1,:) = random_uniform(.00001, 4, 10) scatdat(2,:) = random_uniform(.00004, 3, 10) scatdat(3,:) = random_uniform(.00003, 2, 10) scatdat(4,:) = random_uniform(.00002, 1, 10) wksSc=gsn_open_wks("ps","ZR_scatter") resS=True ; resS@gsnMaximize=True resS@xyMarkLineModes=(/"Markers","Lines","Lines","Lines","Lines"/) ; resS@xyMarkerColor="black" resS@xyMarkerColors=(/"black","red","green","blue","purple"/) ; resS@xyMonoLineColor=False resS@xyLineColors=(/"black","red","green","blue","purple"/) ; resS@xyMarkers=(/16,0,0,0,0/) resS@xyMarker=16 ; resS@xyMarkerSizeF=0.005 resS@xyMarkerSizes=(/0.005,.001,.001,.001,.001/) resS@trYLog=True resS@trXLog=True resS@xyLineThicknesses=(/1.,2.,2.,2.,2./) resS@xyDashPatterns=(/0,0,0,0,0/) resS@trXMinF=10e-5 resS@trYMinF=10e-8 scatter=gsn_csm_xy(wksSc,fspan(.00001,5,10),scatdat,resS) end