随机选择从 CSV 文件中绘制一些点用于 pgfplots

随机选择从 CSV 文件中绘制一些点用于 pgfplots

我有以下代码(取自以下示例:包含来自 CSV 文件的数据和趋势线的散点图) 根据 csv 文件绘制 3D 散点图。

\documentclass[border=5mm]{standalone}
\usepackage{pgfplots, pgfplotstable}
\usepackage{filecontents}

\begin{filecontents}{table.dat}
 x y
 0 1
100 3
150 2
200 5
300 6
\end{filecontents}

\begin{document}

\begin{tikzpicture}
     \begin{axis}[
        axis x line=middle,
        axis y line=middle,
        enlarge y limits=true,
        width=15cm, height=8cm,     % size of the image
        grid = major,
        grid style={dashed, gray!30},
         ylabel=steps,
         xlabel=$n$,
         legend style={at={(0.1,-0.1)}, anchor=north}
      ]        
     \addplot[only marks] table  {table.dat};

 \end{axis}
 \end{tikzpicture}

 \end{document}

有什么方法可以从 csv 文件中绘制出几个点吗?

相关内容