PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Serveur - Sécurité et techniques > comp.unix.shell > plotting from the shell
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
comp.unix.shell Using and programming the Unix shell.

plotting from the shell

Réponse
 
LinkBack Outils de la discussion
Vieux 09/01/2008, 16h49   #1
Glenn MacGougan
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut plotting from the shell

I have a multiple comma delimited data files with 6 columns of numeric
data
e.g.
time (s), value1, value2, value3, value4, value5
time (s), value1, value2, value3, value4, value5
....
I want to plot all of this data (time vs value, all on one plot)
directly to an image file for later viewing using a shell script.

Any suggestions?
  Réponse avec citation
Vieux 09/01/2008, 16h58   #2
Andreas Wilm
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

Glenn MacGougan wrote:
> I have a multiple comma delimited data files with 6 columns of numeric
> data
> e.g.
> time (s), value1, value2, value3, value4, value5
> time (s), value1, value2, value3, value4, value5
> ...
> I want to plot all of this data (time vs value, all on one plot)
> directly to an image file for later viewing using a shell script.
>
> Any suggestions?



You could use gnuplot.
See for example
http://www.ibm.com/developerworks/library/l-gnuplot/
or
http://www.duke.edu/~hpgavin/gnuplot.html

Andreas

--

Andreas Wilm | 0x7C68FBCC
  Réponse avec citation
Vieux 09/01/2008, 18h08   #3
Glenn MacGougan
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

On Jan 9, 9:58 am, Andreas Wilm <andreas.w...@ucd.ie> wrote:
> Glenn MacGougan wrote:
> > I have a multiple comma delimited data files with 6 columns of numeric
> > data
> > e.g.
> > time (s), value1, value2, value3, value4, value5
> > time (s), value1, value2, value3, value4, value5
> > ...
> > I want to plot all of this data (time vs value, all on one plot)
> > directly to an image file for later viewing using a shell script.

>
> > Any suggestions?

>
> You could use gnuplot.
> See for examplehttp://www.ibm.com/developerworks/library/l-gnuplot/
> orhttp://www.duke.edu/~hpgavin/gnuplot.html
>
> Andreas
>
> --
>
> Andreas Wilm | 0x7C68FBCC


It took some time but gnuplot with input redirection, png output, and
input handling for comma delimited files, I was able to get something
reasonable.

Plot2D, http://sourceforge.net/projects/plot2d, can also generate
plots like this and it's a fair bit easier to learn but it's simpler
and less powerful. It also works on Windows.
  Réponse avec citation
Vieux 09/01/2008, 18h54   #4
Cyrus Kriticos
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

Glenn MacGougan wrote:
> On Jan 9, 9:58 am, Andreas Wilm <andreas.w...@ucd.ie> wrote:
>> Glenn MacGougan wrote:
>>> I have a multiple comma delimited data files with 6 columns of numeric
>>> data
>>> e.g.
>>> time (s), value1, value2, value3, value4, value5
>>> time (s), value1, value2, value3, value4, value5
>>> ...
>>> I want to plot all of this data (time vs value, all on one plot)
>>> directly to an image file for later viewing using a shell script.
>>> Any suggestions?

>> You could use gnuplot.
>> See for examplehttp://www.ibm.com/developerworks/library/l-gnuplot/
>> orhttp://www.duke.edu/~hpgavin/gnuplot.html
>>

> It took some time but gnuplot with input redirection, png output, and
> input handling for comma delimited files, I was able to get something
> reasonable.
>
> Plot2D, http://sourceforge.net/projects/plot2d, can also generate
> plots like this and it's a fair bit easier to learn but it's simpler
> and less powerful. It also works on Windows.


You startet this thread.
You suggest plot2d.
You are author of plot2d.

What did I not understand?

--
Best regards | Be nice to America or they'll bring democracy to
Cyrus | your country.
  Réponse avec citation
Vieux 09/01/2008, 18h54   #5
Cyrus Kriticos
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

