我正在尝试绘制 beta 素数分布,该分布由x>0
两个参数 α 和 β 定义,具有概率密度函数:
我正在尝试绘制如下图表:
看https://en.wikipedia.org/wiki/Beta_prime_distribution
这是我目前所拥有的:
我无法让颜色发挥作用,尽管我正在使用cycle list name
如本问题所示的东西 -pgfplots 线条颜色
梅威瑟:
\documentclass[a4paper]{article}
\usepackage{pgfplots}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
%
xmin=0,xmax=5,
ymin=0,ymax=2,
cycle list name = auto,
samples=100]
\foreach \A/\B/\C in {%
1/1/1,
1/2/0.5,
2/1/0.5,
2/2/0.1667,
2/3/0.0833,
5/3/0.009524}{%
\addplot[domain=0:5] {((x^(\A-1))*(1+x)^(-\A-\B))/\C};
}
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
答案1
我认为,如果插入颜色循环,这是可能的:这是您修改后的 MWE。符号%<------
对应于我的添加。
\documentclass[a4paper]{article}
\usepackage{pgfplots}
\pgfplotscreateplotcyclelist{fycle}{% %<------
{blue}, %<------
{orange},%<------
{red},%<------
{green},%<------
}%<------
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
%
xmin=0,xmax=5,
ymin=0,ymax=2,
cycle list name = fycle,
samples=100]
\foreach \A/\B/\C in {%
1/1/1,
1/2/0.5,
2/1/0.5,
2/2/0.1667,
2/3/0.0833,
5/3/0.009524}{%
\addplot+[domain=0:5] {((x^(\A-1))*(1+x)^(-\A-\B))/\C};%<------ only %\addplot+
}
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}