Examples of PGFPlots package for LaTeX
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
258 B

  1. \documentclass[border=10pt]{standalone}
  2. \usepackage{pgfplots}
  3. \usepackage{siunitx}
  4. \pgfplotsset{width=10cm, compat=1.9}
  5. \begin{document}
  6. \begin{tikzpicture}
  7. \begin{axis}
  8. \addplot table[x=col1,y=col2]{data.csv};
  9. \end{axis}
  10. \end{tikzpicture}
  11. \end{document}