Glenn MacGougan wrote:
> On Jan 9, 9:58 am, Andreas Wilm <andreas.w...@ucd.ie> wrote:
>> Glenn MacGougan wrote:
>>> I have a multiple comma delimited data files with 6 columns of numeric
>>> data
>>> e.g.
>>> time (s), value1, value2, value3, value4, value5
>>> time (s), value1, value2, value3, value4, value5
>>> ...
>>> I want to plot all of this data (time vs value, all on one plot)
>>> directly to an image file for later viewing using a shell script.
>>> Any suggestions?

>> You could use gnuplot.
>> See for examplehttp://www.ibm.com/developerworks/library/l-gnuplot/
>> orhttp://www.duke.edu/~hpgavin/gnuplot.html
>>

> It took some time but gnuplot with input redirection, png output, and
> input handling for comma delimited files, I was able to get something
> reasonable.
>
> Plot2D, http://sourceforge.net/projects/plot2d, can also generate
> plots like this and it's a fair bit easier to learn but it's simpler
> and less powerful. It also works on Windows.


You started this thread.
You suggest plot2d.
You are author of plot2d.

What did I not understand?

--
Best regards | Be nice to America or they'll bring democracy to
Cyrus | your country.
  Réponse avec citation
Vieux 09/01/2008, 21h54   #6
Glenn MacGougan
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

On Jan 9, 11:54 am, Cyrus Kriticos <cyrus.kriti...@googlemail.com>
wrote:
> Glenn MacGougan wrote:
> > On Jan 9, 9:58 am, Andreas Wilm <andreas.w...@ucd.ie> wrote:
> >> Glenn MacGougan wrote:
> >>> I have a multiple comma delimited data files with 6 columns of numeric
> >>> data
> >>> e.g.
> >>> time (s), value1, value2, value3, value4, value5
> >>> time (s), value1, value2, value3, value4, value5
> >>> ...
> >>> I want to plot all of this data (time vs value, all on one plot)
> >>> directly to an image file for later viewing using a shell script.
> >>> Any suggestions?
> >> You could use gnuplot.
> >> See for examplehttp://www.ibm.com/developerworks/library/l-gnuplot/
> >> orhttp://www.duke.edu/~hpgavin/gnuplot.html

>
> > It took some time but gnuplot with input redirection, png output, and
> > input handling for comma delimited files, I was able to get something
> > reasonable.

>
> > Plot2D,http://sourceforge.net/projects/plot2d, can also generate
> > plots like this and it's a fair bit easier to learn but it's simpler
> > and less powerful. It also works on Windows.

>
> You started this thread.
> You suggest plot2d.
> You are author of plot2d.
>
> What did I not understand?
>
> --
> Best regards | Be nice to America or they'll bring democracy to
> Cyrus | your country.


So, nothing wrong with promoting what I think is a useful tool. I'm
also interested in how others are performing something similar.
  Réponse avec citation
Vieux 09/01/2008, 22h41   #7
Ed Morton
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

Glenn MacGougan wrote:

> On Jan 9, 11:54 am, Cyrus Kriticos <cyrus.kriti...@googlemail.com>
> wrote:
>
>>Glenn MacGougan wrote:
>>
>>>On Jan 9, 9:58 am, Andreas Wilm <andreas.w...@ucd.ie> wrote:
>>>
>>>>Glenn MacGougan wrote:
>>>>
>>>>>I have a multiple comma delimited data files with 6 columns of numeric
>>>>>data
>>>>>e.g.
>>>>>time (s), value1, value2, value3, value4, value5
>>>>>time (s), value1, value2, value3, value4, value5
>>>>>...
>>>>>I want to plot all of this data (time vs value, all on one plot)
>>>>>directly to an image file for later viewing using a shell script.
>>>>>Any suggestions?
>>>>
>>>>You could use gnuplot.
>>>>See for examplehttp://www.ibm.com/developerworks/library/l-gnuplot/
>>>>orhttp://www.duke.edu/~hpgavin/gnuplot.html

>>
>>>It took some time but gnuplot with input redirection, png output, and
>>>input handling for comma delimited files, I was able to get something
>>>reasonable.

