我想绘制不同无线信道上的接收功率。对于每个通道,我有三个值,我想将它们堆叠起来。
实际上,这是我的脚本:
set boxwidth 0.6 relative
set ylabel "dBm"
set xlabel "Channel"
set style fill solid
set key off
plot "RR1" using 1:2 with boxes, "RR2" using 1:2 with boxes, "RR3" using 1:2 with boxes
问题在于,由于它们是负值 (dBm),它会从 0 绘制到它找到的值,因此最高功率位于顶部。我想绘制一个有点反转的图像,蓝色框从底部开始到它达到的值,其他两个值相同。
任何想法?
我的数据看起来像这样
21.0 -93.9207
22.0 -92.241
23.0 -93.452