我一直在嘗試以最簡單的方式繪製二項式分佈的 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}