自动标记从文件读取的点

自动标记从文件读取的点

我的问题如下,我从 txt 文件中读取数据,其中数据存储如下:

North,East 
1,5
4,7

包含代码的文件

\pgfplotstableread[col sep=comma, header=true {data.csv}\table;
\addplot [color=black, mark=*, only marks] table[x=East, y=North] from \table;

可以按 1,2,3,... 的顺序枚举点图作为 txt 文件的行

答案1

您可以使用 x=\coordindex 代替表值,这样 x 坐标就是表中遇到的坐标数。

相关内容