load "gsn_code.ncl" begin wks = gsn_open_wks("x11","example") ; Open a workstation. markx = (/ .415, .326, .225, .159, .159, .225, .326, .415, .450/) marky = (/ .846, .898, .880, .801, .699, .620, .602, .654, .750/) gsres = True ; Indicate you want to set some resources. gsres@gsMarkerColor = 3 ; Change marker color. gsres@gsMarkerSizeF = 10. ; Increase marker size by a factor of 10. gsn_polymarker_ndc(wks,markx,marky,gsres) ; Draw the polymarkers. gsres@gsMarkerColor = 18 ; Change marker color. gsres@gsMarkerIndex = 16 ; Change marker type to a filled circle. gsn_polymarker_ndc(wks,markx+.4,marky-.4,gsres) ; Draw the polymarkers. frame(wks) ; Advance the frame. end