>>
>>>Plot2D,http://sourceforge.net/projects/plot2d, can also generate
>>>plots like this and it's a fair bit easier to learn but it's simpler
>>>and less powerful. It also works on Windows.

>>
>>You started this thread.
>>You suggest plot2d.
>>You are author of plot2d.
>>
>>What did I not understand?
>>
>>--
>> Best regards | Be nice to America or they'll bring democracy to
>> Cyrus | your country.

>
>
> So, nothing wrong with promoting what I think is a useful tool.


Actually, I think you probably just alienated a whole lot of people by
wasting our time in trying to you with a bogus problem.

> I'm also interested in how others are performing something similar.


It's hard to believe you didn't know how to do that in gnuplot. It
appears that you picked a specific problem that you knew was easier to
solve with your tool than in gnuplot in a shameless ploy of self-promotion.

I think the net result of this thread has probably been to discourage
people from considering your tool and I doubt if anyone who's read this
will respond to any future postings you make asking plotting questions.

The pity is that we COULD use an easier-to-use alternative to gnuplot
for simple data plots (like may others, I have my own front-end I called
"xyplot") but you've just introduced a huge grain of salt....

Ed.
  Réponse avec citation
Vieux 09/01/2008, 23h51   #8
Glenn MacGougan
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: plotting from the shell

On Jan 9, 3:41 pm, Ed Morton <mor...@lsupcaemnt.com> wrote:
> Glenn MacGougan wrote:
> > On Jan 9, 11:54 am, Cyrus Kriticos <cyrus.kriti...@googlemail.com>
> > wrote:

>
> >>Glenn MacGougan wrote:

>
> >>>On Jan 9, 9:58 am, Andreas Wilm <andreas.w...@ucd.ie> wrote:

>
> >>>>Glenn MacGougan wrote:

>
> >>>>>I have a multiple comma delimited data files with 6 columns of numeric
> >>>>>data
> >>>>>e.g.
> >>>>>time (s), value1, value2, value3, value4, value5
> >>>>>time (s), value1, value2, value3, value4, value5
> >>>>>...
> >>>>>I want to plot all of this data (time vs value, all on one plot)
> >>>>>directly to an image file for later viewing using a shell script.
> >>>>>Any suggestions?

>
> >>>>You could use gnuplot.
> >>>>See for examplehttp://www.ibm.com/developerworks/library/l-gnuplot/
> >>>>orhttp://www.duke.edu/~hpgavin/gnuplot.html

>
> >>>It took some time but gnuplot with input redirection, png output, and
> >>>input handling for comma delimited files, I was able to get something
> >>>reasonable.

>
> >>>Plot2D,http://sourceforge.net/projects/plot2d, can also generate
> >>>plots like this and it's a fair bit easier to learn but it's simpler
> >>>and less powerful. It also works on Windows.

>
> >>You started this thread.
> >>You suggest plot2d.
> >>You are author of plot2d.

>
> >>What did I not understand?

>
> >>--
> >> Best regards | Be nice to America or they'll bring democracy to
> >> Cyrus | your country.

>
> > So, nothing wrong with promoting what I think is a useful tool.

>
> Actually, I think you probably just alienated a whole lot of people by
> wasting our time in trying to you with a bogus problem.
>
> > I'm also interested in how others are performing something similar.

>
> It's hard to believe you didn't know how to do that in gnuplot. It
> appears that you picked a specific problem that you knew was easier to
> solve with your tool than in gnuplot in a shameless ploy of self-promotion.
>
> I think the net result of this thread has probably been to discourage
> people from considering your tool and I doubt if anyone who's read this
> will respond to any future postings you make asking plotting questions.
>
> The pity is that we COULD use an easier-to-use alternative to gnuplot
> for simple data plots (like may others, I have my own front-end I called
> "xyplot") but you've just introduced a huge grain of salt....
>
> Ed.


I wouldn't call promoting an open source project - free for all (with
a BSD licence - free even for commercial users to use the source)
shameless. And I'm actually interested in how others are doing it.
Using group discussions like this, albeit it came across a little
poorly, is the best way to get feedback about the software.
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 00h13.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 3,02632 seconds with 16 queries