in reply to Point plotting

In your shoes I would start with gnuplot. It is very easy for Perl to produce an output data set which gnuplot can use (a CSV of rows of x,y will be fine) and it will happily plot a sequence of disconnected points. There are a bunch of Perl modules to incorporate the plotting into your script if that is a requirement. If you subsequently want something a bit prettier (subjective) then you can look at other options.


🦛

Replies are listed 'Best First'.
Re^2: Point plotting
by BernieC (Pilgrim) on Mar 17, 2021 at 23:45 UTC
    I'll check out gnuplot. The only problem with using a text-coordinate file is that I'm likely to have hundreds of thousands of points. Gonna be a big file :)