comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: IDL 8, log plots and titles
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Switch to threaded view of this topic Create a new topic Submit Reply
Re: IDL 8, log plots and titles [message #73112] Tue, 26 October 2010 13:39 Go to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
b_gom writes:

> Am I missing something, or is IDL 8 fumbling logarithmic y axes and
> plot titles when using the new plot function?

I'm sure the title around there somewhere. Have you
scrolled around in the plot a bit? That's why the
plot scrolling is turned on by default. So you can
find things when they go missing.

Cheers,

David

--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
Re: IDL 8, log plots and titles [message #73114 is a reply to message #73112] Tue, 26 October 2010 13:33 Go to previous messageGo to next message
pgrigis is currently offline  pgrigis
Messages: 436
Registered: September 2007
Senior Member
On Oct 26, 3:03 pm, b_gom <b_...@hotmail.com> wrote:
> Am I missing something, or is IDL 8 fumbling logarithmic y axes and
> plot titles when using the new plot function?
>
> When plotting log plots, the plot title seems to vanish, and also IDL
> does not seem to be able to calculate the y range properly. In the
> sample code below, compare the direct graphics output (which handles
> the range and title correctly automatically) to the new plot function
> output which doesn't seem to be able to figure out what I want:
>
> ----------------------------------------
> x=findgen(100)/100*3*!pi
> y=sin(x)
>
> ;This is what I expect; yaxis handles infinite log range and title
> appears correctly
> plot,x,y,/ylog,title='Direct Graphics Yrange and Title'

"correctly"? I think the automatic choice of yrange for a logarithmic
plot is a matter of personal preference - but certainly for any
serious
work you want to set the yrange explicitely yourself. But even when I
am
too lazy to do so, I would prefer this behavior as default:

title='pretty plot'

;pardon the kilometric one-liner
;wrapped to survive google groups posting
plot,x,y,/ylog, $
yrange=total(y GT 0) GT 0 ? $
[min(y[where(y GT 0)]),max(y)] : $
[(machar()).xmin,(machar()).xmax],$
title=total(y LT 0) GT 0 ? $
'NEGATIVE VALUES NOT PLOTTED '+$
title:title



Ciao,
Paolo


>
> ;Now for the plot function output:
> ;title works for linear y axes
> p1=plot(x,y,yrange=[0.1,1],title='Linear Y Axis
> Works',window_title='Linear Y Axis Works')
> ;title gone for log plots
> p2=plot(x,y,/ylog,yrange=[0.1,1],title='Title Error Log Y
> Axis',window_title='Title Error Log Y Axis')
> ;if you set the yrange, the title appears, but in the wrong place
> p3=plot(x,(y+2)*10,/ylog,yrange=[1,100],title='Title Error Log Y
> Axis',window_title='Title Error Log Y Axis')
> ;if you don't set the yrange, the title is gone
> p4=plot(x,(y+2)*10,/ylog,title='Title Error Log Y
> Axis',window_title='Title Error Log Y Axis')
> ----------------------------------------
>
> Any ideas?
Re: IDL 8, log plots and titles [message #73115 is a reply to message #73114] Tue, 26 October 2010 13:16 Go to previous messageGo to next message
Paul Van Delst[1] is currently offline  Paul Van Delst[1]
Messages: 1157
Registered: April 2002
Senior Member
b_gom wrote:
> Am I missing something, or is IDL 8 fumbling logarithmic y axes and
> plot titles when using the new plot function?
>
> When plotting log plots, the plot title seems to vanish, and also IDL
> does not seem to be able to calculate the y range properly. In the
> sample code below, compare the direct graphics output (which handles
> the range and title correctly automatically) to the new plot function
> output which doesn't seem to be able to figure out what I want:

[test code elided]

My only comment: crikey!

I just ran the same plots as those of the OP but using OG (iplot) rather than NG and I get the same behaviour. Anyone
out there with a v7 install that can run the code using iplot? E.g.

x=findgen(100)/100*3*!pi
y=sin(x)
iplot,x,y,yrange=[0.1,1],title='Linear Y Axis Works',window_title='Linear Y Axis Works'
iplot,x,y,/ylog,yrange=[0.1,1],title='Title Error Log Y Axis',window_title='Title Error Log Y Axis'
iplot,x,(y+2)*10,/ylog,yrange=[1,100],title='Title Error Log Y Axis',window_title='Title Error Log Y Axis'
iplot,x,(y+2)*10,/ylog,title='Title Error Log Y Axis',window_title='Title Error Log Y Axis'

Does one see the same behaviour with v7 OG? Because, if they do that would mean OG has been buggy for a while. On the
plus side, if v7 OG *does not* exhibit the same behaviour, it should be easy for ITTVIS to fix this in v8 since it's a
recent introduction. (Right? :o)

To be fair to the ITTVIS folks, it's got to be difficult to test graphics systems. I mean, how do you test (unit or
regression) the sort of problems the OP is encountering?

But, still.....

cheers,

paulv
Re: IDL 8, log plots and titles [message #73204 is a reply to message #73115] Tue, 26 October 2010 20:30 Go to previous message
Jeremy Bailin is currently offline  Jeremy Bailin
Messages: 618
Registered: April 2008
Senior Member
On Oct 26, 4:16 pm, Paul van Delst <paul.vande...@noaa.gov> wrote:
> b_gom wrote:
>> Am I missing something, or is IDL 8 fumbling logarithmic y axes and
>> plot titles when using the new plot function?
>
>> When plotting log plots, the plot title seems to vanish, and also IDL
>> does not seem to be able to calculate the y range properly. In the
>> sample code below, compare the direct graphics output (which handles
>> the range and title correctly automatically) to the new plot function
>> output which doesn't seem to be able to figure out what I want:
>
> [test code elided]
>
> My only comment: crikey!
>
> I just ran the same plots as those of the OP but using OG (iplot) rather than NG and I get the same behaviour. Anyone
> out there with a v7 install that can run the code using iplot? E.g.
>
> x=findgen(100)/100*3*!pi
> y=sin(x)
> iplot,x,y,yrange=[0.1,1],title='Linear Y Axis Works',window_title='Linear Y Axis Works'
> iplot,x,y,/ylog,yrange=[0.1,1],title='Title Error Log Y Axis',window_title='Title Error Log Y Axis'
> iplot,x,(y+2)*10,/ylog,yrange=[1,100],title='Title Error Log Y Axis',window_title='Title Error Log Y Axis'
> iplot,x,(y+2)*10,/ylog,title='Title Error Log Y Axis',window_title='Title Error Log Y Axis'
>
> Does one see the same behaviour with v7 OG? Because, if they do that would mean OG has been buggy for a while. On the
> plus side, if v7 OG *does not* exhibit the same behaviour, it should be easy for ITTVIS to fix this in v8 since it's a
> recent introduction. (Right? :o)
>
> To be fair to the ITTVIS folks, it's got to be difficult to test graphics systems. I mean, how do you test (unit or
> regression) the sort of problems the OP is encountering?
>
> But, still.....
>
> cheers,
>
> paulv

I don't see a title on any of those.

IDL> print, !version
{ x86_64 darwin unix Mac OS X 7.0.4 Sep 3 2008 64 64}

-Jeremy.
Re: IDL 8, log plots and titles [message #73209 is a reply to message #73114] Tue, 26 October 2010 14:21 Go to previous message
b_gom is currently offline  b_gom
Messages: 105
Registered: April 2003
Senior Member
Well, maybe 'correctly' was the wrong choice of words. I meant that
the direct graphics routines almost always do something reasonable if
you don't set any keywords. They don't refuse to plot logarithmic data
or hide titles, for example. I won't be carrying around
"yrange=total(y GT 0) GT 0 ? > [min(y[where(y GT 0)]),max(y)] :
[(machar()).xmin,(machar()).xmax]" in my head each time I want to do a
quick log plot..

I've been encouraging coleagues to start using IDL 8 because of the
great new graphics functions, and almost immediately I get questions
about plot behaviour that I can't explain.

A related question- I assume it isn't possible to produce multiple
plots with the new graphics functions without manually defining the
layout. i.e., there is no equivalent of setting !p.multi. Is this
true?

Thanks


On Oct 26, 2:33 pm, Paolo <pgri...@gmail.com> wrote:

> "correctly"? I think the automatic choice of yrange for a logarithmic
> plot is a matter of personal preference - but certainly for any
> serious
> work you want to set the yrange explicitely yourself. But even when I
> am
> too lazy to do so, I would prefer this behavior as default:
>
> title='pretty plot'
>
> ;pardon the kilometric one-liner
> ;wrapped to survive google groups posting
> plot,x,y,/ylog, $
> yrange=total(y GT 0) GT 0 ? $
> [min(y[where(y GT 0)]),max(y)] : $
> [(machar()).xmin,(machar()).xmax],$
> title=total(y LT 0) GT 0 ? $
> 'NEGATIVE VALUES NOT PLOTTED '+$
> title:title
>
> Ciao,
> Paolo
>
>
>
>
>
>> ;Now for the plot function output:
>> ;title works for linear y axes
>> p1=plot(x,y,yrange=[0.1,1],title='Linear Y Axis
>> Works',window_title='Linear Y Axis Works')
>> ;title gone for log plots
>> p2=plot(x,y,/ylog,yrange=[0.1,1],title='Title Error Log Y
>> Axis',window_title='Title Error Log Y Axis')
>> ;if you set the yrange, the title appears, but in the wrong place
>> p3=plot(x,(y+2)*10,/ylog,yrange=[1,100],title='Title Error Log Y
>> Axis',window_title='Title Error Log Y Axis')
>> ;if you don't set the yrange, the title is gone
>> p4=plot(x,(y+2)*10,/ylog,title='Title Error Log Y
>> Axis',window_title='Title Error Log Y Axis')
>> ----------------------------------------
>
>> Any ideas?- Hide quoted text -
>
> - Show quoted text -- Hide quoted text -
>
> - Show quoted text -
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Syntax Highlighting of user DLM's
Next Topic: Re: Syntax Highlighting of user DLM's

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Wed Oct 08 13:32:27 PDT 2025

Total time taken to generate the page: 0.00598 seconds