I'm running a lot of experiments that give their output as CSV files. An experiment might be running for hours, with a new line being added to the CSV every 10 seconds.
Right now I'm opening these CSV files in a text editor, which isn't too convenient. I'm looking for a better way.
Here are some features I want:
- View CSV files as a table.
- Automatically display numbers in a reasonable way (i.e. instead of 10 significant digits after the dot, show 2.
- Automatically tail the file, i.e. show new lines as the file is updated.
- Allow me to hide columns, and remember my selection for new CSV files of the same format.
- Allow me to show the data in a plot, and remember the plot format I used for the new CSV files of the same format.
Does anything like that exist?