[Thread Prev][Thread Next][Index]

Re: [ferret_users] Decimal digits on a plot axis



This is controlled by PPL XFOR and YFOR:
 
In each plot panel:
 
PLOT/SET ....
PPL XFOR,(f5.2); PPL YFOR,(...)   ! fortran-style formats
PPL PLOT
 
You can also control lat/lon labels this way (for example to force these if the data is not on a lat-lon grid but it should be):
 
PPL YFOR,(i5,''lat'')   ! force integer labels
PPL YFOR,(f5.1,''lon'')   ! single decimal label; I think you must allow for 5 digits
 
In the above, those are two single quotes around lat and lon, not a double quote as my mail tool thinks I want!
 
Using the two-single-quote method you can add other things, for example ''#C'' etc. Search the documentation for XFOR and YFOR.
 
Billy
 
> On Jul 28, 2021, at 4:24 PM, Claude-Michel Nzotungicimpaye <miklonzo.science@xxxxxxxxx> wrote:
> 
> Hi Ferreters,
> 
> Is there a way of controlling the number of decimal digits (or decimal figures) for labels on a plot axis?
> 
> To illustrate what I mean, please check the attached figure. For example, I'd like the horizontal axis in panel (b) to have two-decimal numbers -0.01, 0 (or 0.00 at most) and 0.01, instead of the four-decimal numbers currently displayed by default.
> 
> Thanks,
> <Figure_FerretList.png>
 
 
 

[Thread Prev][Thread Next][Index]