csvstat: Option to display unique values
Created by: stucka
I'd love to get the unique values themselves.
With csvkit and basic GNU or Unix tools, you can get unique values for a column:
csvcut -c 4 myfile.csv | sed 1d | sort | uniq
That takes all the 4th column, snips off the first row (header row), sorts it, and spits out unique values.