在 tikz/pdfplot 中绘制二项分布的 cdf

在 tikz/pdfplot 中绘制二项分布的 cdf

我一直在尝试以最简单的方式绘制二项分布的 cdf(累积密度函数)(是否有我可以使用的包?)

如果有人已经偶然发现了这个问题并且为他/她解决了它并且愿意分享他的想法,我会很高兴。

我尝试实现 RStudio 图,但这并没有给我我想要的外观 - 因为 R 图不能改变那么多。

提前非常感谢您!

答案1

使用 XeLaTeX 或 LuaLaTeX 您可以编译(例如在 OVerleaf 中):

% Requires XeLaTeX, LuaLaTeX, LaTeX compiler!!!!!
% Is not compatible with the pdfLaTeX compiler !!!!
\documentclass[11pt]{article}
\usepackage{pst-func}

\newcommand{\rightEndPlot}{6.8}
\newcommand{\BinomialN}{4}
\newcommand{\Binomialp}{0.5}
\begin{document}    

% See https://mirror.foobar.to/CTAN/graphics/pstricks/contrib/pst-func/doc/pst-func-doc.pdf
\psset{xunit=0.8cm,yunit=8cm}%
\begin{pspicture*}[showgrid=false](-1.5,-0.1)(\rightEndPlot,1.2)%
\psset{arrowscale=1.3,arrowinset=0.05,arrowlength=1.9,comma}%
\psaxes[labelFontSize=\scriptstyle,xticksize=0 1.07,yticksize=0 \rightEndPlot,tickcolor=gray!50,
Dy=0.1,dy=0.1,Dx=1,dx=1,Ox=0]{->}(0,0)(-0.9,0)(\rightEndPlot,1.1)
%\uput[-90](15.8,0){$z$}\uput[0](0,1.1){$P_{0,15}^{100}(Z=z)$}
\psBinomialF[linecolor=red,fillstyle=solid,fillcolor=yellow,barwidth=0.4,opacity=0.5,LineEndColorL=red,rightEnd=\rightEndPlot]{\BinomialN}{\Binomialp}
\end{pspicture*}
\end{document}

在此处输入图片描述

相关内容