椭圆算盘

椭圆算盘

我也使用算盘来计算二项式中 nf<5 或/和 n(1-f)<5 时的置信区间。我的问题是:是否可以使用 tikz 或其他软件包来绘制这个?有什么建议吗?谢谢

在此处输入图片描述

答案1

我不知道那些图表,但这里是轴的定义,它应该可以帮助你开始。

输出

图1

代码

\documentclass[margin=10pt]{standalone}
\usepackage{pgfplots}
\usepackage{tikz}
\usepackage{sansmath} %for the sans serif font

\pgfplotsset{compat=1.12}

\begin{document}
\begin{tikzpicture}
\begin{axis}[
    width=10cm, height=10cm, % dimensions
    xmin=0, xmax=10,
    ymin=0, ymax=10,
    grid=both,
    grid style={line width=.1pt, draw=gray!10},
    major grid style={line width=.2pt,draw=gray!50},
    xtick={0,...,10},
    ytick={0,...,10},
    xticklabels={0,10,20,30,40,50,60,70,80,90,100},
    yticklabels={,10,20,30,40,50,60,70,80,90,100},
    ticklabel style={font=\footnotesize},
    minor tick num=9, % ticks between each major tick (between 0 and 10 = 9)
    xlabel=$f$,
    ylabel=$P$,
    x label style={font=\sansmath,at={(axis description cs:1,0)},anchor=south west},
    y label style={font=\sansmath,at={(axis description cs:0,1.01)},rotate=-90,anchor=south},
]

\end{axis}
\end{tikzpicture}
\end{document}

相关内容