LaTeX에서 다음과 같은 확률 트리를 어떻게 만드나요?
도와 주셔서 감사합니다!!
확률 트리 1:
확률 트리 2:
\forestset{my label/.style={if n=1{edge label={node [midway, above left, font=\tiny] {$#1$}},}{edge label={node [midway, below left, font=\tiny] {$#1$}},
}
}
}
\begin{forest}
for tree={
grow'=0,
math content,
parent anchor=east,
child anchor=west,
edge path={
\noexpand\path [\forestoption{edge}] (!u.parent anchor) node
[circle, fill, minimum size=2.5pt, inner sep=0pt,
anchor=center]
{} -- (.child anchor)\forestoption{edge label};
},
edge={->},
anchor=west,
l sep+=15mm,
s sep+=10mm,
}
%Left figure
[
[\textbf{\textit{p}}^{good}, my label={P(good\rvert club_1)},
tikz={\node (sa) [above=10mm of .north, anchor=base] {$S_A$};}]
[\textbf{\textit{p}}_{rough}^{bad}, my label={P(bad\rvert club_1)}]
]
[, phantom, l sep-=25mm
%Right figure
[
[\textbf{\textit{p}}^{good}, my label={P(good\rvert club_2)},
tikz={\node (sb) [anchor=base east] at (.west |- sa.base) {$S_B$};
\draw [thick] (!r |- sa.south) -- (.east |- sa.south);}]
[\textbf{\textit{p}}^{bad}_{rough}, my label={P(bad\rvert club_2)}]
]
]
\end{forest}
확률 트리 3:
답변1
여기에 가장 복잡한 트리가 있습니다. 더 간단한 트리를 생성하려면 이를 수정할 수 있어야 합니다. 막히면 가지고 있는 코드를 게시하고 발생한 문제를 해결하는 방법을 물어보세요.
forest
이는 나무를 그리는 데 표준 대괄호 표기법을 사용할 수 있는 강력한 패키지를 사용합니다 .이전 질문에 대한 나의 대답forest
트리를 브래킷 사양으로 변환하는 방법을 소개 하고 설명합니다.
\documentclass[tikz, border=10pt]{standalone}
\usepackage{forest,mathtools}
\usetikzlibrary{arrows.meta,positioning}% requires TikZ/PGF 3 - comment if you don't have arrows.meta
%\usetikzlibrary{positioning}% uncomment if you don't have arrows.meta
\begin{document}
\forestset{
my label/.style={
if n=1{
edge label={node [midway, above left, font=\tiny] {$#1$}},
}{
edge label={node [midway, below left, font=\tiny] {$#1$}},
}
}
}
\begin{forest}
for tree={
grow'=0,
math content,
parent anchor=east,
child anchor=west,
edge path={
\noexpand\path [\forestoption{edge}] (!u.parent anchor) node [circle, fill, minimum size=2.5pt, inner sep=0pt, anchor=center] {} -- (.child anchor)\forestoption{edge label};
},
edge={-{Stealth[]}},% requires TikZ/PGF version 3 - comment if you don't have arrows.meta
%edge={->},% uncomment this line if you don't have arrows.meta
anchor=west,
l sep+=15mm,
s sep+=5mm,
}
[
[p^{good}, my label={P[good\rvert club_1]}, tikz={\node (sa) [above=10mm of .north, anchor=base] {$S_A$};}
]
[p^{bad}, my label={P[bad\rvert club_1]}
[p^{bad}_{rough}, my label={\delta\cdot P[bad\rvert club_1]}
[, phantom, l sep-=25mm
[
[p^{good}, my label={P[good\rvert club_2]},
tikz={
\node (sb) [anchor=base east] at (.west |- sa.base) {$S_B$};
\draw [thick] (!r |- sa.south) -- (.east |- sa.south);
}
]
[p^{bad}_{rough}, my label={P[bad\rvert club_2]}
]
]
]
]
[p^{bad}_{sand}, my label={(1-\delta)\cdot P[bad\rvert club_1]}
]
]
]
\end{forest}
\end{document}
편집하다
다음은 세 가지 트리 모두에 대한 도움말입니다.
\documentclass[tikz, border=10pt, multi]{standalone}
\usepackage{forest,mathtools}
\usetikzlibrary{arrows.meta,positioning}
\begin{document}
\forestset{
my label/.style={
if n=1{
edge label={node [midway, above left, font=\tiny] {$#1$}},
}{
edge label={node [midway, below left, font=\tiny] {$#1$}},
}
}
}
\begin{forest}
for tree={
grow'=0,
math content,
parent anchor=east,
child anchor=west,
edge path={
\noexpand\path [\forestoption{edge}] (!u.parent anchor) node [circle, fill, minimum size=2.5pt, inner sep=0pt, anchor=center] {} -- (.child anchor)\forestoption{edge label};
},
edge={-{Stealth[]}},
anchor=west,
l sep+=15mm,
s sep+=5mm,
if level=1{tier=t}{}
}
[
[p^{bad}_{O.B.}, tikz={\node (sa) [above=10mm of .north, anchor=base east] {$unplayable$};}
]
[, phantom
[,
[p^{bad}_{rough},
tikz={
\node (sb) [anchor=base east] at (.center |- sa.base) {$playable$};
\draw [thick] (!r |- sa.south) -- (.east |- sa.south);
}
]
[p^{bad}_{trees}]
[p^{bad}_{sand}
]
]
]
[p^{bad}_{water}
]
]
\end{forest}
\begin{forest}
for tree={
grow'=0,
math content,
parent anchor=east,
child anchor=west,
edge path={
\noexpand\path [\forestoption{edge}] (!u.parent anchor) node [circle, fill, minimum size=2.5pt, inner sep=0pt, anchor=center] {} -- (.child anchor)\forestoption{edge label};
},
edge={-{Stealth[]}},
anchor=west,
l sep+=15mm,
s sep+=5mm,
if level=1{tier=t}{}
}
[
[p^{good}, my label={P[good\rvert club_1]}, tikz={\node (sa) [above=10mm of .north, anchor=base] {$S_A$};}
]
[, phantom
[,
[p^{good}, my label={P[good\rvert club_2]},
tikz={
\node (sb) [anchor=base east] at (.west |- sa.base) {$S_B$};
\draw [thick] (!r |- sa.south) -- (.east |- sa.south);
}
]
[,phantom]
[p^{bad}_{rough}, my label={P[bad\rvert club_2]}
]
]
]
[p^{bad}_{rough}, my label={P[bad\rvert club_1]}
]
]
\end{forest}
\begin{forest}
for tree={
grow'=0,
math content,
parent anchor=east,
child anchor=west,
edge path={
\noexpand\path [\forestoption{edge}] (!u.parent anchor) node [circle, fill, minimum size=2.5pt, inner sep=0pt, anchor=center] {} -- (.child anchor)\forestoption{edge label};
},
edge={-{Stealth[]}},
anchor=west,
l sep+=15mm,
s sep+=5mm,
}
[
[p^{good}, my label={P[good\rvert club_1]}, tikz={\node (sa) [above=10mm of .north, anchor=base] {$S_A$};}
]
[p^{bad}, my label={P[bad\rvert club_1]}
[p^{bad}_{rough}, my label={\delta\cdot P[bad\rvert club_1]}
[, phantom, l sep-=25mm
[
[p^{good}, my label={P[good\rvert club_2]},
tikz={
\node (sb) [anchor=base east] at (.west |- sa.base) {$S_B$};
\draw [thick] (!r |- sa.south) -- (.east |- sa.south);
}
]
[p^{bad}_{rough}, my label={P[bad\rvert club_2]}
]
]
]
]
[p^{bad}_{sand}, my label={(1-\delta)\cdot P[bad\rvert club_1]}
]
]
]
\end{forest}
\end{document}
대괄호 표기법을 이해하는 데 도움이 되도록 위에 링크한 답변을 살펴보세요. 그렇지 않으면 이것은 단지 마술처럼 보일 것이며 적응하는 것이 불가능할 것입니다;).