Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含单列和一些条目的数据集(一个文件)。我希望为每个条目绘制一条水平线,其中每个条目是该线的 y 轴值。我怎样才能做到这一点?
你试图制造一个多么奇怪的情节。您可以使用没有头的向量来做到这一点:
set style arrow 1 nohead plot 'datafile' using (0.0):1:(0.0):(2.0) with vectors arrowstyle 1
或者,在 gnuplot 速记中(只是为了好玩):
p 'datafile' u (0.0):1:(0.0):(2.0) w vec as 1
yrange并xrange相应地调整
yrange
xrange