我有一個簡單的常態分佈圖,但由於某種原因,圖的頂部丟失了。我希望這不是因為我去掉了 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
我本來打算刪除這個,但後來我想也許其他像我一樣迷失的人可能會從我偶然發現的答案中受益:放大限制=上限。就這麼簡單。我不知道為什麼需要它——我假設引擎計算出了繪製函數圖所需的大小的框架,但似乎沒有。無論如何,希望這可以幫助其他迷失的靈魂!