我有一列数据格式如此
Chicago
Chicago
New York
Chicago
Boulder
Boulder
Chicago
Los Angeles
San Diego
Chicago
我正在尝试使用gnuplot绘制列中每个城市的计数。有什么想法吗?
答案 0 :(得分:1)
Gnuplot不能这样做。您可以使用sort
和uniq
命令行工具预处理数据:
set boxwidth 0.7
set yrange [0:*]
set style fill solid noborder
plot "< sort 'file.dat' | uniq -c" u 0:1:xtic(2) with boxes