termeter icon indicating copy to clipboard operation
termeter copied to clipboard

how to plot 3 cdfs from 3 columns

Open avilella opened this issue 9 years ago • 1 comments

Hi,

I just discovered termeter and I find it a very useful tool.

Question: I have a tsv file where I want to plot 3 columns as 3 cdfs. How can I do it?

cat myfile.tsv | cut -f 6-9 | termeter <parameters here for 3 cdfs>

Thanks

avilella avatar Nov 14 '16 16:11 avilella

Just found this tool and was impressed. Noticed this issue still open. Tricky bit was passing an actual tab character via bash... what you wanted was:

cat myfile.tsv | cut -f 6-9 | termeter -d  $'\t' -t ddd

dayne avatar Jul 09 '19 07:07 dayne