Skip to content

Commit fd74726

Browse files
author
AlvarBer
committed
I was not including the graphs
1 parent 937d66b commit fd74726

File tree

6 files changed

+61
-6
lines changed

6 files changed

+61
-6
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
# Word files
55
*.docx
66

7-
# TeX files
8-
*.tex
9-
107
# TeX aux files
118
*.aux
129

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ script: true # No Testing
1111

1212
after_success: # Build binaries and documentation
1313
- cd docs # Time to do documentation
14-
- make test
15-
#- sudo apt-get install -y --no-install-recommends pandoc pandoc-citeproc texlive-base texlive-latex-base texlive-generic-recommended texlive-fonts-recommended texlive-fonts-extra texlive-extra-utils texlive-latex-recommended texlive-latex-extra texlive-xetex lmodern pgf
16-
#- make travis
14+
- sudo apt-get install -y --no-install-recommends pandoc pandoc-citeproc texlive-base texlive-latex-base texlive-generic-recommended texlive-fonts-recommended texlive-fonts-extra texlive-extra-utils texlive-latex-recommended texlive-latex-extra texlive-xetex lmodern pgf
15+
- make travis
1716

1817
# Run tests on master & dev
1918
branches:

docs/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,5 @@ clean:
7676
rm -f $(BODY) $(APPENDIX) images/*.pdf *.pdf *.log *.aux
7777

7878
test:
79+
@echo $(GRAPHS)
7980
@echo $(IMAGES)

docs/graphs/regular_workflow.tex

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
\documentclass{standalone}
2+
3+
\usepackage{tikz}
4+
5+
\begin{document}
6+
\begin{tikzpicture}
7+
\draw (-0.5, -2.3) rectangle (0.5, -1) node[midway, gray] {.csv};
8+
\draw [->, gray, thick] (0, -0.9) -- (0, -0.4);
9+
\draw (0, 0) ellipse (28pt and 10pt) node {Estimator};
10+
\draw [->, gray, thick] (1.1, 0) -- (1.9, 0);
11+
\draw (3, 0) ellipse (28pt and 10pt) node {Adjustment};
12+
\draw [->, gray, thick] (4.1, 0) -- (4.9, 0);
13+
\draw (6, 0) ellipse (28pt and 10pt) node {Validation};
14+
\draw [->, gray, thick] (7.1, 0) -- (7.9, 0);
15+
\draw (9, 0) ellipse (28pt and 10pt) node {Prediction};
16+
\draw [->, gray, thick] (9, -0.9) -- (9, -0.4);
17+
\draw (8.5, -2.3) rectangle (9.5, -1) node[midway, gray] {.csv};
18+
\draw [->, gray, thick] (10.1, 0) --(10.9, 0);
19+
\draw (11, -0.65) rectangle (12, 0.65) node[midway, gray] {.csv};
20+
\end{tikzpicture}
21+
\end{document}
22+

docs/graphs/simpler_workflow.tex

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
\documentclass{standalone}
2+
3+
\usepackage{tikz}
4+
5+
\begin{document}
6+
\begin{tikzpicture}
7+
\draw (-0.5, -2.3) rectangle (0.5, -1) node[midway, gray] {.csv};
8+
\draw [->, gray, thick] (0, -0.9) -- (0, -0.4);
9+
\draw (0, 0) ellipse (28pt and 10pt) node {Estimator};
10+
\draw [->, gray, thick] (1.1, 0) -- (1.9, 0);
11+
\draw (3, 0) ellipse (28pt and 10pt) node {Validation};
12+
\draw [->, gray, thick] (4.1, 0) -- (4.9, 0);
13+
\draw (6, 0) ellipse (28pt and 10pt) node {Prediction};
14+
\draw [->, gray, thick] (6, -0.9) -- (6, -0.4);
15+
\draw (5.5, -2.3) rectangle (6.5, -1) node[midway, gray] {.csv};
16+
\draw [->, gray, thick] (7.1, 0) --(7.9, 0);
17+
\draw (8, -0.65) rectangle (9, 0.65) node[midway, gray] {.csv};
18+
\end{tikzpicture}
19+
\end{document}
20+

docs/graphs/simplest_workflow.tex

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
\documentclass{standalone}
2+
3+
\usepackage{tikz}
4+
5+
\begin{document}
6+
\begin{tikzpicture}
7+
\draw (-0.5, -2.3) rectangle (0.5, -1) node[midway, gray] {.csv};
8+
\draw [->, gray, thick] (0, -0.9) -- (0, -0.4);
9+
\draw (0, 0) ellipse (28pt and 10pt) node {Estimator};
10+
\draw [->, gray, thick] (1.1, 0) -- (1.9, 0);
11+
\draw (3, 0) ellipse (28pt and 10pt) node {Validation};
12+
%\draw [->, gray, thick] (4.1, 0) -- (4.9, 0);
13+
%\draw (6, 0) ellipse (28pt and 10pt) node {Prediction};
14+
\end{tikzpicture}
15+
\end{document}
16+

0 commit comments

Comments
 (0)