Re: X-Axis title in X-Log plot.

From: Mary Haley <haley_at_nyahnyahspammersnyahnyah>
Date: Thu, 8 Nov 2007 14:06:44 -0700 (MST)

Yi,

Your code looks correct. I took your code, used the same resources
(except for gsnDraw and gsnFrame being se to False), and added some
dummy data. Can you try this and let me know if you still have a
problem:

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"

begin
  wks = gsn_open_wks("x11","log")

  res1 = True
  res1_at_tiMainString = "Frequency and Response"

  res1_at_trXMinF = 0.001
  res1_at_trXMaxF = 0.5
  res1_at_trYMinF = -0.2
  res1_at_trYMaxF = 1.2
  res1_at_trXLog = True
  res1_at_trYLog = False
  res1_at_tmXBMode = "Explicit" ; explicit labels
  res1_at_tmXBValues = (/0.01,0.02,0.1/)
  res1_at_tmXBLabels = (/"100","50","10"/)
  res1_at_tiXAxisOn = True
  res1_at_tiXAxisString = "Period (days)" ;;;tiXAxisString

  freq = fspan(0.001,0.5,30)
  wts = random_uniform(-0.2,1.2,30)

  plot = gsn_csm_xy (wks,freq,wts,res1)
end

On Thu, 8 Nov 2007, Wang, Yi wrote:

> Hi There:
>
> My code seems not willing to add X-Axis for a X-Log plot as below:
>
> res1 = True
> res1_at_gsnDraw = False
> res1_at_gsnFrame = False
> res1_at_tiMainString = "Frequency and Response"
>
> res1_at_trXMinF = 0.001
> res1_at_trXMaxF = 0.5
> res1_at_trYMinF = -0.2
> res1_at_trYMaxF = 1.2
> res1_at_trXLog = True
> res1_at_trYLog = False
> res1_at_tmXBMode = "Explicit" ; explicit labels
> res1_at_tmXBValues = (/0.01,0.02,0.1/)
> res1_at_tmXBLabels = (/"100","50","10"/)
> res1_at_tiXAxisOn = True
> res1_at_tiXAxisString = "Period (days)" ;;;tiXAxisString
>
> ; plot(1) = gsn_csm_xy (wks,wts_at_resp,wts_at_freq,res1)
> plot(1) = gsn_csm_xy (wks,freq,wts_at_resp,res1)
>
> How do I fix this?
>
> Thanks in advance,
>
> Yi
>
> _______________________________________________
> ncl-talk mailing list
> ncl-talk_at_ucar.edu
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>
_______________________________________________
ncl-talk mailing list
ncl-talk_at_ucar.edu
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Thu Nov 08 2007 - 14:06:44 MST

This archive was generated by hypermail 2.2.0 : Fri Nov 09 2007 - 09:36:39 MST