I have some whlte space delimited text data files that are used for some simulations, the first line just labels the meaning of each column but since the numbers are of different types and widths (some are just a single digit ints, some are doubles/floats) the columns don't line up well and it's hard to read. Even within a given column the size of the numbers can go from single to multiple digits so I'm trying to find a justified column display format.
I would like to find a Tk or perl module/widget that can read in such a file and display the columns in a justified way line a spreadsheet so the data can be interpreted easier. Can someone suggest a widget or module for this? I've installed:
perl-Text-TabularDisplay
perl-Tk
perl-Text-SimpleTable
I'd prefer not to use a spreadsheet since I'd like to make this into something I could check into cvs so other developers at work can use it.
but still haven't found what I want. These files are up to 44 columns wide and thousands of lines long so a simple display only tool would be best (there's no need to change or edit the data)
thanks,
Mark