我有一张我认为是正态分布的简单图,但不知何故图的顶部缺失了。我希望这不是因为我删除了 y 轴和刻度,因为我真的不想在图中看到它们。以下是代码:
\documentclass[11pt,reqno]{amsbook}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{tikz}
\usepackage{pgfplots} \pgfplotsset{compat=1.18} \usepgfplotslibrary{fillbetween}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines=middle,
smooth,
no marks,
samples = 20,
domain=-3:3,
y axis line style={draw=none},
ytick=\empty,
]
\addplot+ [name path=normal]{0.3989*exp(-0.5*x^2)};
\end{axis}
\end{tikzpicture}
\end{document}
答案1
我本来要删除这个,但后来我想也许和我一样迷茫的人可能会从我偶然发现的答案中受益:largelimits=upper。就这么简单。我不知道为什么需要它——我假设引擎已经弄清楚了绘制函数所需的框架大小,但似乎没有。无论如何,希望这能帮助其他迷茫的灵魂!