├── .gitignore ├── 01_ggplot_basico.qmd ├── 01_ggplot_basico_soluciones.qmd ├── 02_ggplot_intermedio.qmd ├── 02_ggplot_intermedio_soluciones.qmd ├── 03_ggplot_avanzado.qmd ├── 03_ggplot_avanzado_soluciones.qmd ├── 04_leaflet.qmd ├── 04_leaflet_soluciones.qmd ├── 05_plotly_basico.qmd ├── 05_plotly_basico_soluciones.qmd ├── 06_plotly_avanzado.qmd ├── 06_plotly_avanzado_soluciones.qmd ├── 07_rmarkdown.qmd ├── 08_flexdashboard.qmd ├── 08_flexdashboard_soluciones.qmd ├── 09_shiny_basico.qmd ├── 09_shiny_basico_soluciones.qmd ├── 10_shiny_avanzado.qmd ├── 10_shiny_avanzado_soluciones.qmd ├── 11_proyecto.qmd ├── LICENSE.txt ├── README.md ├── _quarto.yml ├── dat ├── defunciones_espana.csv ├── economist.csv ├── elecciones_2019_provincias.csv ├── elecciones_2019_votos.csv ├── lineas_metro.geojson ├── listings.csv ├── neighbourhoods.geojson ├── paradas_metro_madrid.geojson ├── poblacion_espana.csv ├── provincias_ccaas.csv ├── spain_ccaas.geojson ├── spain_provinces.geojson ├── stations.csv ├── stations_status.csv ├── trips.csv └── usa_president.csv ├── index.qmd ├── rdataviz.Rproj ├── resources ├── 01_ggplot_basico │ ├── banana.png │ ├── barplot.jpg │ ├── boxplot.png │ ├── chart_type.png │ ├── dinos.png │ ├── lineplot.png │ ├── log.jpg │ ├── pie_vs_bar.png │ ├── scatterplot.jpg │ ├── stacked.jpg │ ├── stacked100.jpg │ └── zero.png ├── 02_ggplot_intermedio │ ├── 2_apiladas.png │ └── 3_rep_preference.png ├── 03_ggplot_avanzado │ └── export_from_rstudio.png ├── 04_leaflet │ ├── popup.png │ └── projection.gif ├── 07_rmarkdown │ ├── knit.png │ ├── knit_params.png │ └── new_rmarkdown.png ├── 08_flexdashboard │ ├── elementos_html.png │ ├── layout_columnas.png │ ├── layout_filas.png │ ├── layout_pestanas.png │ ├── layout_tamano.png │ ├── value_box.png │ ├── varias_paginas.png │ └── varias_paginas_menu.png ├── 09_shiny_basico │ ├── 01_histograma.png │ ├── 02_plotly.png │ ├── 03_leaflet.png │ ├── 04_widget.png │ ├── control_widgets.png │ ├── layout_01.png │ ├── layout_02.png │ ├── run_app.png │ └── run_shiny.png └── 10_shiny_avanzado │ ├── 1_fibonacci.png │ └── 2_boton.png ├── scripts └── deploy.sh └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/.gitignore -------------------------------------------------------------------------------- /01_ggplot_basico.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/01_ggplot_basico.qmd -------------------------------------------------------------------------------- /01_ggplot_basico_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/01_ggplot_basico_soluciones.qmd -------------------------------------------------------------------------------- /02_ggplot_intermedio.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/02_ggplot_intermedio.qmd -------------------------------------------------------------------------------- /02_ggplot_intermedio_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/02_ggplot_intermedio_soluciones.qmd -------------------------------------------------------------------------------- /03_ggplot_avanzado.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/03_ggplot_avanzado.qmd -------------------------------------------------------------------------------- /03_ggplot_avanzado_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/03_ggplot_avanzado_soluciones.qmd -------------------------------------------------------------------------------- /04_leaflet.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/04_leaflet.qmd -------------------------------------------------------------------------------- /04_leaflet_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/04_leaflet_soluciones.qmd -------------------------------------------------------------------------------- /05_plotly_basico.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/05_plotly_basico.qmd -------------------------------------------------------------------------------- /05_plotly_basico_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/05_plotly_basico_soluciones.qmd -------------------------------------------------------------------------------- /06_plotly_avanzado.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/06_plotly_avanzado.qmd -------------------------------------------------------------------------------- /06_plotly_avanzado_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/06_plotly_avanzado_soluciones.qmd -------------------------------------------------------------------------------- /07_rmarkdown.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/07_rmarkdown.qmd -------------------------------------------------------------------------------- /08_flexdashboard.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/08_flexdashboard.qmd -------------------------------------------------------------------------------- /08_flexdashboard_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/08_flexdashboard_soluciones.qmd -------------------------------------------------------------------------------- /09_shiny_basico.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/09_shiny_basico.qmd -------------------------------------------------------------------------------- /09_shiny_basico_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/09_shiny_basico_soluciones.qmd -------------------------------------------------------------------------------- /10_shiny_avanzado.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/10_shiny_avanzado.qmd -------------------------------------------------------------------------------- /10_shiny_avanzado_soluciones.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/10_shiny_avanzado_soluciones.qmd -------------------------------------------------------------------------------- /11_proyecto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/11_proyecto.qmd -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/README.md -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/_quarto.yml -------------------------------------------------------------------------------- /dat/defunciones_espana.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/defunciones_espana.csv -------------------------------------------------------------------------------- /dat/economist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/economist.csv -------------------------------------------------------------------------------- /dat/elecciones_2019_provincias.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/elecciones_2019_provincias.csv -------------------------------------------------------------------------------- /dat/elecciones_2019_votos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/elecciones_2019_votos.csv -------------------------------------------------------------------------------- /dat/lineas_metro.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/lineas_metro.geojson -------------------------------------------------------------------------------- /dat/listings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/listings.csv -------------------------------------------------------------------------------- /dat/neighbourhoods.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/neighbourhoods.geojson -------------------------------------------------------------------------------- /dat/paradas_metro_madrid.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/paradas_metro_madrid.geojson -------------------------------------------------------------------------------- /dat/poblacion_espana.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/poblacion_espana.csv -------------------------------------------------------------------------------- /dat/provincias_ccaas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/provincias_ccaas.csv -------------------------------------------------------------------------------- /dat/spain_ccaas.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/spain_ccaas.geojson -------------------------------------------------------------------------------- /dat/spain_provinces.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/spain_provinces.geojson -------------------------------------------------------------------------------- /dat/stations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/stations.csv -------------------------------------------------------------------------------- /dat/stations_status.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/stations_status.csv -------------------------------------------------------------------------------- /dat/trips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/trips.csv -------------------------------------------------------------------------------- /dat/usa_president.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/dat/usa_president.csv -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/index.qmd -------------------------------------------------------------------------------- /rdataviz.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/rdataviz.Rproj -------------------------------------------------------------------------------- /resources/01_ggplot_basico/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/banana.png -------------------------------------------------------------------------------- /resources/01_ggplot_basico/barplot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/barplot.jpg -------------------------------------------------------------------------------- /resources/01_ggplot_basico/boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/boxplot.png -------------------------------------------------------------------------------- /resources/01_ggplot_basico/chart_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/chart_type.png -------------------------------------------------------------------------------- /resources/01_ggplot_basico/dinos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/dinos.png -------------------------------------------------------------------------------- /resources/01_ggplot_basico/lineplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/lineplot.png -------------------------------------------------------------------------------- /resources/01_ggplot_basico/log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/log.jpg -------------------------------------------------------------------------------- /resources/01_ggplot_basico/pie_vs_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/pie_vs_bar.png -------------------------------------------------------------------------------- /resources/01_ggplot_basico/scatterplot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/scatterplot.jpg -------------------------------------------------------------------------------- /resources/01_ggplot_basico/stacked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/stacked.jpg -------------------------------------------------------------------------------- /resources/01_ggplot_basico/stacked100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/stacked100.jpg -------------------------------------------------------------------------------- /resources/01_ggplot_basico/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/01_ggplot_basico/zero.png -------------------------------------------------------------------------------- /resources/02_ggplot_intermedio/2_apiladas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/02_ggplot_intermedio/2_apiladas.png -------------------------------------------------------------------------------- /resources/02_ggplot_intermedio/3_rep_preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/02_ggplot_intermedio/3_rep_preference.png -------------------------------------------------------------------------------- /resources/03_ggplot_avanzado/export_from_rstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/03_ggplot_avanzado/export_from_rstudio.png -------------------------------------------------------------------------------- /resources/04_leaflet/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/04_leaflet/popup.png -------------------------------------------------------------------------------- /resources/04_leaflet/projection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/04_leaflet/projection.gif -------------------------------------------------------------------------------- /resources/07_rmarkdown/knit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/07_rmarkdown/knit.png -------------------------------------------------------------------------------- /resources/07_rmarkdown/knit_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/07_rmarkdown/knit_params.png -------------------------------------------------------------------------------- /resources/07_rmarkdown/new_rmarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/07_rmarkdown/new_rmarkdown.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/elementos_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/elementos_html.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/layout_columnas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/layout_columnas.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/layout_filas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/layout_filas.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/layout_pestanas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/layout_pestanas.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/layout_tamano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/layout_tamano.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/value_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/value_box.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/varias_paginas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/varias_paginas.png -------------------------------------------------------------------------------- /resources/08_flexdashboard/varias_paginas_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/08_flexdashboard/varias_paginas_menu.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/01_histograma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/01_histograma.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/02_plotly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/02_plotly.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/03_leaflet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/03_leaflet.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/04_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/04_widget.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/control_widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/control_widgets.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/layout_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/layout_01.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/layout_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/layout_02.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/run_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/run_app.png -------------------------------------------------------------------------------- /resources/09_shiny_basico/run_shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/09_shiny_basico/run_shiny.png -------------------------------------------------------------------------------- /resources/10_shiny_avanzado/1_fibonacci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/10_shiny_avanzado/1_fibonacci.png -------------------------------------------------------------------------------- /resources/10_shiny_avanzado/2_boton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/resources/10_shiny_avanzado/2_boton.png -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koldLight/curso-r-dataviz/HEAD/style.css --------------------------------------------------------------------------------