addplot 中的缩放轴

addplot 中的缩放轴

使用以下代码时

\documentclass[border=1cm]{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[color=blue,only marks,mark size=0.5] file[x index=0, y index=1]{bla.txt};
\end{axis}
\end{tikzpicture}

\end{document}

其中 bla.text 是 [0,1]x[0,1] 中的一些点的坐标,轴并不完全处于良好的缩放比例中,并且我没有方框:y 轴比 x 轴稍大。

是否有命令可以修复此问题?

非常感谢!

相关内容