├── .gitignore ├── AEET ├── .gitignore ├── README.md ├── images │ ├── 1_N_0YimgDh2_IbBT9jJNtOg.jpg │ ├── Logo_ecoinf_10.jpg │ ├── assignment.jpg │ ├── code_all_teh_things.jpg │ ├── forloops.png │ ├── function.png │ ├── map+fix.png │ ├── map.png │ ├── map2.png │ ├── map_frosting.png │ ├── mentimeter_qr_code.png │ └── pmap.png ├── intro_prog_fun.html ├── intro_prog_fun.md ├── intro_prog_fun.qmd ├── intro_prog_fun_files │ ├── figure-commonmark │ │ ├── codigo_repetido-1.png │ │ ├── codigo_repetido-2.png │ │ ├── codigo_repetido-3.png │ │ ├── de codigo repetido a funcion, pruebas-1.png │ │ ├── de codigo repetido a funcion, pruebas-2.png │ │ ├── de codigo repetido a funcion, pruebas-3.png │ │ ├── de codigo repetido a funcion, simplificar-1.png │ │ ├── de codigo repetido a funcion, simplificar-2.png │ │ ├── de codigo repetido a funcion, simplificar2-1.png │ │ ├── de codigo repetido a funcion, simplificar2-2.png │ │ ├── de codigo repetido a funcion, simplificar3-1.png │ │ ├── de codigo repetido a funcion-1.png │ │ ├── de codigo repetido a funcion-2.png │ │ ├── de codigo repetido a funcion-3.png │ │ ├── funcion_pruebas-1.png │ │ ├── funcion_pruebas-2.png │ │ ├── funcion_pruebas-3.png │ │ ├── funcion_simplificar-1.png │ │ ├── funcion_simplificar-2.png │ │ ├── funcion_simplificar_2-1.png │ │ ├── funcion_simplificar_2-2.png │ │ └── funcion_simplificar_3-1.png │ ├── figure-html │ │ ├── argumento dotdotdot-1.png │ │ ├── argumento dotdotdot-2.png │ │ ├── codigo_repetido-1.png │ │ ├── codigo_repetido-2.png │ │ ├── codigo_repetido-3.png │ │ ├── de codigo repetido a funcion, pruebas-1.png │ │ ├── de codigo repetido a funcion, pruebas-2.png │ │ ├── de codigo repetido a funcion, pruebas-3.png │ │ ├── de codigo repetido a funcion, simplificar-1.png │ │ ├── de codigo repetido a funcion, simplificar-2.png │ │ ├── de codigo repetido a funcion, simplificar2-1.png │ │ ├── de codigo repetido a funcion, simplificar2-2.png │ │ ├── de codigo repetido a funcion, simplificar3-1.png │ │ ├── de codigo repetido a funcion-1.png │ │ ├── de codigo repetido a funcion-2.png │ │ ├── de codigo repetido a funcion-3.png │ │ ├── funcion_pruebas-1.png │ │ ├── funcion_pruebas-2.png │ │ ├── funcion_pruebas-3.png │ │ ├── funcion_simplificar-1.png │ │ ├── funcion_simplificar-2.png │ │ ├── funcion_simplificar_2-1.png │ │ ├── funcion_simplificar_2-2.png │ │ ├── funcion_simplificar_3-1.png │ │ ├── unnamed-chunk-3-1.png │ │ └── unnamed-chunk-3-2.png │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js ├── old │ ├── informacion.qmd │ ├── intro_funciones.qmd │ └── iteraciones.qmd ├── results │ └── .gitignore └── styles.css ├── README.md ├── USAL ├── .gitignore ├── README.md ├── ejer_resueltos.html ├── ejer_resueltos.md ├── ejer_resueltos.qmd ├── ejer_resueltos_files │ ├── figure-commonmark │ │ ├── 5.2.1-1.png │ │ └── 5.2.1-2.png │ ├── figure-html │ │ ├── 5.2.1-1.png │ │ └── 5.2.1-2.png │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js ├── images │ ├── 1_N_0YimgDh2_IbBT9jJNtOg.jpg │ ├── Logo_ecoinf_10.jpg │ ├── assignment.jpg │ ├── code_all_teh_things.jpg │ ├── datascience.png │ ├── e684f0da-13b1-4d00-ab25-37814e79ee1e.png │ ├── forloops.png │ ├── function.png │ ├── map+fix.png │ ├── map.png │ ├── map2.png │ ├── map_frosting.png │ └── pmap.png ├── intro_prog_fun.html ├── intro_prog_fun.md ├── intro_prog_fun.qmd ├── intro_prog_fun_files │ ├── figure-commonmark │ │ ├── codigo_repetido-1.png │ │ ├── codigo_repetido-2.png │ │ ├── codigo_repetido-3.png │ │ ├── codigo_repetido_avanzado-1.png │ │ ├── codigo_repetido_avanzado-2.png │ │ ├── codigo_repetido_avanzado-3.png │ │ ├── de codigo repetido a funcion, pruebas-1.png │ │ ├── de codigo repetido a funcion, pruebas-2.png │ │ ├── de codigo repetido a funcion, pruebas-3.png │ │ ├── de codigo repetido a funcion, simplificar-1.png │ │ ├── de codigo repetido a funcion, simplificar-2.png │ │ ├── de codigo repetido a funcion, simplificar2-1.png │ │ ├── de codigo repetido a funcion, simplificar2-2.png │ │ ├── de codigo repetido a funcion, simplificar3-1.png │ │ ├── de codigo repetido a funcion-1.png │ │ ├── de codigo repetido a funcion-2.png │ │ ├── de codigo repetido a funcion-3.png │ │ ├── funcion_pruebas-1.png │ │ ├── funcion_pruebas-2.png │ │ ├── funcion_pruebas-3.png │ │ ├── funcion_simplificar-1.png │ │ ├── funcion_simplificar-2.png │ │ ├── funcion_simplificar_2-1.png │ │ ├── funcion_simplificar_2-2.png │ │ └── funcion_simplificar_3-1.png │ ├── figure-html │ │ ├── argumento dotdotdot-1.png │ │ ├── argumento dotdotdot-2.png │ │ ├── codigo_repetido-1.png │ │ ├── codigo_repetido-2.png │ │ ├── codigo_repetido-3.png │ │ ├── codigo_repetido_avanzado-1.png │ │ ├── codigo_repetido_avanzado-2.png │ │ ├── codigo_repetido_avanzado-3.png │ │ ├── de codigo repetido a funcion, pruebas-1.png │ │ ├── de codigo repetido a funcion, pruebas-2.png │ │ ├── de codigo repetido a funcion, pruebas-3.png │ │ ├── de codigo repetido a funcion, simplificar-1.png │ │ ├── de codigo repetido a funcion, simplificar-2.png │ │ ├── de codigo repetido a funcion, simplificar2-1.png │ │ ├── de codigo repetido a funcion, simplificar2-2.png │ │ ├── de codigo repetido a funcion, simplificar3-1.png │ │ ├── de codigo repetido a funcion-1.png │ │ ├── de codigo repetido a funcion-2.png │ │ ├── de codigo repetido a funcion-3.png │ │ ├── funcion_pruebas-1.png │ │ ├── funcion_pruebas-2.png │ │ ├── funcion_pruebas-3.png │ │ ├── funcion_simplificar-1.png │ │ ├── funcion_simplificar-2.png │ │ ├── funcion_simplificar_2-1.png │ │ ├── funcion_simplificar_2-2.png │ │ ├── funcion_simplificar_3-1.png │ │ ├── unnamed-chunk-3-1.png │ │ └── unnamed-chunk-3-2.png │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js └── styles.css ├── intro_prog_fun.Rproj ├── lleida ├── .gitignore ├── ejer_resueltos.html ├── ejer_resueltos.md ├── ejer_resueltos.qmd ├── ejer_resueltos_files │ ├── figure-commonmark │ │ ├── 5.2.1-1.png │ │ └── 5.2.1-2.png │ ├── figure-html │ │ ├── 5.2.1-1.png │ │ └── 5.2.1-2.png │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js ├── images │ ├── Logo_ecoinf_10.jpg │ ├── assignment.jpg │ ├── code_all_teh_things.jpg │ ├── data-science.png │ ├── data_masking.png │ ├── environment.png │ ├── forloops.png │ ├── function.png │ ├── map+fix.png │ ├── map.png │ ├── map2.png │ ├── map_frosting.png │ ├── pmap.png │ ├── r_horst.png │ └── repeated_code.jpg ├── intro_prog_fun.html ├── intro_prog_fun.md ├── intro_prog_fun.qmd └── intro_prog_fun_files │ ├── figure-commonmark │ ├── codigo_repetido_avanzado-1.png │ ├── codigo_repetido_avanzado-2.png │ ├── codigo_repetido_avanzado-3.png │ ├── funcion_pruebas-1.png │ ├── funcion_pruebas-2.png │ ├── funcion_pruebas-3.png │ ├── funcion_simplificar-1.png │ ├── funcion_simplificar_2-1.png │ └── funcion_simplificar_2-2.png │ ├── figure-html │ ├── codigo_repetido_avanzado-1.png │ ├── codigo_repetido_avanzado-2.png │ ├── codigo_repetido_avanzado-3.png │ ├── funcion_pruebas-1.png │ ├── funcion_pruebas-2.png │ ├── funcion_pruebas-3.png │ ├── funcion_simplificar-1.png │ ├── funcion_simplificar_2-1.png │ └── funcion_simplificar_2-2.png │ └── libs │ ├── bootstrap │ ├── bootstrap-icons.css │ ├── bootstrap-icons.woff │ ├── bootstrap.min.css │ └── bootstrap.min.js │ ├── clipboard │ └── clipboard.min.js │ └── quarto-html │ ├── anchor.min.js │ ├── popper.min.js │ ├── quarto-syntax-highlighting.css │ ├── quarto.js │ ├── tippy.css │ └── tippy.umd.min.js └── transmitting_science ├── .gitignore ├── README.md ├── exercises_solutions.html ├── exercises_solutions.md ├── exercises_solutions.qmd ├── exercises_solutions_files ├── figure-commonmark │ ├── 5.2.1-1.png │ └── 5.2.1-2.png ├── figure-html │ ├── 5.2.1-1.png │ └── 5.2.1-2.png └── libs │ ├── bootstrap │ ├── bootstrap-1bc8a17f135ab3d594c857e9f48e611b.min.css │ ├── bootstrap-icons.css │ ├── bootstrap-icons.woff │ ├── bootstrap.min.css │ └── bootstrap.min.js │ ├── clipboard │ └── clipboard.min.js │ └── quarto-html │ ├── anchor.min.js │ ├── popper.min.js │ ├── quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css │ ├── quarto-syntax-highlighting.css │ ├── quarto.js │ ├── tippy.css │ └── tippy.umd.min.js ├── images ├── data-science.png ├── data_masking.png ├── environment.png ├── forloops.png ├── fp.png ├── function.png ├── library.png ├── map+fix.png ├── map.png ├── map2.png ├── map_frosting.png ├── pmap.png └── r_horst.png ├── intro_prog_fun.html ├── intro_prog_fun.md ├── intro_prog_fun.qmd └── intro_prog_fun_files ├── figure-commonmark ├── codigo_repetido_avanzado-1.png ├── codigo_repetido_avanzado-2.png ├── codigo_repetido_avanzado-3.png ├── funcion_pruebas-1.png ├── funcion_pruebas-2.png ├── funcion_pruebas-3.png ├── funcion_simplificar-1.png ├── funcion_simplificar_2-1.png ├── function_simplify-1.png ├── function_simplify_2-1.png ├── function_simplify_2-2.png ├── function_trials-1.png ├── function_trials-2.png ├── function_trials-3.png ├── repeated_code_advanced-1.png ├── repeated_code_advanced-2.png └── repeated_code_advanced-3.png ├── figure-html ├── codigo_repetido_avanzado-1.png ├── codigo_repetido_avanzado-2.png ├── codigo_repetido_avanzado-3.png ├── funcion_pruebas-1.png ├── funcion_pruebas-2.png ├── funcion_pruebas-3.png ├── funcion_simplificar-1.png ├── funcion_simplificar_2-1.png ├── function_simplify-1.png ├── function_simplify_2-1.png ├── function_simplify_2-2.png ├── function_trials-1.png ├── function_trials-2.png ├── function_trials-3.png ├── repeated_code_advanced-1.png ├── repeated_code_advanced-2.png └── repeated_code_advanced-3.png └── libs ├── bootstrap ├── bootstrap-1bc8a17f135ab3d594c857e9f48e611b.min.css ├── bootstrap-icons.css ├── bootstrap-icons.woff ├── bootstrap.min.css └── bootstrap.min.js ├── clipboard └── clipboard.min.js └── quarto-html ├── anchor.min.js ├── popper.min.js ├── quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css ├── quarto-syntax-highlighting.css ├── quarto.js ├── tippy.css └── tippy.umd.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | # Session Data files 5 | .RData 6 | .RDataTmp 7 | # User-specific files 8 | .Ruserdata 9 | # Example code in package build process 10 | *-Ex.R 11 | # Output files from R CMD build 12 | /*.tar.gz 13 | # Output files from R CMD check 14 | /*.Rcheck/ 15 | # RStudio files 16 | .Rproj.user/ 17 | # produced vignettes 18 | vignettes/*.html 19 | vignettes/*.pdf 20 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 21 | .httr-oauth 22 | # knitr and R markdown default cache directories 23 | *_cache/ 24 | /cache/ 25 | # Temporary files created by R markdown 26 | *.utf8.md 27 | *.knit.md 28 | # R Environment Variables 29 | .Renviron 30 | # pkgdown site 31 | docs/ 32 | # translation temp files 33 | po/*~ 34 | # RStudio Connect folder 35 | rsconnect/ 36 | info_workshop 37 | *.csv 38 | -------------------------------------------------------------------------------- /AEET/.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | # Session Data files 5 | .RData 6 | .RDataTmp 7 | # User-specific files 8 | .Ruserdata 9 | # Example code in package build process 10 | *-Ex.R 11 | # Output files from R CMD build 12 | /*.tar.gz 13 | # Output files from R CMD check 14 | /*.Rcheck/ 15 | # RStudio files 16 | .Rproj.user/ 17 | # produced vignettes 18 | vignettes/*.html 19 | vignettes/*.pdf 20 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 21 | .httr-oauth 22 | # knitr and R markdown default cache directories 23 | *_cache/ 24 | /cache/ 25 | # Temporary files created by R markdown 26 | *.utf8.md 27 | *.knit.md 28 | # R Environment Variables 29 | .Renviron 30 | # pkgdown site 31 | docs/ 32 | # translation temp files 33 | po/*~ 34 | # RStudio Connect folder 35 | rsconnect/ 36 | info_workshop 37 | -------------------------------------------------------------------------------- /AEET/README.md: -------------------------------------------------------------------------------- 1 | # intro_prog_fun 2 | Apuntes del taller de Introducción a la programación funcional impartido en el XVI congreso de la AEET el 10/10/2023 3 | -------------------------------------------------------------------------------- /AEET/images/1_N_0YimgDh2_IbBT9jJNtOg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/1_N_0YimgDh2_IbBT9jJNtOg.jpg -------------------------------------------------------------------------------- /AEET/images/Logo_ecoinf_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/Logo_ecoinf_10.jpg -------------------------------------------------------------------------------- /AEET/images/assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/assignment.jpg -------------------------------------------------------------------------------- /AEET/images/code_all_teh_things.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/code_all_teh_things.jpg -------------------------------------------------------------------------------- /AEET/images/forloops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/forloops.png -------------------------------------------------------------------------------- /AEET/images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/function.png -------------------------------------------------------------------------------- /AEET/images/map+fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/map+fix.png -------------------------------------------------------------------------------- /AEET/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/map.png -------------------------------------------------------------------------------- /AEET/images/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/map2.png -------------------------------------------------------------------------------- /AEET/images/map_frosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/map_frosting.png -------------------------------------------------------------------------------- /AEET/images/mentimeter_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/mentimeter_qr_code.png -------------------------------------------------------------------------------- /AEET/images/pmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/images/pmap.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/codigo_repetido-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/codigo_repetido-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/codigo_repetido-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/codigo_repetido-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/codigo_repetido-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/codigo_repetido-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar3-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-commonmark/funcion_simplificar_3-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/argumento dotdotdot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/argumento dotdotdot-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/argumento dotdotdot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/argumento dotdotdot-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/codigo_repetido-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/codigo_repetido-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/codigo_repetido-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/codigo_repetido-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/codigo_repetido-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/codigo_repetido-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar3-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/de codigo repetido a funcion-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_pruebas-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_pruebas-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_pruebas-3.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_simplificar-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_simplificar-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_simplificar_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_simplificar_2-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/funcion_simplificar_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/funcion_simplificar_3-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/figure-html/unnamed-chunk-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/figure-html/unnamed-chunk-3-2.png -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/AEET/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /AEET/intro_prog_fun_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-style: inherit; 89 | } 90 | 91 | code span.op { 92 | color: #5E5E5E; 93 | font-style: inherit; 94 | } 95 | 96 | code span.er { 97 | color: #AD0000; 98 | font-style: inherit; 99 | } 100 | 101 | code span.bn { 102 | color: #AD0000; 103 | font-style: inherit; 104 | } 105 | 106 | code span.al { 107 | color: #AD0000; 108 | font-style: inherit; 109 | } 110 | 111 | code span.va { 112 | color: #111111; 113 | font-style: inherit; 114 | } 115 | 116 | code span.bu { 117 | font-style: inherit; 118 | } 119 | 120 | code span.ex { 121 | font-style: inherit; 122 | } 123 | 124 | code span.pp { 125 | color: #AD0000; 126 | font-style: inherit; 127 | } 128 | 129 | code span.in { 130 | color: #5E5E5E; 131 | font-style: inherit; 132 | } 133 | 134 | code span.vs { 135 | color: #20794D; 136 | font-style: inherit; 137 | } 138 | 139 | code span.wa { 140 | color: #5E5E5E; 141 | font-style: italic; 142 | } 143 | 144 | code span.do { 145 | color: #5E5E5E; 146 | font-style: italic; 147 | } 148 | 149 | code span.im { 150 | color: #00769E; 151 | font-style: inherit; 152 | } 153 | 154 | code span.ch { 155 | color: #20794D; 156 | font-style: inherit; 157 | } 158 | 159 | code span.dt { 160 | color: #AD0000; 161 | font-style: inherit; 162 | } 163 | 164 | code span.fl { 165 | color: #AD0000; 166 | font-style: inherit; 167 | } 168 | 169 | code span.co { 170 | color: #5E5E5E; 171 | font-style: inherit; 172 | } 173 | 174 | code span.cv { 175 | color: #5E5E5E; 176 | font-style: italic; 177 | } 178 | 179 | code span.cn { 180 | color: #8f5902; 181 | font-style: inherit; 182 | } 183 | 184 | code span.sc { 185 | color: #5E5E5E; 186 | font-style: inherit; 187 | } 188 | 189 | code span.dv { 190 | color: #AD0000; 191 | font-style: inherit; 192 | } 193 | 194 | code span.kw { 195 | color: #003B4F; 196 | font-style: inherit; 197 | } 198 | 199 | .prevent-inlining { 200 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /AEET/old/informacion.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "informacion" 3 | format: 4 | gfm: default 5 | editor: visual 6 | --- 7 | 8 | ## Información principal 9 | 10 | - R for data Science (functions): 11 | 12 | - Advanced R (functions): 13 | 14 | - R for data Science (iteration): 15 | 16 | - Advanced R (functionals): 17 | 18 | - purrr 1.0.0: 19 | 20 | - Learn to purrr (Rebecca Barter): 21 | 22 | - Sacando el máximo partido a Tidyverse: 23 | 24 | - R for Data Science (2e): 25 | 26 | ## No directamente relacionado pero útil 27 | 28 | - Style guide: 29 | 30 | - Quince consejos para mejorar nuestro código y flujo de trabajo con R: 31 | -------------------------------------------------------------------------------- /AEET/results/.gitignore: -------------------------------------------------------------------------------- 1 | penguins_Adelie.csv 2 | penguins_Chinstrap.csv 3 | penguins_Gentoo.csv 4 | -------------------------------------------------------------------------------- /AEET/styles.css: -------------------------------------------------------------------------------- 1 | ```{=html} 2 | h2 { 3 | font-size: 16px; 4 | font-weight: bold; 5 | } 6 | 7 | ``` -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # intro_prog_fun 2 | Apuntes de los cursos y talleres de **Introducción a la programación funcional en R** (transl. Notes from the courses and workshops on Functional Programming in R) 3 | 4 | El directorio AEET contiene los apuntes del taller que impartimos en el XVI congreso de la AEET el 10/10/2023 5 | 6 | El directorio USAL contiene los apuntes del curso impartido en la Universidad de Salamanca entre el 13/05/2024 y 22/05/2024 7 | 8 | The directory transmitting_science contains all notes in English of the course we taught in Transmitting Science in 2025 (2nd edition) 9 | 10 | El directorio lleida contiene los apuntes del curso impartido en la Universidad de Lleida el 19/09/2024 y 20/09/2024 11 | 12 | **The most updated notes are those of lleida (in Spanish) and Transmitting Science (in English)** 13 | -------------------------------------------------------------------------------- /USAL/.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | # Session Data files 5 | .RData 6 | .RDataTmp 7 | # User-specific files 8 | .Ruserdata 9 | # Example code in package build process 10 | *-Ex.R 11 | # Output files from R CMD build 12 | /*.tar.gz 13 | # Output files from R CMD check 14 | /*.Rcheck/ 15 | # RStudio files 16 | .Rproj.user/ 17 | # produced vignettes 18 | vignettes/*.html 19 | vignettes/*.pdf 20 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 21 | .httr-oauth 22 | # knitr and R markdown default cache directories 23 | *_cache/ 24 | /cache/ 25 | # Temporary files created by R markdown 26 | *.utf8.md 27 | *.knit.md 28 | # R Environment Variables 29 | .Renviron 30 | # pkgdown site 31 | docs/ 32 | # translation temp files 33 | po/*~ 34 | # RStudio Connect folder 35 | rsconnect/ 36 | info_workshop 37 | penguins_Adelie.csv 38 | penguins_Adelie.png 39 | penguins_Chinstrap.csv 40 | penguins_Chinstrap.png 41 | penguins_Gentoo.csv 42 | penguins_Gentoo.png 43 | -------------------------------------------------------------------------------- /USAL/README.md: -------------------------------------------------------------------------------- 1 | # intro_prog_fun 2 | Apuntes del curso de Introducción a la programación funcional impartido en la Universidad de Salamanca entre el 13/05/2024 y 22/05/2024 3 | -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/figure-commonmark/5.2.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/ejer_resueltos_files/figure-commonmark/5.2.1-1.png -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/figure-commonmark/5.2.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/ejer_resueltos_files/figure-commonmark/5.2.1-2.png -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/figure-html/5.2.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/ejer_resueltos_files/figure-html/5.2.1-1.png -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/figure-html/5.2.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/ejer_resueltos_files/figure-html/5.2.1-2.png -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/ejer_resueltos_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /USAL/ejer_resueltos_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-style: inherit; 89 | } 90 | 91 | code span.op { 92 | color: #5E5E5E; 93 | font-style: inherit; 94 | } 95 | 96 | code span.er { 97 | color: #AD0000; 98 | font-style: inherit; 99 | } 100 | 101 | code span.bn { 102 | color: #AD0000; 103 | font-style: inherit; 104 | } 105 | 106 | code span.al { 107 | color: #AD0000; 108 | font-style: inherit; 109 | } 110 | 111 | code span.va { 112 | color: #111111; 113 | font-style: inherit; 114 | } 115 | 116 | code span.bu { 117 | font-style: inherit; 118 | } 119 | 120 | code span.ex { 121 | font-style: inherit; 122 | } 123 | 124 | code span.pp { 125 | color: #AD0000; 126 | font-style: inherit; 127 | } 128 | 129 | code span.in { 130 | color: #5E5E5E; 131 | font-style: inherit; 132 | } 133 | 134 | code span.vs { 135 | color: #20794D; 136 | font-style: inherit; 137 | } 138 | 139 | code span.wa { 140 | color: #5E5E5E; 141 | font-style: italic; 142 | } 143 | 144 | code span.do { 145 | color: #5E5E5E; 146 | font-style: italic; 147 | } 148 | 149 | code span.im { 150 | color: #00769E; 151 | font-style: inherit; 152 | } 153 | 154 | code span.ch { 155 | color: #20794D; 156 | font-style: inherit; 157 | } 158 | 159 | code span.dt { 160 | color: #AD0000; 161 | font-style: inherit; 162 | } 163 | 164 | code span.fl { 165 | color: #AD0000; 166 | font-style: inherit; 167 | } 168 | 169 | code span.co { 170 | color: #5E5E5E; 171 | font-style: inherit; 172 | } 173 | 174 | code span.cv { 175 | color: #5E5E5E; 176 | font-style: italic; 177 | } 178 | 179 | code span.cn { 180 | color: #8f5902; 181 | font-style: inherit; 182 | } 183 | 184 | code span.sc { 185 | color: #5E5E5E; 186 | font-style: inherit; 187 | } 188 | 189 | code span.dv { 190 | color: #AD0000; 191 | font-style: inherit; 192 | } 193 | 194 | code span.kw { 195 | color: #003B4F; 196 | font-style: inherit; 197 | } 198 | 199 | .prevent-inlining { 200 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /USAL/images/1_N_0YimgDh2_IbBT9jJNtOg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/1_N_0YimgDh2_IbBT9jJNtOg.jpg -------------------------------------------------------------------------------- /USAL/images/Logo_ecoinf_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/Logo_ecoinf_10.jpg -------------------------------------------------------------------------------- /USAL/images/assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/assignment.jpg -------------------------------------------------------------------------------- /USAL/images/code_all_teh_things.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/code_all_teh_things.jpg -------------------------------------------------------------------------------- /USAL/images/datascience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/datascience.png -------------------------------------------------------------------------------- /USAL/images/e684f0da-13b1-4d00-ab25-37814e79ee1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/e684f0da-13b1-4d00-ab25-37814e79ee1e.png -------------------------------------------------------------------------------- /USAL/images/forloops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/forloops.png -------------------------------------------------------------------------------- /USAL/images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/function.png -------------------------------------------------------------------------------- /USAL/images/map+fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/map+fix.png -------------------------------------------------------------------------------- /USAL/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/map.png -------------------------------------------------------------------------------- /USAL/images/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/map2.png -------------------------------------------------------------------------------- /USAL/images/map_frosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/map_frosting.png -------------------------------------------------------------------------------- /USAL/images/pmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/images/pmap.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, pruebas-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar2-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion, simplificar3-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/de codigo repetido a funcion-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-commonmark/funcion_simplificar_3-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/argumento dotdotdot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/argumento dotdotdot-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/argumento dotdotdot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/argumento dotdotdot-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/codigo_repetido-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/codigo_repetido-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/codigo_repetido-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/codigo_repetido-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/codigo_repetido-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/codigo_repetido-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, pruebas-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar2-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion, simplificar3-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/de codigo repetido a funcion-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_pruebas-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_pruebas-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_pruebas-3.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_simplificar-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_simplificar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_simplificar-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_simplificar_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_simplificar_2-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/funcion_simplificar_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/funcion_simplificar_3-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/figure-html/unnamed-chunk-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/figure-html/unnamed-chunk-3-2.png -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/USAL/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /USAL/intro_prog_fun_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-style: inherit; 89 | } 90 | 91 | code span.op { 92 | color: #5E5E5E; 93 | font-style: inherit; 94 | } 95 | 96 | code span.er { 97 | color: #AD0000; 98 | font-style: inherit; 99 | } 100 | 101 | code span.bn { 102 | color: #AD0000; 103 | font-style: inherit; 104 | } 105 | 106 | code span.al { 107 | color: #AD0000; 108 | font-style: inherit; 109 | } 110 | 111 | code span.va { 112 | color: #111111; 113 | font-style: inherit; 114 | } 115 | 116 | code span.bu { 117 | font-style: inherit; 118 | } 119 | 120 | code span.ex { 121 | font-style: inherit; 122 | } 123 | 124 | code span.pp { 125 | color: #AD0000; 126 | font-style: inherit; 127 | } 128 | 129 | code span.in { 130 | color: #5E5E5E; 131 | font-style: inherit; 132 | } 133 | 134 | code span.vs { 135 | color: #20794D; 136 | font-style: inherit; 137 | } 138 | 139 | code span.wa { 140 | color: #5E5E5E; 141 | font-style: italic; 142 | } 143 | 144 | code span.do { 145 | color: #5E5E5E; 146 | font-style: italic; 147 | } 148 | 149 | code span.im { 150 | color: #00769E; 151 | font-style: inherit; 152 | } 153 | 154 | code span.ch { 155 | color: #20794D; 156 | font-style: inherit; 157 | } 158 | 159 | code span.dt { 160 | color: #AD0000; 161 | font-style: inherit; 162 | } 163 | 164 | code span.fl { 165 | color: #AD0000; 166 | font-style: inherit; 167 | } 168 | 169 | code span.co { 170 | color: #5E5E5E; 171 | font-style: inherit; 172 | } 173 | 174 | code span.cv { 175 | color: #5E5E5E; 176 | font-style: italic; 177 | } 178 | 179 | code span.cn { 180 | color: #8f5902; 181 | font-style: inherit; 182 | } 183 | 184 | code span.sc { 185 | color: #5E5E5E; 186 | font-style: inherit; 187 | } 188 | 189 | code span.dv { 190 | color: #AD0000; 191 | font-style: inherit; 192 | } 193 | 194 | code span.kw { 195 | color: #003B4F; 196 | font-style: inherit; 197 | } 198 | 199 | .prevent-inlining { 200 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /USAL/styles.css: -------------------------------------------------------------------------------- 1 | ```{=html} 2 | h2 { 3 | font-size: 16px; 4 | font-weight: bold; 5 | } 6 | 7 | ``` -------------------------------------------------------------------------------- /intro_prog_fun.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /lleida/.gitignore: -------------------------------------------------------------------------------- 1 | penguins_Adelie.png 2 | penguins_Chinstrap.png 3 | penguins_Gentoo.png 4 | documentacion 5 | -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/figure-commonmark/5.2.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/ejer_resueltos_files/figure-commonmark/5.2.1-1.png -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/figure-commonmark/5.2.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/ejer_resueltos_files/figure-commonmark/5.2.1-2.png -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/figure-html/5.2.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/ejer_resueltos_files/figure-html/5.2.1-1.png -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/figure-html/5.2.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/ejer_resueltos_files/figure-html/5.2.1-2.png -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/ejer_resueltos_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /lleida/ejer_resueltos_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-style: inherit; 89 | } 90 | 91 | code span.op { 92 | color: #5E5E5E; 93 | font-style: inherit; 94 | } 95 | 96 | code span.er { 97 | color: #AD0000; 98 | font-style: inherit; 99 | } 100 | 101 | code span.bn { 102 | color: #AD0000; 103 | font-style: inherit; 104 | } 105 | 106 | code span.al { 107 | color: #AD0000; 108 | font-style: inherit; 109 | } 110 | 111 | code span.va { 112 | color: #111111; 113 | font-style: inherit; 114 | } 115 | 116 | code span.bu { 117 | font-style: inherit; 118 | } 119 | 120 | code span.ex { 121 | font-style: inherit; 122 | } 123 | 124 | code span.pp { 125 | color: #AD0000; 126 | font-style: inherit; 127 | } 128 | 129 | code span.in { 130 | color: #5E5E5E; 131 | font-style: inherit; 132 | } 133 | 134 | code span.vs { 135 | color: #20794D; 136 | font-style: inherit; 137 | } 138 | 139 | code span.wa { 140 | color: #5E5E5E; 141 | font-style: italic; 142 | } 143 | 144 | code span.do { 145 | color: #5E5E5E; 146 | font-style: italic; 147 | } 148 | 149 | code span.im { 150 | color: #00769E; 151 | font-style: inherit; 152 | } 153 | 154 | code span.ch { 155 | color: #20794D; 156 | font-style: inherit; 157 | } 158 | 159 | code span.dt { 160 | color: #AD0000; 161 | font-style: inherit; 162 | } 163 | 164 | code span.fl { 165 | color: #AD0000; 166 | font-style: inherit; 167 | } 168 | 169 | code span.co { 170 | color: #5E5E5E; 171 | font-style: inherit; 172 | } 173 | 174 | code span.cv { 175 | color: #5E5E5E; 176 | font-style: italic; 177 | } 178 | 179 | code span.cn { 180 | color: #8f5902; 181 | font-style: inherit; 182 | } 183 | 184 | code span.sc { 185 | color: #5E5E5E; 186 | font-style: inherit; 187 | } 188 | 189 | code span.dv { 190 | color: #AD0000; 191 | font-style: inherit; 192 | } 193 | 194 | code span.kw { 195 | color: #003B4F; 196 | font-style: inherit; 197 | } 198 | 199 | .prevent-inlining { 200 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /lleida/images/Logo_ecoinf_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/Logo_ecoinf_10.jpg -------------------------------------------------------------------------------- /lleida/images/assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/assignment.jpg -------------------------------------------------------------------------------- /lleida/images/code_all_teh_things.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/code_all_teh_things.jpg -------------------------------------------------------------------------------- /lleida/images/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/data-science.png -------------------------------------------------------------------------------- /lleida/images/data_masking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/data_masking.png -------------------------------------------------------------------------------- /lleida/images/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/environment.png -------------------------------------------------------------------------------- /lleida/images/forloops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/forloops.png -------------------------------------------------------------------------------- /lleida/images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/function.png -------------------------------------------------------------------------------- /lleida/images/map+fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/map+fix.png -------------------------------------------------------------------------------- /lleida/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/map.png -------------------------------------------------------------------------------- /lleida/images/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/map2.png -------------------------------------------------------------------------------- /lleida/images/map_frosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/map_frosting.png -------------------------------------------------------------------------------- /lleida/images/pmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/pmap.png -------------------------------------------------------------------------------- /lleida/images/r_horst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/r_horst.png -------------------------------------------------------------------------------- /lleida/images/repeated_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/images/repeated_code.jpg -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-2.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-3.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-2.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-2.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-3.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/funcion_pruebas-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/funcion_pruebas-2.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/funcion_pruebas-3.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/funcion_simplificar-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/figure-html/funcion_simplificar_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/figure-html/funcion_simplificar_2-2.png -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/lleida/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /lleida/intro_prog_fun_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-style: inherit; 89 | } 90 | 91 | code span.op { 92 | color: #5E5E5E; 93 | font-style: inherit; 94 | } 95 | 96 | code span.er { 97 | color: #AD0000; 98 | font-style: inherit; 99 | } 100 | 101 | code span.bn { 102 | color: #AD0000; 103 | font-style: inherit; 104 | } 105 | 106 | code span.al { 107 | color: #AD0000; 108 | font-style: inherit; 109 | } 110 | 111 | code span.va { 112 | color: #111111; 113 | font-style: inherit; 114 | } 115 | 116 | code span.bu { 117 | font-style: inherit; 118 | } 119 | 120 | code span.ex { 121 | font-style: inherit; 122 | } 123 | 124 | code span.pp { 125 | color: #AD0000; 126 | font-style: inherit; 127 | } 128 | 129 | code span.in { 130 | color: #5E5E5E; 131 | font-style: inherit; 132 | } 133 | 134 | code span.vs { 135 | color: #20794D; 136 | font-style: inherit; 137 | } 138 | 139 | code span.wa { 140 | color: #5E5E5E; 141 | font-style: italic; 142 | } 143 | 144 | code span.do { 145 | color: #5E5E5E; 146 | font-style: italic; 147 | } 148 | 149 | code span.im { 150 | color: #00769E; 151 | font-style: inherit; 152 | } 153 | 154 | code span.ch { 155 | color: #20794D; 156 | font-style: inherit; 157 | } 158 | 159 | code span.dt { 160 | color: #AD0000; 161 | font-style: inherit; 162 | } 163 | 164 | code span.fl { 165 | color: #AD0000; 166 | font-style: inherit; 167 | } 168 | 169 | code span.co { 170 | color: #5E5E5E; 171 | font-style: inherit; 172 | } 173 | 174 | code span.cv { 175 | color: #5E5E5E; 176 | font-style: italic; 177 | } 178 | 179 | code span.cn { 180 | color: #8f5902; 181 | font-style: inherit; 182 | } 183 | 184 | code span.sc { 185 | color: #5E5E5E; 186 | font-style: inherit; 187 | } 188 | 189 | code span.dv { 190 | color: #AD0000; 191 | font-style: inherit; 192 | } 193 | 194 | code span.kw { 195 | color: #003B4F; 196 | font-style: inherit; 197 | } 198 | 199 | .prevent-inlining { 200 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /transmitting_science/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | evaluation 3 | highlights.docx 4 | penguins_Adelie.png 5 | penguins_Chinstrap.png 6 | penguins_Gentoo.png 7 | -------------------------------------------------------------------------------- /transmitting_science/README.md: -------------------------------------------------------------------------------- 1 | # intro_prog_fun 2 | Notes from the course "Functional Programming with R" taught at Transmitting Science in 2025 (2nd edition) 3 | -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/figure-commonmark/5.2.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/exercises_solutions_files/figure-commonmark/5.2.1-1.png -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/figure-commonmark/5.2.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/exercises_solutions_files/figure-commonmark/5.2.1-2.png -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/figure-html/5.2.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/exercises_solutions_files/figure-html/5.2.1-1.png -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/figure-html/5.2.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/exercises_solutions_files/figure-html/5.2.1-2.png -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/exercises_solutions_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- 1 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 2 | // 3 | // AnchorJS - v5.0.0 - 2023-01-18 4 | // https://www.bryanbraun.com/anchorjs/ 5 | // Copyright (c) 2023 Bryan Braun; Licensed MIT 6 | // 7 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 8 | !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(globalThis,function(){"use strict";return function(A){function u(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function d(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],u(this.options),this.add=function(A){var e,t,o,i,n,s,a,r,l,c,h,p=[];if(u(this.options),0!==(e=d(A=A||"h2, h3, h4, h5, h6")).length){for(null===document.head.querySelector("style.anchorjs")&&((A=document.createElement("style")).className="anchorjs",A.appendChild(document.createTextNode("")),void 0===(h=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(A):document.head.insertBefore(A,h),A.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",A.sheet.cssRules.length),A.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /transmitting_science/exercises_solutions_files/libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-weight: bold; 89 | font-style: inherit; 90 | } 91 | 92 | code span.op { 93 | color: #5E5E5E; 94 | font-style: inherit; 95 | } 96 | 97 | code span.er { 98 | color: #AD0000; 99 | font-style: inherit; 100 | } 101 | 102 | code span.bn { 103 | color: #AD0000; 104 | font-style: inherit; 105 | } 106 | 107 | code span.al { 108 | color: #AD0000; 109 | font-style: inherit; 110 | } 111 | 112 | code span.va { 113 | color: #111111; 114 | font-style: inherit; 115 | } 116 | 117 | code span.bu { 118 | font-style: inherit; 119 | } 120 | 121 | code span.ex { 122 | font-style: inherit; 123 | } 124 | 125 | code span.pp { 126 | color: #AD0000; 127 | font-style: inherit; 128 | } 129 | 130 | code span.in { 131 | color: #5E5E5E; 132 | font-style: inherit; 133 | } 134 | 135 | code span.vs { 136 | color: #20794D; 137 | font-style: inherit; 138 | } 139 | 140 | code span.wa { 141 | color: #5E5E5E; 142 | font-style: italic; 143 | } 144 | 145 | code span.do { 146 | color: #5E5E5E; 147 | font-style: italic; 148 | } 149 | 150 | code span.im { 151 | color: #00769E; 152 | font-style: inherit; 153 | } 154 | 155 | code span.ch { 156 | color: #20794D; 157 | font-style: inherit; 158 | } 159 | 160 | code span.dt { 161 | color: #AD0000; 162 | font-style: inherit; 163 | } 164 | 165 | code span.fl { 166 | color: #AD0000; 167 | font-style: inherit; 168 | } 169 | 170 | code span.co { 171 | color: #5E5E5E; 172 | font-style: inherit; 173 | } 174 | 175 | code span.cv { 176 | color: #5E5E5E; 177 | font-style: italic; 178 | } 179 | 180 | code span.cn { 181 | color: #8f5902; 182 | font-style: inherit; 183 | } 184 | 185 | code span.sc { 186 | color: #5E5E5E; 187 | font-style: inherit; 188 | } 189 | 190 | code span.dv { 191 | color: #AD0000; 192 | font-style: inherit; 193 | } 194 | 195 | code span.kw { 196 | color: #003B4F; 197 | font-weight: bold; 198 | font-style: inherit; 199 | } 200 | 201 | .prevent-inlining { 202 | content: " code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-weight: bold; 89 | font-style: inherit; 90 | } 91 | 92 | code span.op { 93 | color: #5E5E5E; 94 | font-style: inherit; 95 | } 96 | 97 | code span.er { 98 | color: #AD0000; 99 | font-style: inherit; 100 | } 101 | 102 | code span.bn { 103 | color: #AD0000; 104 | font-style: inherit; 105 | } 106 | 107 | code span.al { 108 | color: #AD0000; 109 | font-style: inherit; 110 | } 111 | 112 | code span.va { 113 | color: #111111; 114 | font-style: inherit; 115 | } 116 | 117 | code span.bu { 118 | font-style: inherit; 119 | } 120 | 121 | code span.ex { 122 | font-style: inherit; 123 | } 124 | 125 | code span.pp { 126 | color: #AD0000; 127 | font-style: inherit; 128 | } 129 | 130 | code span.in { 131 | color: #5E5E5E; 132 | font-style: inherit; 133 | } 134 | 135 | code span.vs { 136 | color: #20794D; 137 | font-style: inherit; 138 | } 139 | 140 | code span.wa { 141 | color: #5E5E5E; 142 | font-style: italic; 143 | } 144 | 145 | code span.do { 146 | color: #5E5E5E; 147 | font-style: italic; 148 | } 149 | 150 | code span.im { 151 | color: #00769E; 152 | font-style: inherit; 153 | } 154 | 155 | code span.ch { 156 | color: #20794D; 157 | font-style: inherit; 158 | } 159 | 160 | code span.dt { 161 | color: #AD0000; 162 | font-style: inherit; 163 | } 164 | 165 | code span.fl { 166 | color: #AD0000; 167 | font-style: inherit; 168 | } 169 | 170 | code span.co { 171 | color: #5E5E5E; 172 | font-style: inherit; 173 | } 174 | 175 | code span.cv { 176 | color: #5E5E5E; 177 | font-style: italic; 178 | } 179 | 180 | code span.cn { 181 | color: #8f5902; 182 | font-style: inherit; 183 | } 184 | 185 | code span.sc { 186 | color: #5E5E5E; 187 | font-style: inherit; 188 | } 189 | 190 | code span.dv { 191 | color: #AD0000; 192 | font-style: inherit; 193 | } 194 | 195 | code span.kw { 196 | color: #003B4F; 197 | font-weight: bold; 198 | font-style: inherit; 199 | } 200 | 201 | .prevent-inlining { 202 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /transmitting_science/images/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/data-science.png -------------------------------------------------------------------------------- /transmitting_science/images/data_masking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/data_masking.png -------------------------------------------------------------------------------- /transmitting_science/images/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/environment.png -------------------------------------------------------------------------------- /transmitting_science/images/forloops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/forloops.png -------------------------------------------------------------------------------- /transmitting_science/images/fp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/fp.png -------------------------------------------------------------------------------- /transmitting_science/images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/function.png -------------------------------------------------------------------------------- /transmitting_science/images/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/library.png -------------------------------------------------------------------------------- /transmitting_science/images/map+fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/map+fix.png -------------------------------------------------------------------------------- /transmitting_science/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/map.png -------------------------------------------------------------------------------- /transmitting_science/images/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/map2.png -------------------------------------------------------------------------------- /transmitting_science/images/map_frosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/map_frosting.png -------------------------------------------------------------------------------- /transmitting_science/images/pmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/pmap.png -------------------------------------------------------------------------------- /transmitting_science/images/r_horst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/images/r_horst.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/codigo_repetido_avanzado-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_pruebas-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_pruebas-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_pruebas-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_simplificar-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/function_simplify-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/function_simplify-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/function_simplify_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/function_simplify_2-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/function_simplify_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/function_simplify_2-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/function_trials-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/function_trials-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/function_trials-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/function_trials-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/function_trials-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/function_trials-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/repeated_code_advanced-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/repeated_code_advanced-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/repeated_code_advanced-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/repeated_code_advanced-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-commonmark/repeated_code_advanced-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-commonmark/repeated_code_advanced-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/codigo_repetido_avanzado-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/funcion_pruebas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/funcion_pruebas-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/funcion_pruebas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/funcion_pruebas-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/funcion_pruebas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/funcion_pruebas-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/funcion_simplificar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/funcion_simplificar-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/funcion_simplificar_2-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/function_simplify-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/function_simplify-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/function_simplify_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/function_simplify_2-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/function_simplify_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/function_simplify_2-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/function_trials-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/function_trials-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/function_trials-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/function_trials-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/function_trials-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/function_trials-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/repeated_code_advanced-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/repeated_code_advanced-1.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/repeated_code_advanced-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/repeated_code_advanced-2.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/figure-html/repeated_code_advanced-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/figure-html/repeated_code_advanced-3.png -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DatSciR/intro_prog_fun/f006a606ef3b29fad4a227638669af3a0dda9b86/transmitting_science/intro_prog_fun_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- 1 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 2 | // 3 | // AnchorJS - v5.0.0 - 2023-01-18 4 | // https://www.bryanbraun.com/anchorjs/ 5 | // Copyright (c) 2023 Bryan Braun; Licensed MIT 6 | // 7 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 8 | !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(globalThis,function(){"use strict";return function(A){function u(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function d(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],u(this.options),this.add=function(A){var e,t,o,i,n,s,a,r,l,c,h,p=[];if(u(this.options),0!==(e=d(A=A||"h2, h3, h4, h5, h6")).length){for(null===document.head.querySelector("style.anchorjs")&&((A=document.createElement("style")).className="anchorjs",A.appendChild(document.createTextNode("")),void 0===(h=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(A):document.head.insertBefore(A,h),A.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",A.sheet.cssRules.length),A.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /transmitting_science/intro_prog_fun_files/libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-weight: bold; 89 | font-style: inherit; 90 | } 91 | 92 | code span.op { 93 | color: #5E5E5E; 94 | font-style: inherit; 95 | } 96 | 97 | code span.er { 98 | color: #AD0000; 99 | font-style: inherit; 100 | } 101 | 102 | code span.bn { 103 | color: #AD0000; 104 | font-style: inherit; 105 | } 106 | 107 | code span.al { 108 | color: #AD0000; 109 | font-style: inherit; 110 | } 111 | 112 | code span.va { 113 | color: #111111; 114 | font-style: inherit; 115 | } 116 | 117 | code span.bu { 118 | font-style: inherit; 119 | } 120 | 121 | code span.ex { 122 | font-style: inherit; 123 | } 124 | 125 | code span.pp { 126 | color: #AD0000; 127 | font-style: inherit; 128 | } 129 | 130 | code span.in { 131 | color: #5E5E5E; 132 | font-style: inherit; 133 | } 134 | 135 | code span.vs { 136 | color: #20794D; 137 | font-style: inherit; 138 | } 139 | 140 | code span.wa { 141 | color: #5E5E5E; 142 | font-style: italic; 143 | } 144 | 145 | code span.do { 146 | color: #5E5E5E; 147 | font-style: italic; 148 | } 149 | 150 | code span.im { 151 | color: #00769E; 152 | font-style: inherit; 153 | } 154 | 155 | code span.ch { 156 | color: #20794D; 157 | font-style: inherit; 158 | } 159 | 160 | code span.dt { 161 | color: #AD0000; 162 | font-style: inherit; 163 | } 164 | 165 | code span.fl { 166 | color: #AD0000; 167 | font-style: inherit; 168 | } 169 | 170 | code span.co { 171 | color: #5E5E5E; 172 | font-style: inherit; 173 | } 174 | 175 | code span.cv { 176 | color: #5E5E5E; 177 | font-style: italic; 178 | } 179 | 180 | code span.cn { 181 | color: #8f5902; 182 | font-style: inherit; 183 | } 184 | 185 | code span.sc { 186 | color: #5E5E5E; 187 | font-style: inherit; 188 | } 189 | 190 | code span.dv { 191 | color: #AD0000; 192 | font-style: inherit; 193 | } 194 | 195 | code span.kw { 196 | color: #003B4F; 197 | font-weight: bold; 198 | font-style: inherit; 199 | } 200 | 201 | .prevent-inlining { 202 | content: " code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-weight: bold; 89 | font-style: inherit; 90 | } 91 | 92 | code span.op { 93 | color: #5E5E5E; 94 | font-style: inherit; 95 | } 96 | 97 | code span.er { 98 | color: #AD0000; 99 | font-style: inherit; 100 | } 101 | 102 | code span.bn { 103 | color: #AD0000; 104 | font-style: inherit; 105 | } 106 | 107 | code span.al { 108 | color: #AD0000; 109 | font-style: inherit; 110 | } 111 | 112 | code span.va { 113 | color: #111111; 114 | font-style: inherit; 115 | } 116 | 117 | code span.bu { 118 | font-style: inherit; 119 | } 120 | 121 | code span.ex { 122 | font-style: inherit; 123 | } 124 | 125 | code span.pp { 126 | color: #AD0000; 127 | font-style: inherit; 128 | } 129 | 130 | code span.in { 131 | color: #5E5E5E; 132 | font-style: inherit; 133 | } 134 | 135 | code span.vs { 136 | color: #20794D; 137 | font-style: inherit; 138 | } 139 | 140 | code span.wa { 141 | color: #5E5E5E; 142 | font-style: italic; 143 | } 144 | 145 | code span.do { 146 | color: #5E5E5E; 147 | font-style: italic; 148 | } 149 | 150 | code span.im { 151 | color: #00769E; 152 | font-style: inherit; 153 | } 154 | 155 | code span.ch { 156 | color: #20794D; 157 | font-style: inherit; 158 | } 159 | 160 | code span.dt { 161 | color: #AD0000; 162 | font-style: inherit; 163 | } 164 | 165 | code span.fl { 166 | color: #AD0000; 167 | font-style: inherit; 168 | } 169 | 170 | code span.co { 171 | color: #5E5E5E; 172 | font-style: inherit; 173 | } 174 | 175 | code span.cv { 176 | color: #5E5E5E; 177 | font-style: italic; 178 | } 179 | 180 | code span.cn { 181 | color: #8f5902; 182 | font-style: inherit; 183 | } 184 | 185 | code span.sc { 186 | color: #5E5E5E; 187 | font-style: inherit; 188 | } 189 | 190 | code span.dv { 191 | color: #AD0000; 192 | font-style: inherit; 193 | } 194 | 195 | code span.kw { 196 | color: #003B4F; 197 | font-weight: bold; 198 | font-style: inherit; 199 | } 200 | 201 | .prevent-inlining { 202 | content: ".tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} --------------------------------------------------------------------------------