r***e 发帖数: 2000 | 1 Can I plot using one value (say, column 2) while labeling
data points with another value (say, column 3) ?
For example in a file
# x, y, label | z****s 发帖数: 192 | 2 应该可以吧。不仅如此加颜色字体都可以。
你用 yticlabels(2) 试一试。
【在 r***e 的大作中提到】 : Can I plot using one value (say, column 2) while labeling : data points with another value (say, column 3) ? : For example in a file : # x, y, label
| z****s 发帖数: 192 | 3 试一试这个命令应该可以:
plot 'your_data_file' using 0:2:xtic(1):ytic(3)
xtic和ytic可以是全名xticlabels,yticlabels。
【在 r***e 的大作中提到】 : Can I plot using one value (say, column 2) while labeling : data points with another value (say, column 3) ? : For example in a file : # x, y, label
| z****s 发帖数: 192 | 4 plot 'your_data_file' using 1:2:xtic(1):ytic(3)
x轴是按从大到小。
而
plot 'your_data_file' using 0:2:xtic(1):ytic(3)
是按文件数据的顺序。数据在x轴等距。 |
|