Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Bill Kendrick
On Tue, Oct 26, 2004 at 05:24:38PM -0700, Jeff Newmiller wrote:
> After I saw it referred to here, and a stats grad student recommended it,
> I have been using R quite a bit recently... but I am pretty sure I have
> barely scratched the surface.  It is kind of a cross between Perl and
> Octave with more statistical analysis tools than _I_ know what to do with.
> If you are doing statistics, it is probably worth the effort.

*sniff*  *sniff-sniff*   I smell a talk ;)

-bill!
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Jeff Newmiller
On Tue, 26 Oct 2004, David Hummel wrote:

> On Tue, Oct 26, 2004 at 01:13:04PM -0400, Peter Jay Salzman wrote:
> > 
> > How do people do histograms on Linux (other than than by hand?)
> 
> R will allow you to express your data in just about any way imagineable:
> 
>   http://www.r-project.org/
>   http://cran.r-project.org/doc/manuals/R-intro.html#Graphics
> 
> There is a learning curve ... R is a programming language.

After I saw it referred to here, and a stats grad student recommended it,
I have been using R quite a bit recently... but I am pretty sure I have
barely scratched the surface.  It is kind of a cross between Perl and
Octave with more statistical analysis tools than _I_ know what to do with.
If you are doing statistics, it is probably worth the effort.

I am getting my data out of a SQL database, which gives me some added
benefits, but R can do a lot of database-like operations on the data even
after I extract it.

---
Jeff NewmillerThe .   .  Go Live...
DCN:<[EMAIL PROTECTED]>Basics: ##.#.   ##.#.  Live Go...
  Live:   OO#.. Dead: OO#..  Playing
Research Engineer (Solar/BatteriesO.O#.   #.O#.  with
/Software/Embedded Controllers)   .OO#.   .OO#.  rocks...1k
---

___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Bill Broadley

ppmhist, very easy to use.  Try man ppmhist

On Tue, Oct 26, 2004 at 01:13:04PM -0400, Peter Jay Salzman wrote:
> I have a few numbers in OpenOffice that I'd like to make a histogram of.
> 
> It appears that OO has no histogram plotter.  Gnuplot doesn't seem to have
> one either (there appears to be a patch, but I'd rather not go down that road
> unless I have to).
> 
> It appears that Gnumeric can do histograms, but when I tried...
> 
>[EMAIL PROTECTED] gnumeric 
> 
>** (gnumeric:5072): WARNING **: GnomePrint: Requested Arial1 but using Sans
>(Sans Regular 9.00)
>Segmentation fault (core dumped)
>[EMAIL PROTECTED] 
> 
> Note the warning had nothing to do with the segfault AFAIK.
> 
> How do people do histograms on Linux (other than than by hand?)  I'd prefer
> suggestions that people USE rather than a mindless response invoking
> freshmeat.  I wanna be able to ask you a question if I have one.  ;-)
> 
> Pete
> ___
> vox-tech mailing list
> [EMAIL PROTECTED]
> http://lists.lugod.org/mailman/listinfo/vox-tech

-- 
Bill Broadley
Computational Science and Engineering
UC Davis
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Tim Riley


Peter Jay Salzman wrote:

> I have a few numbers in OpenOffice that I'd like to make a histogram of.
>
> < snip>
>
> How do people do histograms on Linux (other than than by hand?)

I use grace; however, it may overkill for just a few numbers.
See http://plasma-gate.weizmann.ac.il/Grace/ .

>  

___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Dylan Beaudette
On Tuesday 26 October 2004 10:13 am, Peter Jay Salzman wrote:
> I have a few numbers in OpenOffice that I'd like to make a histogram of.
>
> It appears that OO has no histogram plotter.  Gnuplot doesn't seem to have
> one either (there appears to be a patch, but I'd rather not go down that
> road unless I have to).
>
> It appears that Gnumeric can do histograms, but when I tried...
>
>[EMAIL PROTECTED] gnumeric
>
>** (gnumeric:5072): WARNING **: GnomePrint: Requested Arial1 but using
> Sans (Sans Regular 9.00)
>Segmentation fault (core dumped)
>[EMAIL PROTECTED]
>
> Note the warning had nothing to do with the segfault AFAIK.
>
> How do people do histograms on Linux (other than than by hand?)  I'd prefer
> suggestions that people USE rather than a mindless response invoking
> freshmeat.  I wanna be able to ask you a question if I have one.  ;-)
>
> Pete
I often use a small plotting program called Ploticus;
http://ploticus.sourceforge.net/doc/welcome.html

the prefab scripts can get you a generic graph pretty easily.

Dylan
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Ken Bloom
On Tue, 26 Oct 2004 13:13:04 -0400
[EMAIL PROTECTED] (Peter Jay Salzman) wrote:

> I have a few numbers in OpenOffice that I'd like to make a histogram
> of.
> 
> It appears that OO has no histogram plotter.  Gnuplot doesn't seem to
> have one either (there appears to be a patch, but I'd rather not go
> down that road unless I have to).
> 
> It appears that Gnumeric can do histograms, but when I tried...
> 
>[EMAIL PROTECTED] gnumeric 
> 
>** (gnumeric:5072): WARNING **: GnomePrint: Requested Arial1 but
>using Sans(Sans Regular 9.00)
>Segmentation fault (core dumped)
>[EMAIL PROTECTED] 
> 
> Note the warning had nothing to do with the segfault AFAIK.
> 
> How do people do histograms on Linux (other than than by hand?)  I'd
> prefer suggestions that people USE rather than a mindless response
> invoking freshmeat.  I wanna be able to ask you a question if I have
> one.  ;-)

Make your own program to sort your data into bins, then use
plot 'file.dat' with boxes
to plot the histogram (where file.dat is the output of your custom
program)

-- 
I usually have a GPG digital signature included as an attachment.
See http://www.gnupg.org/ for info about these digital signatures.


pgpbU27Fp4hJw.pgp
Description: PGP signature
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread Jonathan Stickel
I use Octave for 99% of my numerical work lately (www.octave.org).  It 
has functions to produce histogram/bar plots.  By default it uses 
gnuplot as its external plotter.

Jonathan
Peter Jay Salzman wrote:
I have a few numbers in OpenOffice that I'd like to make a histogram of.
It appears that OO has no histogram plotter.  Gnuplot doesn't seem to have
one either (there appears to be a patch, but I'd rather not go down that road
unless I have to).
It appears that Gnumeric can do histograms, but when I tried...
   [EMAIL PROTECTED] gnumeric 

   ** (gnumeric:5072): WARNING **: GnomePrint: Requested Arial1 but using Sans
   (Sans Regular 9.00)
   Segmentation fault (core dumped)
   [EMAIL PROTECTED] 

Note the warning had nothing to do with the segfault AFAIK.
How do people do histograms on Linux (other than than by hand?)  I'd prefer
suggestions that people USE rather than a mindless response invoking
freshmeat.  I wanna be able to ask you a question if I have one.  ;-)
Pete
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech


Re: [vox-tech] Histograms on GNU/Linux?

2004-10-26 Thread David Hummel
On Tue, Oct 26, 2004 at 01:13:04PM -0400, Peter Jay Salzman wrote:
> 
> How do people do histograms on Linux (other than than by hand?)

R will allow you to express your data in just about any way imagineable:

  http://www.r-project.org/
  http://cran.r-project.org/doc/manuals/R-intro.html#Graphics

There is a learning curve ... R is a programming language.

-David
___
vox-tech mailing list
[EMAIL PROTECTED]
http://lists.lugod.org/mailman/listinfo/vox-tech