I have a text file stats.txt with a numeric column "age" that is the 3rd column. How do I plot the column "age" from the command line?
I want to be able to do something like :
cat stats.txt | awk '{print $3}' | plot
What's the cleanest way to do this ?