안녕하세요! 이 다이어그램을 그리는 데 도움을 찾고 있습니다. 어떤 아이디어가 있나요?

안녕하세요! 이 다이어그램을 그리는 데 도움을 찾고 있습니다. 어떤 아이디어가 있나요?

여기에 이미지 설명을 입력하세요ttps://i.stack.imgur.com/RJiXH.png

답변1

이것은 더 높이 평가될 질문의 기초가 될 수 있습니다. 기꺼이 이 문제를 제거하겠습니다.

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{patterns}
\definecolor{lazy}{RGB}{189,208,112}
\begin{document}
\begin{tikzpicture}[declare function={gauss(\x,\y)=exp(-(\x/\y)*(\x/\y));}]
 \draw (-5,0) -- (5,0)node[below right]{$\mu$};
 \draw (0,0) -- (0,4) node[above]{$f(x)$};
 \path[pattern color=lazy,pattern=vertical lines]
 plot[variable=\x,domain=-2:3,smooth] ({\x},{3*gauss(\x+2,1.5)}) -| cycle;
 \draw[color=lazy] plot[variable=\x,domain=-5:3,smooth] ({\x},{3*gauss(\x+2,1.5)});
 \path[pattern color=red,pattern=vertical lines]
 plot[variable=\x,domain=-5:-2,smooth] ({\x},{3*gauss(\x,1.5)}) |- cycle;
 \draw[color=blue] plot[variable=\x,domain=-5:5,smooth] ({\x},{3*gauss(\x,1.5)});
\end{tikzpicture}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보