字符串上的gnuplot绘图直方图

时间:2017-10-17 22:25:35

标签: plot gnuplot

我有一列数据格式如此

Chicago
Chicago
New York
Chicago
Boulder
Boulder
Chicago
Los Angeles
San Diego
Chicago

我正在尝试使用gnuplot绘制列中每个城市的计数。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

Gnuplot不能这样做。您可以使用sortuniq命令行工具预处理数据:

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