-
Notifications
You must be signed in to change notification settings - Fork 0
/
MASTER.tex
170 lines (139 loc) · 3.83 KB
/
MASTER.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
\documentclass{beamer}
\usepackage{subfiles}
\usepackage{framed}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
%=================================================%
\begin{frame}
\Huge
Introduction to ggvis
\begin{figure}
\centering
\includegraphics[width=0.8\linewidth]{ggvis1}
\end{figure}
\end{frame}
%=================================================%
% SPONSORS
% - Revolution Analytics
% - CPL
% - DIT
%=================================================%
% PHASE 1
%=================================================%
%=================================================%
\begin{frame}
\frametitle{Introduction to ggvis}
\LARGE
\textbf{Overview}
\begin{itemize}
%\item Recap of the basics of ggplot2
\item Getting started with ggvis
\item The magrittr \texttt{R} package and the $\%>\% $ operator
\item Common plot functions and managing aesthetics
\item Layers
\item Interactivity
\end{itemize}
\end{frame}
%=================================================%
\begin{frame}
\frametitle{Resources}
\LARGE
\begin{itemize}
\item \texttt{R} (version 3.2)
\item RStudio
\item ggvis (version 0.4.1)
\item Version Particularly Important
\item Dataset : nycflights13 (R package)
\end{itemize}
\end{frame}
%================================================== %
\begin{frame}
\begin{figure}
\centering
\includegraphics[width=1.05\linewidth]{images/CRAN-ggvis}
\end{figure}
\end{frame}
%=================================================%
\begin{frame}
\frametitle{Using ggvis - a word of warning!}
\begin{figure}
\centering
\includegraphics[width=1.05\linewidth]{ggviswarning}
\caption{}
\label{fig:ggviswarning}
\end{figure}
\end{frame}
%================================================= %
\begin{frame}
\begin{figure}
\centering
\includegraphics[width=1.05\linewidth]{images/CRAN-ggvis-vignettes}
\end{figure}
\end{frame}
%=================================================%
\begin{frame}[fragile]
\frametitle{The Data}
\begin{itemize}
\item All examples will be using tubeData
\item London Tube performance Data from the TFL
website
\item The original data can be found on
\end{itemize}
\begin{verbatim}
http://data.london.gov.uk/dataset/tube-networkperformance-data-transport-committee-report
\end{verbatim}
\end{frame}
%=================================================%
%\subfile{ggvis1-basic.tex}
\subfile{ggplot2revision.tex}
%=================================================%
%=================================================%
%PHASE 2
%=================================================%
%=================================================%
\begin{frame}
\huge
Introduction to ggvis
\begin{itemize}
\item Installing ggvis
\item Our first plot
\item Useful things to know (magrittr)
\end{itemize}
\end{frame}
\subfile{ggvis1-firstplot.tex}
\subfile{ggvis1-vega.tex}
\subfile{magrittr.tex} % NOT READY
\subfile{ggvis1-basic-examples.tex}
%=================================================%
\begin{frame}[fragile]
\begin{framed}
\begin{verbatim}
tubeData %>%
ggvis(x = ~Month, y = ~Excess) %>%
layer_points()
\end{verbatim}
\end{framed}
\begin{figure}
\centering
\includegraphics[width=0.5\linewidth]{got-ggvisplot1}
\end{figure}
\end{frame}
%=================================================%
%=================================================%
%PHASE 3
%=================================================%
%=================================================%
\subfile{ggvis2-aesthetics.tex}
\subfile{ggvis2-commonplotfunctions.tex}
\subfile{ggvis3-layers.tex}
%=================================================%
%=================================================%
% Phase 4
%=================================================%
%=================================================%
\subfile{ggvis2-interactivity.tex}
\subfile{ggvis2-interactivity-more.tex}
\subfile{ggvis4-MultipleLayers.tex}
% \subfile{ggvis5-moredetails.tex}
\end{document}