Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

PGPlot with PDL

by SparkeyG (Curate)
on Sep 26, 2002 at 20:34 UTC ( [id://201042]=perlquestion: print w/replies, xml ) Need Help??

SparkeyG has asked for the wisdom of the Perl Monks concerning the following question:

While working with PGPlot, I've run into a problem with graphing my data. I have not been able to figure out how to change the labels of the X-Axis. I want to be able to graph data over a period of time, ie. Time of Day, Day of month.
Help, Obi-PM-Kenobi your my only hope.

--SparkeyG

Replies are listed 'Best First'.
Re: PGPlot with PDL
by Zaxo (Archbishop) on Sep 26, 2002 at 20:58 UTC

    To affect the numeric labels, you just need to scale that axis' numbers to suit your new units. To set the title, use the env method. From the PDL::Graphics::PGPLOT::Window pod:

    $rate_win = PDL::Graphics::PGPLOT::Window->new(Device => '/xw', Aspect => 1, WindowWidth => 5, NXPanel => 2); $area_win = PDL::Graphics::PGPLOT::Window->new(Device => '/xw', Aspect => 1, WindowWidth => 5); $rate_win->env(0, 10, 0, 1000, {XTitle => 'Days', YTitle => '#Rabbits' +}); $rate_win->env(0, 10, 0, 100, {Xtitle=>'Days', Ytitle => 'Rabbits/day' +}); $area_win->env(0, 1, 0, 1, {XTitle => 'Km', Ytitle => 'Km'}); # And theoretical prediction. $rate_win->line(sequence(10), fibonacci(10), {Panel => [1, 1]});

    After Compline,
    Zaxo

      That isn't exactly what I was looking for. What I want is the ability to label my x-axis for each day, ie 08/23/2002 to 08/29/2002 or from 08:00 to 16:30.
Re: PGPlot with PDL
by etj (Deacon) on Jun 26, 2022 at 15:53 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://201042]
Approved by ybiC
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-25 06:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found