├── .Rprofile ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ggplot2_2nd_ed ├── README.md ├── chapter_02_getting_started_with_ggplot2.Rmd ├── chapter_03_toolbox.Rmd ├── chapter_04_mastering_the_grammar.Rmd ├── chapter_05_build_a_plot_layer_by_layer.Rmd ├── chapter_06_scales_axes_and_legends.Rmd ├── chapter_07_positioning.Rmd ├── chapter_08_themes.Rmd ├── chapter_09_data_analysis.Rmd ├── chapter_10_data_transformation.Rmd ├── chapter_11_modeling_for_visualization.Rmd ├── chapter_12_programming_with_ggplot2.Rmd ├── img │ ├── plot.png │ └── youcanbeapirate-wb-sparkline.jpg ├── input │ └── gw_KS_sf.rds └── output │ ├── output.pdf │ ├── output2.pdf │ └── plot.rds ├── ggplot2_3rd_ed ├── 6_5_raster_maps.R ├── README.md ├── chapter_02_first_steps.Rmd ├── chapter_03_individual_geoms.Rmd ├── chapter_04_collective_geoms.Rmd ├── chapter_05_statistical_summaries.Rmd ├── chapter_06_maps.Rmd ├── chapter_07_networks.Rmd ├── chapter_08_annotations.Rmd ├── chapter_09_arranging_plots.Rmd ├── chapter_10_position_scales_and_axes.Rmd ├── chapter_11_colour_scales_and_legends.Rmd ├── chapter_12_other_aesthetics.Rmd ├── chapter_13_mastering_the_grammar.Rmd ├── chapter_14_build_a_plot_layer_by_layer.Rmd ├── chapter_15_scales_and_guides.Rmd ├── chapter_16_coordinate_system.Rmd ├── chapter_17_faceting.Rmd ├── chapter_18_themes.Rmd ├── chapter_19_programming_with_ggplot2.Rmd ├── chapter_20_internals_of_ggplot2.Rmd ├── chapter_21_extending_ggplot2.Rmd ├── chapter_22_a_case_study.Rmd ├── img │ ├── gghighlight_and_ggthemes_with_logo.jpg │ ├── plot.png │ ├── plot_with_logo.jpg │ ├── plot_with_theme_and_logo.jpg │ ├── satellite_imagery_1.tif │ ├── satellite_imagery_1.tif.aux.xml │ └── youcanbeapirate-wb-sparkline.jpg ├── output │ ├── last_animation.gif │ ├── last_animation.mp4 │ ├── last_animation_2.gif │ ├── output.pdf │ ├── output2.pdf │ ├── plot.pdf │ ├── plot.rds │ └── plot_with_theme.pdf └── raster │ ├── IDE00420.202302122200.tif │ ├── IDE00421.202302122200.tif │ ├── IDE00422.202302122200.tif │ ├── IDE00423.202302122200.tif │ ├── IDE00425.202302122200.tif │ ├── IDE00426.202302122200.tif │ ├── IDE00427.202302122200.tif │ ├── IDE00430.202302122200.tif │ ├── IDE00431.202302122200.tif │ ├── IDE00432.202302122200.tif │ ├── IDE00433.202302122200.tif │ ├── IDE00435.202302122200.tif │ ├── IDE00436.202302122200.tif │ └── IDE00437.202302122200.tif ├── learning-ggplot2.Rproj ├── real_life_use_cases └── ggplot2_dependencies_visualized │ ├── README.html │ ├── README.md │ ├── pkgsearch.R │ ├── pkgsearch.pdf │ ├── pkgsearch.png │ ├── pkgsearch_2024.pdf │ ├── pkgsearch_2024.png │ ├── pkgsearch_ver2.pdf │ ├── pkgsearch_ver2.png │ ├── pkgsearch_ver3.pdf │ └── pkgsearch_ver3.png ├── renv.lock └── renv ├── .gitignore ├── activate.R └── settings.json /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/README.md -------------------------------------------------------------------------------- /ggplot2_2nd_ed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/README.md -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_02_getting_started_with_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_02_getting_started_with_ggplot2.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_03_toolbox.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_03_toolbox.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_04_mastering_the_grammar.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_04_mastering_the_grammar.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_05_build_a_plot_layer_by_layer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_05_build_a_plot_layer_by_layer.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_06_scales_axes_and_legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_06_scales_axes_and_legends.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_07_positioning.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_07_positioning.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_08_themes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_08_themes.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_09_data_analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_09_data_analysis.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_10_data_transformation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_10_data_transformation.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_11_modeling_for_visualization.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_11_modeling_for_visualization.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/chapter_12_programming_with_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/chapter_12_programming_with_ggplot2.Rmd -------------------------------------------------------------------------------- /ggplot2_2nd_ed/img/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/img/plot.png -------------------------------------------------------------------------------- /ggplot2_2nd_ed/img/youcanbeapirate-wb-sparkline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/img/youcanbeapirate-wb-sparkline.jpg -------------------------------------------------------------------------------- /ggplot2_2nd_ed/input/gw_KS_sf.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/input/gw_KS_sf.rds -------------------------------------------------------------------------------- /ggplot2_2nd_ed/output/output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/output/output.pdf -------------------------------------------------------------------------------- /ggplot2_2nd_ed/output/output2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/output/output2.pdf -------------------------------------------------------------------------------- /ggplot2_2nd_ed/output/plot.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_2nd_ed/output/plot.rds -------------------------------------------------------------------------------- /ggplot2_3rd_ed/6_5_raster_maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/6_5_raster_maps.R -------------------------------------------------------------------------------- /ggplot2_3rd_ed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/README.md -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_02_first_steps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_02_first_steps.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_03_individual_geoms.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_03_individual_geoms.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_04_collective_geoms.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_04_collective_geoms.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_05_statistical_summaries.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_05_statistical_summaries.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_06_maps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_06_maps.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_07_networks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_07_networks.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_08_annotations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_08_annotations.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_09_arranging_plots.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_09_arranging_plots.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_10_position_scales_and_axes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_10_position_scales_and_axes.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_11_colour_scales_and_legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_11_colour_scales_and_legends.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_12_other_aesthetics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_12_other_aesthetics.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_13_mastering_the_grammar.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_13_mastering_the_grammar.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_14_build_a_plot_layer_by_layer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_14_build_a_plot_layer_by_layer.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_15_scales_and_guides.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_15_scales_and_guides.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_16_coordinate_system.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_16_coordinate_system.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_17_faceting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_17_faceting.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_18_themes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_18_themes.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_19_programming_with_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_19_programming_with_ggplot2.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_20_internals_of_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_20_internals_of_ggplot2.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_21_extending_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_21_extending_ggplot2.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/chapter_22_a_case_study.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/chapter_22_a_case_study.Rmd -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/gghighlight_and_ggthemes_with_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/gghighlight_and_ggthemes_with_logo.jpg -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/plot.png -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/plot_with_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/plot_with_logo.jpg -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/plot_with_theme_and_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/plot_with_theme_and_logo.jpg -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/satellite_imagery_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/satellite_imagery_1.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/satellite_imagery_1.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/satellite_imagery_1.tif.aux.xml -------------------------------------------------------------------------------- /ggplot2_3rd_ed/img/youcanbeapirate-wb-sparkline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/img/youcanbeapirate-wb-sparkline.jpg -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/last_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/last_animation.gif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/last_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/last_animation.mp4 -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/last_animation_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/last_animation_2.gif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/output.pdf -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/output2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/output2.pdf -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/plot.pdf -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/plot.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/plot.rds -------------------------------------------------------------------------------- /ggplot2_3rd_ed/output/plot_with_theme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/output/plot_with_theme.pdf -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00420.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00420.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00421.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00421.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00422.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00422.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00423.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00423.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00425.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00425.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00426.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00426.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00427.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00427.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00430.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00430.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00431.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00431.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00432.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00432.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00433.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00433.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00435.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00435.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00436.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00436.202302122200.tif -------------------------------------------------------------------------------- /ggplot2_3rd_ed/raster/IDE00437.202302122200.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/ggplot2_3rd_ed/raster/IDE00437.202302122200.tif -------------------------------------------------------------------------------- /learning-ggplot2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/learning-ggplot2.Rproj -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/README.html -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/README.md -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch.R -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch.pdf -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch.png -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_2024.pdf -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_2024.png -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver2.pdf -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver2.png -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver3.pdf -------------------------------------------------------------------------------- /real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/real_life_use_cases/ggplot2_dependencies_visualized/pkgsearch_ver3.png -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnttiRask/learning_ggplot2/HEAD/renv/settings.json --------------------------------------------------------------------------------