\documentclass[11pt, a4paper]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[scatter, only marks] table[x index=0, y index=1]{dados.txt};
\end{axis}
\end{tikzpicture}
\end{document}
使用 dados.txt:
10:30:00 37.75
08:37:00 45.19
08:36:00 52.36
12:45:00 35.00
10:07:00 36.26
10:16:00 49.50
如何制作以时间作为变量的 x 轴?