-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1695 lines (1196 loc) · 65.1 KB
/
index.html
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>Intro a la programación en R</title>
<meta charset="utf-8" />
<meta name="author" content=" Creative Commons Attribution 4.0 International License" />
<link href="index_files/font-awesome/css/fontawesome-all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="xaringan-themer.css" type="text/css" />
</head>
<body>
<textarea id="source">
class: center, middle, inverse, title-slide
# Intro a la programación en R
## Escuela de Invierno - Julio 2020 <br> Gabriela Mathieu
### <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br /> <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>
---
class: hide-logo
# Características del curso
.left-column[
<i class="fas fa-laptop-code fa-2x " style="color:#43a2ca;"></i>
<br>
<i class="fas fa-link fa-2x " style="color:#43a2ca;"></i>
<br>
<i class="fas fa-question fa-2x " style="color:#43a2ca;"></i>
<br>
<i class="fas fa-file-alt fa-2x " style="color:#43a2ca;"></i>
<br>
<i class="fas fa-home fa-2x " style="color:#43a2ca;"></i>
<br>
<i class="fas fa-comments fa-2x " style="color:#43a2ca;"></i>
]
.right-column[
Espacio "presencial": <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >16 horas</span> de clases teóricas/prácticas
<br>
<a href="https://webasignatura.ucu.edu.uy/course/view.php?id=6789">Espacio virtual</a>
<br>
Participar durante la clase a través del <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >chat</span> de zoom o <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >pedir la palabra</span>.
<br><br>
<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Examen</span> opcional
<br><br>
<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Dedicación:</span> durante el curso y después ... es la .red[clave]
<br>
Comunicación: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >foro y mail</span>
]
---
# Objetivos del curso
- Introducción al lenguaje <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >R</span> mediante <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >RStudio</span>
- Manejar un gran conjunto de <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >funciones: básicas y más avanzadas</span>
- Generar <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >autonomía</span> para usar R y <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >seguir aprendiendo</span> después del curso
- Aprender a programar en R a través de la <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" > lógica tidyverse</span> para lograr rápidamente:
- Trabajar con <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >datos reales</span> e interesantes.
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Procesar</span> y transformar los datos.
- Crea <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >visualizaciones</span> atractivas e informativas.
---
class: hide-logo
# ¿Qué haremos hoy?
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >¿Qué es R?</span>
<br>
--
- Usar R como <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >calculadora</span>
<br>
--
- Conceptos básicos: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >objetos y clase de objetos</span>
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Vectores</span>: numéricos, lógicos y de caracteres
<br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Funciones</span> y <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >operadores</span>
<br>
--
- Marco de datos (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >data frame</span>)
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Importar</span> un archivo csv
<br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Explorar</span> un conjunto de datos (data frame)
<br><br>
--
- Extensiones a R base: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >paquetes</span>
<br>
--
- Paquete <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >tidyverse</span>
<br><br>
--
- ¿Qué es un <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >script</span>?
<br>
--
- Alternaremos entre <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >ejemplos</span> y <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >ejercicios</span>
---
class: hide-logo
# ¿Qué es <i class="fab fa-r-project " style="color:#384CB7;"></i>?
.left-column[
<i class="fas fa-chart-area fa-2x " style="color:#756bb1;"></i> <br>
<i class="fas fa-code fa-2x " style="color:#2c7fb8;"></i> <br>
<i class="fab fa-creative-commons-nc fa-2x " style="color:#636363;"></i> <br>
<i class="fab fa-osi fa-2x " style="color:#31a354;"></i> <br>
<i class="fab fa-github fa-2x "></i> <br>
<i class="fab fa-meetup fa-2x " style="color:#de2d26;"></i>
]
.rigth-column[
<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Programa estadístico</span>: análisis
<br><br>
<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Lenguaje</span> de programación: sintaxis
<br><br>
Software <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >gratuito</span>, se desacarga desde [CRAN](http://www.r-project.org).
<br><br>
Software <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >libre</span>: licencia [GNU](https://es.wikipedia.org/wiki/GNU_General_Public_License). Libertad de uso, modificación y distribución.
<br>
<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Comunidad</span> mundial: lo usa y mejora. Casi 20.000 paquetes en [CRAN]((https://cran.r-project.org/web/packages/)) y [github](https://github.com/)
<br>
Comunidad en Uruguay: [meetup R-Ladies](https://www.meetup.com/es-ES/rladies-montevideo/) y [meetup GURU](https://www.meetup.com/es-ES/GURU-mvd/)
]
---
# ¿Quiénes usan/usamos R?
<!-- [Visualizador](https://benubah.github.io/r-community-explorer/rugs-cluster-map.html) RUGs y R-Ladies -->
<iframe src="https://benubah.github.io/r-community-explorer/rugs-cluster-map.html" width="1200" height="520" frameBorder="0"></iframe>
<!-- https://rpubs.com/anish20/StackOverflowDeveloperSurveyAnalysis -->
---
class: inverse, center, middle
# Intro R
---
class: hide-logo
# Curva de aprendizaje
Al inicio suele ser empinada
<center>
<img src="https://media.giphy.com/media/xT5LMNsvvJzIB77S0g/source.gif"/>
</center>
<!-- ![Alt Text](https://media.giphy.com/media/xT5LMNsvvJzIB77S0g/source.gif) -->
---
class: hide-logo
# ...
<center>
<img src="https://media.giphy.com/media/3o6MbtpwBH9tlVMg2k/source.gif"/>
</center>
---
class: hide-logo
# Ayuda
El curso busca guiarlos por un camino menos empinado
<center>
<img src="https://media.giphy.com/media/l2Jee8WOulPSBZwaI/source.gif"/>
</center>
---
class: hide-logo
# <i class="fas fa-greater-than "></i> Abrimos RStudio
![](img/terminal.gif)
---
class: hide-logo
# ¿Cómo interactuamos con R?
.pull-left[
- Al abrir RStudio vemos el panel llamado "Console" que es la <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >consola</span> de R.
- R inicia con un <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >mensaje</span> de apertura que indica entre otras cosas, la versión.
]
.pull-right[
- Luego del mensaje de apertura, el 'prompt', <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >&gt;</span>, indica que R está listo.
![](img/console.png)
<!-- ![](img/coding.gif) -->
]
---
class: hide-logo
# ¿Cómo interactuamos con R?
- Es un lenguaje de programación: escribimos <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >código</span> en la consola para darle órdenes a R.
- Las <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >órdenes</span> elementales de R consisten en expresiones o asignaciones.
--
- Una <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >expresión</span>, se evalúa, se imprime el resultado y su valor se pierde.
```r
*2 + 3
```
```
[1] 5
```
--
---
class: hide-logo
# ¿Cómo interactuamos con R?
- Una <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >asignación</span>, crea un objeto y no se imprime el resultado.
<code class ='r hljs remark-code'>x <span style='background-color:#ffff7f'><-</span> 2 + 3</code>
--
- Una asignación se hace utilizando el símbolo: <i class="fas fa-less-than "></i><i class="fas fa-minus "></i>
<br>
--
- Otros programas estadísticos muestran directamente los resultados, R los guarda en un <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >objeto</span>.
<br>
--
- Ejecuto el nombre del objeto para imprimir/mostrar el resultado
```r
x
```
```
[1] 5
```
---
class: hide-logo
# Operadores aritméticos
.pull-left[
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Suma</span>
<code class ='r hljs remark-code'>18 <span style='background-color:#ffff7f'>+</span> 9</code>
```
[1] 27
```
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Resta</span>
<code class ='r hljs remark-code'>18 <span style='background-color:#ffff7f'>-</span> 9</code>
```
[1] 9
```
]
.pull-right[
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Multiplicación</span>
<code class ='r hljs remark-code'>18 <span style='background-color:#ffff7f'>*</span> 9</code>
```
[1] 162
```
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >División</span>
<code class ='r hljs remark-code'>18 <span style='background-color:#ffff7f'>/</span> 9</code>
```
[1] 2
```
]
---
class: hide-logo
# Ejercicio (3')
.pull-left[
- ¿Cuánto gasté en el super?
- ¿Cuánto gasté en pesos uruguayos?
- Escribe la cuenta en la consola de R
]
<!-- <img src="https://media.giphy.com/media/l2JefdrXcqBgL3rqM/giphy-downsized.gif/> -->
.pull-right[
<img src="img/ticket.png" width="50%" />
<!-- ![](img/ticket.png) -->
]
---
class: hide-logo
# Calculadora
- Además de los operadores aritméticos, trae <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >funciones matemáticas</span>
```r
# valor absoluto
abs(-1)
```
```
[1] 1
```
--
--
```r
# exponencial
exp(0)
```
```
[1] 1
```
--
```r
# raíz cuadrada
sqrt(9)
```
```
[1] 3
```
---
class: hide-logo
# Funciones
- Una función es un conjunto de <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >instrucciones</span> que operan sobre unos <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >argumentos</span> y producen un <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >resultado</span>.
<br><br>
--
- Una función esconde líneas de código que permite reutilizarlo una y otra vez.
<br><br>
--
- Las funciones tienen <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >nombres</span> descriptivos -en inglés- y se acompañan de <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >paréntesis curvos</span>. Por ejemplo, <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >sqrt()</span> es la abreviación de square root (raíz cuadrada)
<br><br>
--
- Dentro de los paréntesis se definen los valores de sus argumentos: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >sqrt(9)</span>
<br><br>
--
- La mayoría tiene al menos un argumento obligatorio y el resto con valores por defecto. Usa la <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >ayuda</span> de R para saber qué hace una función:
```r
?sqrt
help("sqrt")
```
---
class: inverse, center, middle
# RStudio
---
class: hide-logo
# [RStudio](https://www.rstudio.com/)
<!-- (IDE -integrated development environment-) entorno de desarrollo integrado -->
![](https://github.com/calcita/Curso-rECH/blob/master/images/RStudio_logo_flat.png)
---
class: hide-logo
# Ventanas de RStudio
<!-- ![](img/panels2.png) -->
<img src="img/panels2.png" width="120%" />
<svg style="height:0.8em;top:.04em;position:relative;fill:#43a2ca;" viewBox="0 0 512 512"><path d="M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"/></svg> [Cheatsheet](https://resources.rstudio.com/the-essentials-of-data-science/rstudio-ide)
---
# Script
![](img/newscript.gif)
---
# Script
- Un archivo donde se <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >escribe</span> la sintaxis (el código) y luego se <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >envía</span> a la consola.
<br><br>
--
- Un script permite <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >reproducir</span> nuestro análisis o que otra persona lo haga.
<br><br>
--
- Tendrá una extensión <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >.R</span> y al hacer doble click sobre el archivo se abre RStudio.
<br><br>
--
- Es clave <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >comentar</span> el código, los comentarios deben ir precedidos por <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >#</span>.
<br><br>
--
- Los comentarios se verán de un color diferente al código, incluso cuando se comenta parte de un código.
<br><br>
--
- Un comentario se envía a la consola pero <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >no se ejecuta</span> nada.
---
# Autocompleta código
La ventana de script <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >colorea y autocompleta</span> código. Muestra el <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >help</span> de la función.
![](img/colorea.gif)
---
# Comentarios
![](img/comentarios.gif)
---
class: hide-logo
# Ejecutar código
- Una sola línea: colocar el <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >cursor sobre esa línea</span> y ejecutar <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Ctrl + ENTER</span>.
![](img/sendcode1.gif)
---
class: hide-logo
# Ejecutar código
- Varias líneas de código: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >seleccionarlas todas</span> y ejecutar <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Ctrl + ENTER</span>.
![](img/sendcode2.gif)
---
# Atajos de teclado
<center>
<img src="https://media.giphy.com/media/vpURqIvpuDguQ/source.gif"/>
</center>
---
class: hide-logo
# Flecha: atajo de teclado en Linux/Windows
(teclado en español)
![](img/linux_flecha.png)
---
class: hide-logo
# Flecha: atajo de teclado en Mac
(teclado en español)
![](img/mac_flecha.png)
---
# Atajos de teclado
<img src="img/teclas.png" width="544" height="100%" style="display: block; margin: auto;" />
---
class: inverse, center, middle
# R 'base'
---
class: hide-logo
# Objetos
- R es un programa <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >'orientado a objetos'</span>: variables, datos, funciones, resultados, etc., se guardan en la memoria RAM en forma de objetos con un nombre específico sin usar archivos temporales.
<br><br>
--
- Cada <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >clase de objeto</span> tiene diferentes atributos que determinan la forma en que trabajan dentro de R, es decir, define cuáles funciones se le pueden aplicar.
<br><br>
--
- Estos objetos se pueden modificar o manipular con <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >operadores</span> y <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >funciones</span> --que a su vez son objetos--.
<br><br>
--
- Bajo este término se esconde la simplicidad y flexibilidad de R.
<br><br>
--
- Algunas de las clases más comunes de objetos son: 'numeric', 'character', 'logical' (son <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >vectores</span>), 'matrix' (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >matriz</span>), 'data.frame' (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >marco de datos</span>), 'list' (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >lista</span>) y 'function' (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >función</span>).
---
class: hide-logo
# Tipo de objetos
La cantidad de clases de objetos es muy grande y crece permanentemente a medida que se crean nuevos paquetes.
<!-- Casi en cada paquete existen funciones que devuelven objetos de clases únicas que sólo esa función puede -->
<!-- # generar y cuya interpretación y funcionalidad es específica del paquete en -->
<!-- # cuestión o de otros creados posteriormente y que dependen del mismo. -->
<!-- Por ejemplo las clases "igraph" o "Spatial" de los paquetes igraph y sp definen -->
<!-- # objetos asociados a trabajo con grafos y datos espaciales respectivamente. -->
| Objeto | Dimensión o largo | Tipo de elementos | Ejemplo
|---------------|:-------------:|:------:|:------:|
| Vector | length() | homogéneos |<i class="fas fa-ellipsis-v fa-3x " style="color:#5e3c99;"></i> |
| Matriz | dim() | homogéneos | <i class="fas fa-ellipsis-v fa-3x " style="color:#5e3c99;"></i><i class="fas fa-ellipsis-v fa-3x " style="color:#5e3c99;"></i> |
| Marco de datos | dim() | heterogéneos |<i class="fas fa-ellipsis-v fa-3x " style="color:#5e3c99;"></i><i class="fas fa-ellipsis-v fa-3x " style="color:#e66101;"></i> <i class="fas fa-ellipsis-v fa-3x " style="color:#41b6c4;"></i>|
| Lista | length() | heterogéneos |<i class="fas fa-circle " style="color:#5e3c99;"></i> <br> <i class="fas fa-circle " style="color:#e66101;"></i> <br> <i class="fas fa-circle " style="color:#41b6c4;"></i>|
---
class: hide-logo
# Vector
- Los vectores son la <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >estructura más básica</span> que tenemos para manejar datos en R.
<br><br>
--
- Un <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >escalar</span> también es un <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >vector</span> para R.
<br><br>
--
- Comprender <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >cómo se trabaja con un vector</span> en R es fundamental para entender la lógica de R.
<br><br>
--
- Veremos cómo los vectores trabajan con <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >operadores y funciones</span>.
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Vectorización y coerción</span>.
---
# Vector
- Un vector es una <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >colección de uno o más objetos del mismo tipo</span> (números o caracteres pero no ambos).
<br><br>
--
- Según sus elementos será la clase del vector: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >character</span>, <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >numeric</span>, <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >logical</span>
<br><br>
--
- La función <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >c()</span> crea un vector.
<br><br>
--
- Cada elemento va separado por una <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >coma</span>
<br><br>
--
- Con la función <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >class()</span> compruebo que tipo de objeto es
---
class: hide-logo
# Vector numérico
```r
*x <- c(15, 16, 17, 19)
```
--
```r
x
```
```
[1] 15 16 17 19
```
--
```r
*class(x)
```
```
[1] "numeric"
```
Se crea con la función c(), y contiene solo números separados por coma.
![](img/important.png) .content-box-purple[El separador de decimales es el punto.]
---
class: hide-logo
# Vector de caracteres
- Para el caso de <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >texto</span>, la clase "character" es la que utiliza R para manejar este tipo de objetos.
- Al igual que en la mayoría de los lenguajes de programación, R utiliza las comillas dobles (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >&quot;</span>) o simples (<span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >'</span>) para delimitar un string.
```r
*w <- c("lunes", "martes", "miércoles", "viernes")
```
--
```r
w
```
```
[1] "lunes" "martes" "miércoles" "viernes"
```
--
```r
*class(w)
```
```
[1] "character"
```
---
class: hide-logo
# Vector de caracteres
- Un vector de clase `character` también puede incluir <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >números</span> siempre que estén <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >entre comillas</span>
```r
*w <- c("15", "16", "17", "19")
```
--
```r
w
```
```
[1] "15" "16" "17" "19"
```
--
```r
*class(w)
```
```
[1] "character"
```
---
# Advertencias (warnings)
- Mensajes de advertencia **(Warnings)**: no necesariamente hay un error (ejecuta los comandos y solo te advierte de posibles inconvenientes).
```r
x1 <- c(2, 8, 3, 4, 1)
x2 <- c(0, 7, 5, 5, 6, 1)
pmax(x1, x2)
```
```
Warning in pmax(x1, x2): an argument will be fractionally recycled
```
```
[1] 2 8 5 5 6 2
```
---
# Errores (errors)
- Mensajes de error aparecen en la consola con el texto <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >Error: ...</span>.
<br><br>
--
- El error impide que se ejecute(n) la(s) líneas con error.
<br><br>
--
- Un error en el código es una orden que <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >R no puede interpretar</span> .
<br><br>
--
- Pueden deberse a <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >funciones mal escritas</span> , <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >expresiones erróneas o incompletas</span>, objetos que no han sido declarados, etc
<br>
<img src="img/error_code.gif" style="display: block; margin: auto;" />
<br><br>
--
- Con <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >práctica</span> y la ayuda de los foros se <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >aprende</span> a entender los mensajes de error.
---
# Ayuda externa: buscador
![](img/search.gif)<!-- -->
---
# Ayuda externa: Stackoverflow
![](img/stackoverflow.gif)<!-- -->
---
class: hide-logo
# Sentencia no finalizada
.left-column[
Si en vez de <i class="fas fa-greater-than "></i>
aparece el símbolo <i class="fas fa-plus "></i>
hay una sentencia no finalizada.
]
.right-column[
![](img/error.gif)<!-- -->
]
<!-- ![](img/error.gif) -->
---
# Nombrar objetos
- Para nombrar objetos se pueden usar: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >letras</span>, <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >números</span>, <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >punto</span>, <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >guión bajo</span>
<br><br>
--
- No puede empezar con números ni guión bajo: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >~~2018listado~~</span> <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >~~_listado~~</span>
<br><br>
--
- Si empieza con punto debe seguirle una letra: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >.listado</span>
<br><br>
--
- Lo común es que comiencen con una letra: <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >listado_2020</span>
<br><br>
--
- R es <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >sensible a mayúsculas y minúsculas</span>: no es lo mismo Listado que listado
<!-- # ver -->
<!-- https://www.computerworld.com/article/2497143/business-intelligence-beginner-s-guide-to-r-introduction.html -->
---
# Ejercicio (6')
- Crea un objeto llamado `nombre` con tu nombre escrito todo en minúscula
<br
- Crea un objeto llamado `apellido` con tu apellido escrito todo en minúscula
<br>
- Crea un objeto llamado `edad` con tu edad en números
<br>
- Pregunta la clase de cada uno de esos objetos e imprime el contenido de cada objeto.
<br>
- Crea un objeto llamado `nombre_completo` que contenga tu nombre y tu apellido, reutilizando los objetos creados. La función paste() puede ser de ayuda.
<br>
- ¿Cuántos caracteres tiene el objeto nombre, y el objeto apellido? La función `nchar()` puede ser de ayuda.
---
class: hide-logo
# Vector de caracteres
- Qué pasa si por error omito las comillas en un elemento:
```r
z <- c("lunes", 15)
```
--
- R no da error en este caso, convierte al 15 en texto.
```r
z
```
```
[1] "lunes" "15"
```
```r
class(z)
```
```
[1] "character"
```
--
Si se combinan objetos de diferentes tipos, R reasigna los elementos a la clase apropiada. Esto se llama coerción.
---
class: hide-logo
# Coerción
- Como mencionamos anteriormente, estos elementos deben ser todos de la misma clase.
<br><br>
--
- Si se combinan objetos de diferente clase, R reasigna los elementos a la clase apropiada. Como en el ejemplo que concatenaba elementos numéricos y caracteres.
<br><br>
--
- Si contiene números y texto el vector será de clase `character`.
<br><br>
--
- La coerción es necesaria para el funcionamiento correcto de R. Al mismo tiempo puede ser una fuente de errores si no se tiene en cuenta.
<br><br>
--
- ¿Qué te imaginas pasará si en vez de omitir las comillas en 15, las omito en lunes?
<br><br>
--
- Un texto sin comillas en R es un objeto (siempre que cumpla las reglas de un nombre de objeto).
---
class: hide-logo
# ¿Por qué importa la clase de un objeto?
- La clase de un objeto afecta cómo las funciones trabajan con el mismo.
<br><br>
--
- Por ejemplo, la función mean() puede generar salidas coherentes con objetos numéricos o lógicos, pero no con caracteres.
<br><br>
--
```r
mean(x)
w + 5
```
- No toda función se puede aplicar a cualquier tipo de objeto.
---
class: hide-logo
# Vectorización
.pull-left[
- R vectoriza las operaciones de manera que si sumo un número a un vector numérico, a cada elemento del vector le sumará ese número.
- Esta propiedad es una ventaja ya que permite evitar loops en muchas de situaciones y de esta manera se obtiene un código más 'limpio' y eficiente.
- El operador <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >:</span> sirve para generar vectores numéricos
]
.pull-right[
```r
*x <- -1:4
x
```
```
[1] -1 0 1 2 3 4
```
```r
*x + 5 # adiciono 5
```
```
[1] 4 5 6 7 8 9
```
```r
*x * 3 # multiplico por 3
```
```
[1] -3 0 3 6 9 12
```
]
---
class: hide-logo
# Funciones descriptivas de un vector numérico
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >length(x)</span>: devuelve la cantidad de elementos de x
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >sort(x, decreasing = F)</span>: ordena los elementos de manera creciente
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >sum(x)</span>: devuelve la suma de los elementos de x
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >max(x)</span>: máximo
<br><br>
--
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >min(x)</span>: mínimo
---
class: hide-logo
# Funciones descriptivas de un vector numérico
- <span style=" font-weight: bold; border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: #b3e2cd !important;" >mean(x)</span>: promedio aritmético de x
<br><br>
--