我试过
plot [][1:3] 'word-based.txt' using 1:xtic(2) with line
它绘制了所需的图形,但 x 轴标签为水平方向,即文本
如图所示。如何使其方向垂直,以便更容易阅读。
我使用了 Windows 终端。
编辑:
使用的数据
2.02 economic
2.04 education
1.94 sports
2.01 culture
2.07 artandmusic
1.93 political
1.94 articles
1.83 press
1.86 novel1
1.86 novel2
1.85 novel3
1.85 shortstories
1.76 literature
1.60 history
1.81 bookcollection1
1.77 bookcollection2
答案1
你需要使用
set xtics rotate
你也可以
set xtics rotate by <angle>
代码
#!/usr/bin/env gnuplot
set terminal pngcairo
set output 'test.png'
set xtics rotate # crucial line
plot [][1:3] '-' using 1:xtic(2) with line
2.02 economic
2.04 education
1.94 sports
2.01 culture
2.07 artandmusic
1.93 political
1.94 articles
1.83 press
1.86 novel1
1.86 novel2
1.85 novel3
1.85 shortstories
1.76 literature
1.60 history
1.81 bookcollection1
1.77 bookcollection2