使用 tikz 绘制二元正态分布的轴

使用 tikz 绘制二元正态分布的轴

我得到了下图:

在此处输入图片描述

使用以下代码:

\documentclass{standalone}
\usepackage{pgfplots}

\begin{document}

\def\centerx{2}
\def\centery{-1}
\begin{tikzpicture}
    \begin{axis}
    \addplot3[surf,domain=-2:6,domain y=-5:3] 
        {exp(-( (x-\centerx)^2 + (y-\centery)^2)/3 )};
    \node[circle,inner sep=1pt,fill=blue,pin=90:$\mu$] 
        at (axis cs:\centerx,\centery,1) {};
    \end{axis}
\end{tikzpicture}
\end{document}

我想知道如何在没有一些轴的情况下得到这个图形,如下所示:

在此处输入图片描述

答案1

您可能希望使用这些axis lines选项(请参阅pgfplots 手册)。

\documentclass{standalone}
\usepackage{pgfplots}

\begin{document}

\def\centerx{2}
\def\centery{-1}
\begin{tikzpicture}
    \begin{axis}[axis lines=left]
    \addplot3[surf,domain=-2:6,domain y=-5:3] 
        {exp(-( (x-\centerx)^2 + (y-\centery)^2)/3 )};
    \node[circle,inner sep=1pt,fill=blue,pin=90:$\mu$] 
        at (axis cs:\centerx,\centery,1) {};
    \end{axis}
\end{tikzpicture}
\end{document}

仅具有左轴线的双变量图

相关内容