gpt4 book ai didi

linux - 如何在 gnuplot 中绘制带有错误线的箱线图

转载 作者:太空宇宙 更新时间:2023-11-04 10:38:32 24 4
gpt4 key购买 nike

我的数据集是这样的:

    5   12.467  12.331865   12.602135   12.8    12.8    12.8    10  122.766 121.64268   123.88932   51.50933304 48.67632    54.34234696    15  42.97799961 40.61421    45.34179039 6.254   5.91003 6.59797    20  70.933  70.379865   71.486135   0   0   0    25  1226.94033297   1225.463565 1228.41710203   1001.91700041   977.46603459    1026.367965    30  55.537  52.482465   58.591535   0   0   0    40  1628.744    1598.99428  1658.49372  0   0   0

第 1 列是 xtics,第 3 列和第 6 列是主要数据。第 2,4 和 5,7 列是误差范围。如何在箱形图中绘制这些数据?以下代码用折线图绘制:

    plot [0:50] "data.dat" using 1:2:3:4 with yerrorlines title "title1", \    "" using 1:5:6:7 with yerrorlines title "title2"

最佳答案

你可以从

开始
set style histogram errorbars gap 1
set boxwidth 0.9
set style fill solid 1.00 border 0
set style data histograms
plot "data.dat" using 2:3:4:xtic(stringcolumn(1)) with histograms title "title1",\
"" u 5:6:7 w hist t "title2"

这不是很漂亮,但据我所知至少应该给你你想要的:

enter image description here

关于linux - 如何在 gnuplot 中绘制带有错误线的箱线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36239984/

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