in reply to Ploting a 2d graph ...Bioinformatics
On a general basis, for the plotting part, first decide what you're interested to plot, then take a look at GD::Graph and GD::Graph3D.
To read the data, you can open the file, then iterate on its lines - something like this:
Before going further, again, you must decide what you want to plot and how (e.g. you have three datasets: do you want a graph for each of them? Do you want to mix up all data? ...)open my $fh, '<', $filename or die "open('$filename'): $!"; while (<$fh>) { # Do whatever you want with the line in $_ } close $fh;
Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Ploting a 2d graph ...Bioinformatics
by Anonymous Monk on Sep 20, 2007 at 15:55 UTC | |
by polettix (Vicar) on Sep 21, 2007 at 23:21 UTC |