使用 tikz 设置图形节点的正态分布

使用 tikz 设置图形节点的正态分布

我想添加一个正态分布tikz使用包在圆圈节点内

\node[scale=4,circle, fill=blue!55!cyan!25] (Og1) at (0,0) {};

如果可能只出现水平轴而节点内没有任何刻度,则图下的区域将被着色。

答案1

您可以使用path picture

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
 \node[circle,draw,minimum size=4cm,path picture={
 \draw[fill=blue] let 
 \p1=($(path picture bounding box.north east)-(path picture bounding box.south
  west)$)
  in plot[variable=\t,domain=-1:1,smooth] 
  ({\t*\x1/2},{exp(-\t*\t)}) |- (-\x1,0)
  (-0.5*\x1,0) edge[-stealth] (0.48*\x1,0)
   (0,0) edge[-stealth] (0,0.48*\y1);
 }]{};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容