РЕДАКТИРОВАТЬ

РЕДАКТИРОВАТЬ

Как создать следующие деревья вероятностей в LaTeX?

Спасибо за помощь!!


Дерево вероятностей 1:

дерево вероятностей 1

Дерево вероятностей 2:

дерево вероятностей 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:

дерево вероятностей 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}

три дерева

Взгляните на ответ, ссылку на который я привел выше, чтобы понять скобочную нотацию. Иначе это будет выглядеть как фокусы, и вам будет невозможно к этому приспособиться ;).

Связанный контент