Materiales del curso

(Puedes descargar todos los tutoriales y materiales aquí)

Tutoriales y Slides

Casos y ejemplos

Los ejemplos y casos que hagamos durante el curso muchas veces provendrán de los propios tutoriales.

En clase vamos a trabajar con uno o varios Rprojects. El primero de ellos será el Rproject llamado our_project_SFPIE. Es solo una carpeta con algunos ejemplos, pero hará que nuestro código sea reproducible.

Para descargar el Rproject tienes que ejecutar en RStudio las siguientes instrucciones:

file_to_download <- "our_project_SFPIE.zip" 
my_domain <- "https://github.com/perezp44/curso_R_SFPIE_2021/raw/master/ejemplos/"
my_url <- paste0(my_domain, file_to_download)
download.file(my_url, destfile = file_to_download)
unzip(zipfile = file_to_download)
file.remove(file_to_download)

Lo haremos todos juntos el primer día de clase.

Corrections

If you see mistakes or want to suggest changes, please create an issue on the source repository.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY 4.0. Source code is available at https://github.com/perezp44/curso_R_SFPIE_2021, unless otherwise noted. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".