]> code.communitydata.science - ml_measurement_error_public.git/blob - charts/example_1_dag.tex
refactor example charts
[ml_measurement_error_public.git] / charts / example_1_dag.tex
1 \documentclass[12pt]{standalone}
2
3 \usepackage{ucs}
4 \usepackage[utf8x]{inputenc}
5
6 \usepackage[T1]{fontenc}
7 \usepackage{textcomp}
8 \renewcommand{\rmdefault}{ugm}
9 \renewcommand{\sfdefault}{phv}
10 \usepackage[garamond]{mathdesign}
11 \usepackage{tikz}
12 \usetikzlibrary{positioning, shapes, arrows, shadows, }
13
14 \begin{document}
15 \tikzset{
16   observed/.style={circle, draw},
17   partly observed/.style 2 args={draw, fill=#2, path picture={
18       \fill[#1, sharp corners] (path picture bounding box.south west) -|
19       (path picture bounding box.north east) -- cycle;},
20      circle},
21     unobserved/.style={draw, circle, fill=gray!40},
22     residual/.style={draw, rectangle}
23 }
24
25 \tikzset{>=latex}
26 \begin{tikzpicture}
27
28   \node[observed] (y) {$Y$};
29   \node[unobserved, above=of y] (x) {$X$};
30   \node[observed, left=of x] (w) {$W$};
31
32 %  \node[unobserved, above=of w] (k) {$K$};
33   \node[observed,right=of x] (z) {$Z$};
34 %   \node[residual,below=of y] (e) {$\varepsilon$};
35 %  \node[residual,below=of w] (xi) {$\xi$};
36
37   \draw[->] (z) to (y);
38   \draw[->] (z) -- (x);
39   \draw[->] (x) -- (y);
40   \draw[->] (x) -- (w);
41 %  \draw[->] (y) -- (w);
42 %  \draw[->] (x) -- (xi);
43  % \draw[->] (w) -- (xi);
44 \end{tikzpicture}
45 \end{document}
46

Community Data Science Collective || Want to submit a patch?