-
Notifications
You must be signed in to change notification settings - Fork 1
/
intro.Rpres
executable file
·189 lines (126 loc) · 6.06 KB
/
intro.Rpres
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
R Intro
========================================================
author: I. Bartomeus
date: March 2018
autosize: true
Como serán los siguientes 5 días de vuestra vida?
=========================================================
* Introducción (yo hablando; 45')
* Programación en R (Nacho) + Visualización de datos (Paco)
* GLM & Modelos mixtos (Paco)
* Multivariante (Nacho) + Modelos nulos (Nacho)
* RMarkdown, git y GitHub + GIS (Paco)
Feedback: <a href="[email protected]">Email: [email protected]</a>
[Twitter @ibartomeus](https://twitter.com/ibartomeus)
Cómo se estructuran las clases
=======================================================
- Cursos de R online y libros hay a patadas.
- Aquí venimos a equivocarnos cuanto más mejor
- Resolveremos cuantos más problemas mejor
Objetivos
=======================================================
- Entender las ventajas de usar R (u otros lenguages de programación)
- Que descubráis que con R se puede hacer casi todo (desde esta presentación hasta pedir pizza)
- Saber suficiente R para poder "googlear" lo que necesiteis aprender/resolver a partir de ahora.
- Que le perdais el respeto a R!
Los Básicos
=======================================================
- Download R
- R desde Rstudio (download Rstudio)
- [Material del curso](https://github.com/Rstats-courses/cursoR-IAS-2018)
- *_apuntes
Y si no sé algo? Uso de Stackoverflow.
========================================================
- [StackOverflow](http://stackoverflow.com)
- [How do I ask a good question?](http://stackoverflow.com/help/how-to-ask)
- Google (e.g. error message + r)
Baremo del problema:
- consulta (hasta 5 pestañas abiertas)
- problema (hasta 10 pestañas abiertas)
- marrón (> 10 pestañas)
Por qué R?
========================================================
>R has simple and obvious appeal. Through R, you can sift through complex data sets, manipulate data through sophisticated modeling functions, and create sleek graphics to represent the numbers, in just a few lines of code...R’s greatest asset is the vibrant ecosystem has developed around it: The R community is constantly adding new packages and features to its already rich function sets.
>
>-- [The 9 Best Languages For Crunching Data](http://www.fastcompany.com/3030716/the-9-best-languages-for-crunching-data)
Seguro que R es la herramienta adecuada?
========================================================
No siempre. R tiene limitaciones y debilidades:
- Curva de aprendizaje; sintaxis inconsistente
- Documentación fragmentada (?help, vignettes, etc...)
- Calidad de los paquetes varía
- Inicialmente no diseñado para grandes bases de datos
Hay otras herramientas:
- Julia, Python, C++, bash, ...
- Excel? Casi nunca.
La verdadera ventaja de usar R: Reproducibilidad
========================================================
> It’s important to make a workflow that you can use time and time again, and even pass on to others in such a way that you don’t have to be there to walk them through it. [Source](http://berkeleysciencereview.com/reproducible-collaborative-data-science/)
> Your closest collaborator is you 6 months ago, and you don't respond to emails.
<small>P. Wilson</small>
Interested: [read our paper](http://www.revistaecosistemas.net/index.php/ecosistemas/article/view/1178)
No puedes reproducir
========================================================
...Lo que no existe.
- Gozilla se ha comido mi ordenador
+ backup
+ idealmente de forma continua
- Godzilla se ha comido mi oficina
+ cloud
No puedes reproducir
========================================================
...lo que has perdido. Y si necesitas un archivo que existió hace 1, 10 ó 100 días?
- Incremental backups (mínimo)
- Version control (mejor). **Git** (y **GitHub**) es el más popular
Estadística
=============================================
- Es una ciencia dinámica.
- Es una ciencia compleja y con diversas filosofías.
- Es una herramienta, no un fin.
- No puede solucionar malos datos (e.g. baja replicación).
- No puede solucionar un mal diseño experimental.
Abrir R studio
=============================================
- scripts
- consola
- environment
- files/plots
Trabajando con proyectos.
========================================================
Directorio tipico:
```
1-get_data.R
2-process_data.R
3-analyze_data.R
4-make_graphs.R
data/
figures/
```
Guias de estilo
==============================================
>Da igual cual sigas, lo importante es tener uno
<small>I. Bartomeus</small>
El mio es [este](https://github.com/ibartomeus/misc_func/blob/master/Style.md)
El de google [este](https://google.github.io/styleguide/Rguide.xml)
Resources
========================================================
* [CRAN](http://cran.r-project.org) - The Comprehensive R Archive Network. Ground zero for R.
* [GitHub](https://github.com/) - The GitHub page.
* [RStudio](http://www.rstudio.com) - the integrated development environment for R. Makes many things easier.
* [Advanced R](http://adv-r.had.co.nz) - the companion website for “Advanced R”, a book in Chapman & Hall’s R Series. Detailed, in depth look at many of the issues covered here.
Resources
========================================================
- [CRAN task views](https://cran.r-project.org/web/views/) resúmenes de tareas (e.g. Bayesiano)
- e.g. [**Reproducible Research**](http://cran.r-project.org/web/views/ReproducibleResearch.html)
- [RopenScience](https://ropensci.org/). Paquetes brutales para hacer ciencia abierta
Resources
========================================================
- [Quick-R](http://www.statmethods.net/): Donde yo voy a consultar las recetas (PCA's, glm's, etc...)
- Cursos para empezar:
*[r for cats](http://rforcats.net/)
*[r-bio](http://r-bio.github.io/01-intro-R/)
*[datacamp](https://www.datacamp.com/courses/free-introduction-to-r?utm_source=blog_launch_new_intro&utm_medium=blog&utm_campaign=launch_new_intro)
*http://luiscayuela.blogspot.com.es/
Más?
===============================================
y el [grupo de usuarios de R de Sevilla](https://sevillarusers.wordpress.com)