gpt4 book ai didi

bitmap - GNUPLOT 每个直方图条具有不同的颜色

转载 作者:行者123 更新时间:2023-12-04 02:53:33 25 4
gpt4 key购买 nike

我想可视化位图文件的不同颜色的数量。

我的数据表看起来像:

1 163073164
4 185122087
3 255242000
8 255255255
3 000162232
1 181230029
1 127127127
1 136000021
3 200191231

我想通过使用 gnu 绘图直方图样式用自己的颜色绘制每个颜色条。

我只是通过使用“lc 变量”来尝试一些东西,但它不起作用。 :-(

我现在的 GNUPLOT 脚本:
set style data histograms 
set boxwidth 1
set grid
set style histogram cluster gap 0
set style fill solid 1.0 border -1
set yrange [0:*]
set xrange [0:*]
set xtics border in scale 0,10 nomirror rotate by -45 offset character 0, 0, 0 left
plot "histo.dat" using 1:xticlabels(2) lc variable no title
#EOF

我收到此错误消息:
gnuplot> plot "histo.dat" using 1:xticlabels(2) lc variable no title
^
"histo.plt", line 9: Bad data on line 1

谁能给我一个提示或正确的命令?

最好的问候罗伯特

最佳答案

好问题。我设法使用 boxes 让它工作风格而不是 histogram您最初使用的样式。我不认为这应该有太大的不同:

set boxwidth 1
set grid
set style fill solid 1.0 border -1
set yrange [0:*]
set xrange [-.5:*]
set xtics border in scale 0,10 nomirror rotate by -45
plot "histo.dat" using ($0):1:($0):xticlabels(2) w boxes lc variable notitle
#^boxes centered on 0,1,2,3,....
#^data column
#^ linecolor column. first box has linecolor corresponding to ls 0, second box has linecolor corresponding to ls 1, etc ...
#^ xticlabels (apparently) come last.

如果您不熟悉伪列 0,则它(本质上)是数据文件中的行号。我通常不会发布这些东西的输出,但这使一个非常丰富多彩的情节!

Colorful bar chart

关于bitmap - GNUPLOT 每个直方图条具有不同的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11664797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com