I'm trying to create a graph which has all of the datapoints from an inline table plotted, without a line connecting them, but still having the points on the graph.
The issue with the MWE is the line connecting all the points.
MWE:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\begin{document}
\pgfplotstableread{
1 1
2 2
3 3
4 4
}\datatable
\begin{tikzpicture}
\begin{axis}
\addplot table \datatable;
\end{axis}
\end{tikzpicture}
\end{document}
