Title: | Geography Vizualisations |
---|---|
Description: | Provides function and objects to establish vizualisations for my Geography lessons. |
Authors: | Pascal Burkhard [aut, cre] |
Maintainer: | Pascal Burkhard <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.2.0.9000 |
Built: | 2024-11-26 15:30:49 UTC |
Source: | https://github.com/Nenuial/geographer |
These functions showcase different map projections.
df_cartography_project_equirectangular() df_cartography_project_gallpeters() df_cartography_project_hobodyer() df_cartography_project_mercator() df_cartography_project_winkeltripel() df_cartography_project_robinson() df_cartography_project_goodehomolosine() df_cartography_project_equalearth()
df_cartography_project_equirectangular() df_cartography_project_gallpeters() df_cartography_project_hobodyer() df_cartography_project_mercator() df_cartography_project_winkeltripel() df_cartography_project_robinson() df_cartography_project_goodehomolosine() df_cartography_project_equalearth()
The following projections are available:
Equi-rectangular: df_cartography_project_equirectangular()
Gall-Peters: df_cartography_project_gallpeters()
Hobo-Dyer: df_cartography_project_hobodyer()
Mercator: df_cartography_project_mercator()
Wikel-Tripel: df_cartography_project_winkeltripel()
Robinson: df_cartography_project_robinson()
Goode Homolosine: df_cartography_project_goodehomolosine()
Equal Earth: df_cartography_project_equalearth()
A ggplot2 object
df_cartography_project_equirectangular() df_cartography_project_gallpeters() df_cartography_project_hobodyer() df_cartography_project_mercator() df_cartography_project_winkeltripel() df_cartography_project_robinson() df_cartography_project_goodehomolosine() df_cartography_project_equalearth()
df_cartography_project_equirectangular() df_cartography_project_gallpeters() df_cartography_project_hobodyer() df_cartography_project_mercator() df_cartography_project_winkeltripel() df_cartography_project_robinson() df_cartography_project_goodehomolosine() df_cartography_project_equalearth()
World population graph
df_demography_graph_world_population_current(theme = ggplot2::theme_minimal())
df_demography_graph_world_population_current(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
df_demography_graph_world_population_current()
df_demography_graph_world_population_current()
World population growth rate graph
df_demography_graph_world_population_growth(theme = ggplot2::theme_minimal())
df_demography_graph_world_population_growth(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
df_demography_graph_world_population_growth()
df_demography_graph_world_population_growth()
World population graph from 10'000 BCE to 1200 CE
df_demography_graph_world_population_historical( theme = ggplot2::theme_minimal() )
df_demography_graph_world_population_historical( theme = ggplot2::theme_minimal() )
theme |
A ggplot2 theme |
A ggplot2 graph
df_demography_graph_world_population_historical()
df_demography_graph_world_population_historical()
Every country of the world with the Human Development Index from 1990 to 2021.
df_demography_hc_world_hdi()
df_demography_hc_world_hdi()
A hicharter graph
df_demography_hc_world_hdi()
df_demography_hc_world_hdi()
Humand Development Index (HDI) map
df_demography_map_hc_world_hdi(year)
df_demography_map_hc_world_hdi(year)
year |
The year |
A highcharter map
df_demography_map_hc_world_hdi(2020)
df_demography_map_hc_world_hdi(2020)
This function renders a base map with the country highlighted.
gph_base_map(country) gph_base_tmap(country)
gph_base_map(country) gph_base_tmap(country)
country |
Country to highlight |
A leaflet map with the country borders
# Using Leaflet gph_base_map("Switzerland") gph_base_map("United Kingdom") # Using tmap (v4) gph_base_tmap("Switzerland") gph_base_tmap("United Kingdom")
# Using Leaflet gph_base_map("Switzerland") gph_base_map("United Kingdom") # Using tmap (v4) gph_base_tmap("Switzerland") gph_base_tmap("United Kingdom")
NaturalEarth Bound box for planet Earth
gph_boundbox()
gph_boundbox()
A simple feature
gph_boundbox()
gph_boundbox()
Provides basic ggplot2 graph with the following data on it :
the population curve (blue)
the birth rate curve (grey)
the death_rate curve (black)
gph_demogram( country, theme = ggplot2::theme_minimal(), population_color = "blue" )
gph_demogram( country, theme = ggplot2::theme_minimal(), population_color = "blue" )
country |
A string with the country name |
theme |
A ggplot2 theme |
population_color |
A color value for the population curve |
A ggplot2 graph
gph_demogram("Switzerland")
gph_demogram("Switzerland")
Provides basic ggplot2 graph with the following data on it :
the population curve (blue)
the birth rate curve (grey)
the death_rate curve (black)
gph_hc_demogram(country)
gph_hc_demogram(country)
country |
A string with the country name |
A highcharter graph
gph_hc_demogram("Switzerland")
gph_hc_demogram("Switzerland")
Provides basic ggplot2 graph with the following data on it :
the total life expectancy (black dotted)
the male life expectancy (blue)
the male life expectancy (red)
gph_hc_lexgram(country, men = "blue", women = "red", all = "black")
gph_hc_lexgram(country, men = "blue", women = "red", all = "black")
country |
A string with the country name |
men |
Color for men line |
women |
Color for women line |
all |
Color for average line |
A highcharts graph
gph_hc_lexgram("Switzerland")
gph_hc_lexgram("Switzerland")
Plot latest swiss votation using highcharts
gph_hc_map_swiss_votes( geolevel = c("canton", "district", "municipality"), votedates, id, language = "FR" )
gph_hc_map_swiss_votes( geolevel = c("canton", "district", "municipality"), votedates, id, language = "FR" )
geolevel |
One of "canton", "district" or "municipality" |
votedates |
The date of the vote |
id |
The vote id |
language |
One of "DE", "FR", "IT" or "RM" |
A highcharter map
gph_hc_map_swiss_votes("canton", votedates = "2024-03-03", id = 6650)
gph_hc_map_swiss_votes("canton", votedates = "2024-03-03", id = 6650)
Create highcharter population pyramid
gph_hc_pyramid(country, year)
gph_hc_pyramid(country, year)
country |
A string with the country name |
year |
An integer for the year |
A highcharter graph
# Not run: need a valid IDB API key gph_hc_pyramid("Switzerland", 2020)
# Not run: need a valid IDB API key gph_hc_pyramid("Switzerland", 2020)
Create highcharter population pyramid with relative values
gph_hc_pyramid_relative(country, year)
gph_hc_pyramid_relative(country, year)
country |
A string with the country name |
year |
An integer for the year |
A highcharter graph
# Not run: need a valid IDB API key gph_hc_pyramid_relative("Switzerland", 2020)
# Not run: need a valid IDB API key gph_hc_pyramid_relative("Switzerland", 2020)
Return Historical World Map
gph_historical_world_map(date)
gph_historical_world_map(date)
date |
A date object |
An sf object
lubridate::ymd("1945-06-01") |> gph_historical_world_map() |> ggplot2::ggplot() + ggplot2::geom_sf()
lubridate::ymd("1945-06-01") |> gph_historical_world_map() |> ggplot2::ggplot() + ggplot2::geom_sf()
Provides basic ggplot2 graph with the following data on it :
the total life expectancy (black dotted)
the male life expectancy (blue)
the male life expectancy (red)
gph_lexgram( country, theme = ggplot2::theme_minimal(), men = "blue", women = "red", all = "black" )
gph_lexgram( country, theme = ggplot2::theme_minimal(), men = "blue", women = "red", all = "black" )
country |
A string with the country name |
theme |
A ggplot2 theme |
men |
Color for men line |
women |
Color for women line |
all |
Color for average line |
A ggplot2 graph
gph_lexgram("Switzerland")
gph_lexgram("Switzerland")
Swiss lakes for maps
gph_map_swiss_lakes( fill_color = "skyblue", source = themakart::thema_topo("seen") )
gph_map_swiss_lakes( fill_color = "skyblue", source = themakart::thema_topo("seen") )
fill_color |
A color for the lakes (default: skyblue) |
source |
The geometry for lakes (default: ThemaKart lakes) |
A ggplot2 layer for Swiss lakes
ggplot2::ggplot() + gph_map_swiss_relief() + gph_map_swiss_lakes()
ggplot2::ggplot() + gph_map_swiss_relief() + gph_map_swiss_lakes()
Swiss relief background for maps
gph_map_swiss_relief()
gph_map_swiss_relief()
A list of ggplot 2 layers for Swiss relief backgroup
ggplot2::ggplot() + gph_map_swiss_relief() + gph_map_swiss_lakes()
ggplot2::ggplot() + gph_map_swiss_relief() + gph_map_swiss_lakes()
Plot latest swiss votation
gph_map_swiss_votes( geolevel = c("canton", "district", "municipality"), votedates, id, language = "FR" )
gph_map_swiss_votes( geolevel = c("canton", "district", "municipality"), votedates, id, language = "FR" )
geolevel |
One of "canton", "district" or "municipality" |
votedates |
The date of the vote |
id |
The vote id |
language |
One of "DE", "FR", "IT" or "RM" |
A ggplot2 map
gph_map_swiss_votes("canton", votedates = "2024-03-03", id = 6650)
gph_map_swiss_votes("canton", votedates = "2024-03-03", id = 6650)
Create a globe with the countries in the list highlighted
gph_mini_globe(countries)
gph_mini_globe(countries)
countries |
A vector of country names |
A ggplot map
gph_mini_globe("Switzerland")
gph_mini_globe("Switzerland")
Project simple world map
gph_project_world(crs)
gph_project_world(crs)
crs |
A valid CRS string or object |
A ggplot map
gph_project_world("+proj=eqearth")
gph_project_world("+proj=eqearth")
Projet world map with Tissot matrices
gph_project_world_tissot(crs)
gph_project_world_tissot(crs)
crs |
A valid CRS string or object |
A ggplot object
gph_project_world_tissot("+proj=eqearth")
gph_project_world_tissot("+proj=eqearth")
Create population pyramid
gph_pyramid(country, year, theme = ggplot2::theme_minimal())
gph_pyramid(country, year, theme = ggplot2::theme_minimal())
country |
A string with the country name |
year |
An integer for the year |
theme |
A ggplot2 theme |
A ggplot graph
# Not run: needs a valid IDB API key gph_pyramid("Switzerland", 2020)
# Not run: needs a valid IDB API key gph_pyramid("Switzerland", 2020)
Create relative population pyramid (5 year cohorts)
gph_pyramid_relative(country, year, theme = ggplot2::theme_minimal())
gph_pyramid_relative(country, year, theme = ggplot2::theme_minimal())
country |
A string with the country name |
year |
An integer for the year |
theme |
A ggplot2 theme |
A ggplot graph
# Not run: needs a valid IDB API key gph_pyramid_relative("Switzerland", 2020)
# Not run: needs a valid IDB API key gph_pyramid_relative("Switzerland", 2020)
Create world maps for an indicator
gph_wb_world_map(indicator) gph_wb_world_hc(indicator)
gph_wb_world_map(indicator) gph_wb_world_hc(indicator)
indicator |
A list of lists. Each list should contain:
|
# Not run: saves the plots on file indicators <- list( list( code = c("population" = "EN.POP.DNST"), operation = rlang::expr(population), title = geotools::gtl_translate_enfr( "Population density", "Densité de population" ), file = "density", palette = list( palette = "viridis::viridis", type = "cont", dir = -1 ), breaks = c(10, 25, 50, 75, 100, 150, 300, 1000), center = -1, unit = "pp/km²", years = c(2019) ) ) gph_wb_world_map(indicators)
# Not run: saves the plots on file indicators <- list( list( code = c("population" = "EN.POP.DNST"), operation = rlang::expr(population), title = geotools::gtl_translate_enfr( "Population density", "Densité de population" ), file = "density", palette = list( palette = "viridis::viridis", type = "cont", dir = -1 ), breaks = c(10, 25, 50, 75, 100, 150, 300, 1000), center = -1, unit = "pp/km²", years = c(2019) ) ) gph_wb_world_map(indicators)
Une carte du rapport du nombre d'hommes par rapport aux femmes par régions pour 2018.
oc_chine_carte_2018_sex_ratio_par_region(theme = ggplot2::theme_minimal())
oc_chine_carte_2018_sex_ratio_par_region(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 map
oc_chine_carte_2018_sex_ratio_par_region()
oc_chine_carte_2018_sex_ratio_par_region()
Consommation d'énergie par source
oc_ecocitoyennete_graph_energy_per_source(theme = ggplot2::theme_minimal())
oc_ecocitoyennete_graph_energy_per_source(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_ecocitoyennete_graph_energy_per_source()
oc_ecocitoyennete_graph_energy_per_source()
Carte mondiale intéractive de la prévalence de la contraception.
oc_geo_au_feminin_carte_hc_contraception()
oc_geo_au_feminin_carte_hc_contraception()
A highcharts map
oc_geo_au_feminin_carte_hc_contraception()
oc_geo_au_feminin_carte_hc_contraception()
Carte interactive du nombre de femmes au parlement.
oc_geo_au_feminin_carte_hc_femmes_parlement()
oc_geo_au_feminin_carte_hc_femmes_parlement()
A highcharts map
oc_geo_au_feminin_carte_hc_femmes_parlement()
oc_geo_au_feminin_carte_hc_femmes_parlement()
Carte interactive de l'accès au suffrage féminin par pays
oc_geo_au_feminin_carte_hc_mondiale_suffrage_feminin()
oc_geo_au_feminin_carte_hc_mondiale_suffrage_feminin()
A highcharts map
oc_geo_au_feminin_carte_hc_mondiale_suffrage_feminin()
oc_geo_au_feminin_carte_hc_mondiale_suffrage_feminin()
Carte interactive de l'accès au suffrage féminin par canton
oc_geo_au_feminin_carte_hc_suisse_suffrage_feminin()
oc_geo_au_feminin_carte_hc_suisse_suffrage_feminin()
A highcharts map
oc_geo_au_feminin_carte_hc_suisse_suffrage_feminin()
oc_geo_au_feminin_carte_hc_suisse_suffrage_feminin()
Cartes qui permettent de retracer l'évolution géopolitique de l'Afghanistan depuis 1912.
oc_geo_au_feminin_carte_afghanistan_independance( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_carte_afghanistan(theme = ggplot2::theme_minimal())
oc_geo_au_feminin_carte_afghanistan_independance( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_carte_afghanistan(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
Carte disponibles:
1912: oc_geo_au_feminin_carte_afghanistan_independance()
1950: oc_geo_au_feminin_carte_afghanistan()
A ggplot2 map
oc_geo_au_feminin_carte_afghanistan_independance() oc_geo_au_feminin_carte_afghanistan()
oc_geo_au_feminin_carte_afghanistan_independance() oc_geo_au_feminin_carte_afghanistan()
Cartes des droits en matière d'avortement ainsi que des taux d'avortement.
oc_geo_au_feminin_carte_hc_abortion_rights() oc_geo_au_feminin_carte_abortion_rights(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_taux_avortement() oc_geo_au_feminin_carte_taux_avortement(theme = ggplot2::theme_minimal())
oc_geo_au_feminin_carte_hc_abortion_rights() oc_geo_au_feminin_carte_abortion_rights(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_taux_avortement() oc_geo_au_feminin_carte_taux_avortement(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A map
oc_geo_au_feminin_carte_hc_abortion_rights() oc_geo_au_feminin_carte_abortion_rights() oc_geo_au_feminin_carte_hc_taux_avortement() oc_geo_au_feminin_carte_taux_avortement()
oc_geo_au_feminin_carte_hc_abortion_rights() oc_geo_au_feminin_carte_abortion_rights() oc_geo_au_feminin_carte_hc_taux_avortement() oc_geo_au_feminin_carte_taux_avortement()
Cartes pour mettre en évidence les différences d'espérence de vie entre hommes et femmes.
oc_geo_au_feminin_carte_esperance_de_vie_wpp2012_2005_a_2010( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2005_a_2010( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2015_a_2020( theme = ggplot2::theme_minimal() )
oc_geo_au_feminin_carte_esperance_de_vie_wpp2012_2005_a_2010( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2005_a_2010( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2015_a_2020( theme = ggplot2::theme_minimal() )
theme |
A ggplot2 theme |
A map
oc_geo_au_feminin_carte_esperance_de_vie_wpp2012_2005_a_2010() oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2005_a_2010() oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2015_a_2020()
oc_geo_au_feminin_carte_esperance_de_vie_wpp2012_2005_a_2010() oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2005_a_2010() oc_geo_au_feminin_carte_esperance_de_vie_wpp2019_2015_a_2020()
Ces différentes cartes présente plusieurs indicateurs de l'inégalité entre hommes et femmes.
oc_geo_au_feminin_carte_sigi_2023(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_sigi_2023() oc_geo_au_feminin_carte_hc_gii_2021() oc_geo_au_feminin_carte_hc_wbl()
oc_geo_au_feminin_carte_sigi_2023(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_sigi_2023() oc_geo_au_feminin_carte_hc_gii_2021() oc_geo_au_feminin_carte_hc_wbl()
theme |
A ggplot2 theme |
Indicateurs à disposition:
SIGI 2023: oc_geo_au_feminin_carte_sigi_2023()
et oc_geo_au_feminin_carte_hc_sigi_2023()
GII 2021: oc_geo_au_feminin_carte_hc_gii_2021()
WB WBL 2022: oc_geo_au_feminin_carte_hc_wbl()
A map
# Sigi 2023 oc_geo_au_feminin_carte_sigi_2023() oc_geo_au_feminin_carte_hc_sigi_2023() # GII 2021 oc_geo_au_feminin_carte_hc_gii_2021() # WB WBL 2022 oc_geo_au_feminin_carte_hc_wbl()
# Sigi 2023 oc_geo_au_feminin_carte_sigi_2023() oc_geo_au_feminin_carte_hc_sigi_2023() # GII 2021 oc_geo_au_feminin_carte_hc_gii_2021() # WB WBL 2022 oc_geo_au_feminin_carte_hc_wbl()
Cartes du sex ratio à la naissance.
oc_geo_au_feminin_carte_sex_ratio(year, theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_sex_ratio()
oc_geo_au_feminin_carte_sex_ratio(year, theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_sex_ratio()
year |
The year |
theme |
A ggplot2 theme |
A ggplot2 map
oc_geo_au_feminin_carte_sex_ratio(2015) oc_geo_au_feminin_carte_hc_sex_ratio()
oc_geo_au_feminin_carte_sex_ratio(2015) oc_geo_au_feminin_carte_hc_sex_ratio()
Cartes du taux de viols déclarés en Europe.
oc_geo_au_feminin_carte_viol_europe(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_viol_europe()
oc_geo_au_feminin_carte_viol_europe(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_carte_hc_viol_europe()
theme |
A ggplot2 theme |
A map
oc_geo_au_feminin_carte_viol_europe() oc_geo_au_feminin_carte_hc_viol_europe()
oc_geo_au_feminin_carte_viol_europe() oc_geo_au_feminin_carte_hc_viol_europe()
Pourcentage de femmes dans les parlements nationaux par régions
oc_geo_au_feminin_graph_proportion_parlements(theme = ggplot2::theme_minimal())
oc_geo_au_feminin_graph_proportion_parlements(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_geo_au_feminin_graph_proportion_parlements()
oc_geo_au_feminin_graph_proportion_parlements()
Graphiques visualisant les résultats de l'enquête sur les violences sexuelles en Suisse réalisée par GFS.Bern sur demande d'Amnesty international en avril 2019.
oc_geo_au_feminin_graph_2019_violences_sexuelles_experiences( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_2019_violences_sexuelles_actes( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_2019_violences_sexuelles_police( theme = ggplot2::theme_minimal() )
oc_geo_au_feminin_graph_2019_violences_sexuelles_experiences( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_2019_violences_sexuelles_actes( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_2019_violences_sexuelles_police( theme = ggplot2::theme_minimal() )
theme |
A ggplot2 theme |
A graph
oc_geo_au_feminin_graph_2019_violences_sexuelles_experiences() oc_geo_au_feminin_graph_2019_violences_sexuelles_actes() oc_geo_au_feminin_graph_2019_violences_sexuelles_police()
oc_geo_au_feminin_graph_2019_violences_sexuelles_experiences() oc_geo_au_feminin_graph_2019_violences_sexuelles_actes() oc_geo_au_feminin_graph_2019_violences_sexuelles_police()
Graphiques présentant les différences salariale en Suisse par formation et par position.
oc_geo_au_feminin_graph_difference_salariale_brut_par_formation( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_difference_salariale_pourcent_par_formation( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_difference_salariale_brut_par_position( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_difference_salariale_pourcent_par_position( theme = ggplot2::theme_minimal() )
oc_geo_au_feminin_graph_difference_salariale_brut_par_formation( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_difference_salariale_pourcent_par_formation( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_difference_salariale_brut_par_position( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_graph_difference_salariale_pourcent_par_position( theme = ggplot2::theme_minimal() )
theme |
A ggplot2 theme |
A graph
oc_geo_au_feminin_graph_difference_salariale_brut_par_formation() oc_geo_au_feminin_graph_difference_salariale_brut_par_position() oc_geo_au_feminin_graph_difference_salariale_pourcent_par_formation() oc_geo_au_feminin_graph_difference_salariale_pourcent_par_position()
oc_geo_au_feminin_graph_difference_salariale_brut_par_formation() oc_geo_au_feminin_graph_difference_salariale_brut_par_position() oc_geo_au_feminin_graph_difference_salariale_pourcent_par_formation() oc_geo_au_feminin_graph_difference_salariale_pourcent_par_position()
Graphiques sur l'évolution de l'espérence de vie.
oc_geo_au_feminin_graph_esperances_de_vie(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_graph_difference_esperance_de_vie( theme = ggplot2::theme_minimal() )
oc_geo_au_feminin_graph_esperances_de_vie(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_graph_difference_esperance_de_vie( theme = ggplot2::theme_minimal() )
theme |
A ggplot2 theme |
A graph
oc_geo_au_feminin_graph_esperances_de_vie() # Not run: need credentials for HMD database oc_geo_au_feminin_graph_difference_esperance_de_vie()
oc_geo_au_feminin_graph_esperances_de_vie() # Not run: need credentials for HMD database oc_geo_au_feminin_graph_difference_esperance_de_vie()
Taux de jeunes apprenant à coder
oc_geo_au_feminin_graph_programmation_16_24_ans( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_hc_programmation_16_24_ans()
oc_geo_au_feminin_graph_programmation_16_24_ans( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_hc_programmation_16_24_ans()
theme |
A ggplot2 theme |
A ggplot2 graph
oc_geo_au_feminin_graph_programmation_16_24_ans() oc_geo_au_feminin_hc_programmation_16_24_ans()
oc_geo_au_feminin_graph_programmation_16_24_ans() oc_geo_au_feminin_hc_programmation_16_24_ans()
Scolarisation des filles en Afghanistan
oc_geo_au_feminin_graph_scolarisation_filles_afghanistan( theme = ggplot2::theme_minimal(), line_color = "black" ) oc_geo_au_feminin_hc_scolarisation_filles_afghanistan()
oc_geo_au_feminin_graph_scolarisation_filles_afghanistan( theme = ggplot2::theme_minimal(), line_color = "black" ) oc_geo_au_feminin_hc_scolarisation_filles_afghanistan()
theme |
A ggplot2 theme |
line_color |
Graph line color |
A graph
oc_geo_au_feminin_graph_scolarisation_filles_afghanistan() oc_geo_au_feminin_hc_scolarisation_filles_afghanistan()
oc_geo_au_feminin_graph_scolarisation_filles_afghanistan() oc_geo_au_feminin_hc_scolarisation_filles_afghanistan()
Graphiques avec l'évolution du PIB par habitant en Afghanistan
oc_geo_au_feminin_graph_situation_eco_afghanistan( theme = ggplot2::theme_minimal(), line_color = "black" ) oc_geo_au_feminin_hc_situation_eco_afghanistan()
oc_geo_au_feminin_graph_situation_eco_afghanistan( theme = ggplot2::theme_minimal(), line_color = "black" ) oc_geo_au_feminin_hc_situation_eco_afghanistan()
theme |
A ggplot2 theme |
line_color |
Graph line color |
A graph
oc_geo_au_feminin_graph_situation_eco_afghanistan() oc_geo_au_feminin_hc_situation_eco_afghanistan()
oc_geo_au_feminin_graph_situation_eco_afghanistan() oc_geo_au_feminin_hc_situation_eco_afghanistan()
Graphiques sur l'évolution du taux d'avortement en Suisse et l'évolution politique à ce sujet.
oc_geo_au_feminin_graph_suisse_avortements(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_hc_suisse_avortements_par_ages() oc_geo_au_feminin_graph_suisse_avortements_par_ages( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_hc_suisse_avortements_par_regions() oc_geo_au_feminin_graph_suisse_avortements_par_regions( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_hc_suisse_votations_avortement() oc_geo_au_feminin_graph_suisse_votations_avortement( theme = ggplot2::theme_minimal() )
oc_geo_au_feminin_graph_suisse_avortements(theme = ggplot2::theme_minimal()) oc_geo_au_feminin_hc_suisse_avortements_par_ages() oc_geo_au_feminin_graph_suisse_avortements_par_ages( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_hc_suisse_avortements_par_regions() oc_geo_au_feminin_graph_suisse_avortements_par_regions( theme = ggplot2::theme_minimal() ) oc_geo_au_feminin_hc_suisse_votations_avortement() oc_geo_au_feminin_graph_suisse_votations_avortement( theme = ggplot2::theme_minimal() )
theme |
A ggplot2 theme |
A graph
oc_geo_au_feminin_graph_suisse_avortements() oc_geo_au_feminin_graph_suisse_avortements_par_ages() oc_geo_au_feminin_hc_suisse_avortements_par_ages() oc_geo_au_feminin_graph_suisse_avortements_par_regions() oc_geo_au_feminin_hc_suisse_avortements_par_regions() oc_geo_au_feminin_graph_suisse_votations_avortement() oc_geo_au_feminin_hc_suisse_votations_avortement()
oc_geo_au_feminin_graph_suisse_avortements() oc_geo_au_feminin_graph_suisse_avortements_par_ages() oc_geo_au_feminin_hc_suisse_avortements_par_ages() oc_geo_au_feminin_graph_suisse_avortements_par_regions() oc_geo_au_feminin_hc_suisse_avortements_par_regions() oc_geo_au_feminin_graph_suisse_votations_avortement() oc_geo_au_feminin_hc_suisse_votations_avortement()
Graphiques sur le thème de l'immigration en Israël.
oc_israel_palestine_graph_migration_israel(theme = ggplot2::theme_minimal()) oc_israel_palestine_hc_migration_israel() oc_israel_palestine_graph_population_nae(theme = ggplot2::theme_minimal()) oc_israel_palestine_hc_immigration_sioniste()
oc_israel_palestine_graph_migration_israel(theme = ggplot2::theme_minimal()) oc_israel_palestine_hc_migration_israel() oc_israel_palestine_graph_population_nae(theme = ggplot2::theme_minimal()) oc_israel_palestine_hc_immigration_sioniste()
theme |
A ggplot2 theme |
A graph
oc_israel_palestine_graph_migration_israel() oc_israel_palestine_hc_migration_israel() oc_israel_palestine_graph_population_nae() oc_israel_palestine_hc_immigration_sioniste()
oc_israel_palestine_graph_migration_israel() oc_israel_palestine_hc_migration_israel() oc_israel_palestine_graph_population_nae() oc_israel_palestine_hc_immigration_sioniste()
Une carte de l'accroissement naturel en 2023 au niveau régional en Russie.
oc_russie_carte_accroissement( theme = ggplot2::theme_minimal(), barwidth = 40, greyscale = FALSE ) oc_russie_carte_hc_accroissement()
oc_russie_carte_accroissement( theme = ggplot2::theme_minimal(), barwidth = 40, greyscale = FALSE ) oc_russie_carte_hc_accroissement()
theme |
A ggplot2 theme |
barwidth |
Width of legend bar |
greyscale |
Boolean: whether to create a grey scale map |
A map
oc_russie_carte_accroissement() oc_russie_carte_hc_accroissement()
oc_russie_carte_accroissement() oc_russie_carte_hc_accroissement()
Carte de l'adhésion à l'OTAN par années
oc_russie_carte_adhesion_otan(theme = ggplot2::theme_minimal()) oc_russie_carte_hc_adhesion_otan(layout = "proximate", zoom = 3.5)
oc_russie_carte_adhesion_otan(theme = ggplot2::theme_minimal()) oc_russie_carte_hc_adhesion_otan(layout = "proximate", zoom = 3.5)
theme |
A ggplot2 theme |
layout |
Layout of the legend, either 'horizontal', 'vertical' or 'proximate' |
zoom |
Map zoom (defaults to 3.5) |
A ggplot2 map
oc_russie_carte_adhesion_otan() oc_russie_carte_hc_adhesion_otan()
oc_russie_carte_adhesion_otan() oc_russie_carte_hc_adhesion_otan()
Une carte des divorces pour 1000 habitants par régions en 2019.
oc_russie_carte_divorces(theme = ggplot2::theme_minimal())
oc_russie_carte_divorces(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 map
oc_russie_carte_divorces()
oc_russie_carte_divorces()
Une carte de l'évolution démographique Russe entre 1990 et 2020.
oc_russie_carte_evolution_population( theme = ggplot2::theme_minimal(), barwidth = 40 )
oc_russie_carte_evolution_population( theme = ggplot2::theme_minimal(), barwidth = 40 )
theme |
A ggplot2 theme |
barwidth |
Width of legend bar |
A ggplot2 map
oc_russie_carte_evolution_population()
oc_russie_carte_evolution_population()
Une carte de l'indice de fécondité en 2023 au niveau régional en Russie.
oc_russie_carte_fecondite( theme = ggplot2::theme_minimal(), barwidth = 40, greyscale = FALSE ) oc_russie_carte_hc_fecondite()
oc_russie_carte_fecondite( theme = ggplot2::theme_minimal(), barwidth = 40, greyscale = FALSE ) oc_russie_carte_hc_fecondite()
theme |
A ggplot2 theme |
barwidth |
Width of legend bar |
greyscale |
Boolean: whether to create a grey scale map |
A map
oc_russie_carte_fecondite() oc_russie_carte_hc_fecondite()
oc_russie_carte_fecondite() oc_russie_carte_hc_fecondite()
Cartes des élections présidentielles ukrainiennes en 2010, 2014 et 2019.
oc_russie_carte_hc_elections_ukraine_2010() oc_russie_carte_hc_elections_ukraine_2014() oc_russie_carte_hc_elections_ukraine_2019()
oc_russie_carte_hc_elections_ukraine_2010() oc_russie_carte_hc_elections_ukraine_2014() oc_russie_carte_hc_elections_ukraine_2019()
A higcharts map
oc_russie_carte_hc_elections_ukraine_2010() oc_russie_carte_hc_elections_ukraine_2014() oc_russie_carte_hc_elections_ukraine_2019()
oc_russie_carte_hc_elections_ukraine_2010() oc_russie_carte_hc_elections_ukraine_2014() oc_russie_carte_hc_elections_ukraine_2019()
Religion avec le plus de pourcentage en 2012 par région.
oc_russie_carte_hc_religion()
oc_russie_carte_hc_religion()
A higcharts map
oc_russie_carte_hc_religion()
oc_russie_carte_hc_religion()
Une carte des mariages pour 1000 habitants par régions en 2019.
oc_russie_carte_mariages(theme = ggplot2::theme_minimal())
oc_russie_carte_mariages(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 map
oc_russie_carte_mariages()
oc_russie_carte_mariages()
Une carte du taux de mortalité en 2019 au niveau régional en Russie.
oc_russie_carte_mortalite(theme = ggplot2::theme_minimal(), barwidth = 40)
oc_russie_carte_mortalite(theme = ggplot2::theme_minimal(), barwidth = 40)
theme |
A ggplot2 theme |
barwidth |
Width of legend bar |
A ggplot2 map
oc_russie_carte_mortalite()
oc_russie_carte_mortalite()
Une carte du taux de natalité en 2019 au niveau régional en Russie.
oc_russie_carte_natalite(theme = ggplot2::theme_minimal(), barwidth = 40)
oc_russie_carte_natalite(theme = ggplot2::theme_minimal(), barwidth = 40)
theme |
A ggplot2 theme |
barwidth |
Width of legend bar |
A ggplot2 map
oc_russie_carte_natalite()
oc_russie_carte_natalite()
Graphique de l'évolution démographique de la Russie entre 1980 et 2020. Graphique destiné à l'examen de maturité2022.
oc_russie_graph_demo_exa(theme = ggplot2::theme_minimal())
oc_russie_graph_demo_exa(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_demo_exa()
oc_russie_graph_demo_exa()
"Race plot" avec l'évolution des dépenses militaires entre 2000 et 2020.
oc_russie_graph_depense_militaire(theme = ggplot2::theme_minimal())
oc_russie_graph_depense_militaire(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
An animated ggplot2
# Not run: needs ffmpeg oc_russie_graph_depense_militaire()
# Not run: needs ffmpeg oc_russie_graph_depense_militaire()
Graphique de l'immigration en Russie avec les 5 pays
les plus représentés et une catégorie autres
.
oc_russie_graph_immigration(theme = ggplot2::theme_minimal())
oc_russie_graph_immigration(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_immigration()
oc_russie_graph_immigration()
Graphiques des mariages et divorces en Russie
oc_russie_graph_mariages_et_divorces(theme = ggplot2::theme_minimal())
oc_russie_graph_mariages_et_divorces(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_mariages_et_divorces()
oc_russie_graph_mariages_et_divorces()
Graphique des naissances et des avortements en Russie jusqu'en 2017.
oc_russie_graph_naissances(theme = ggplot2::theme_minimal()) oc_russie_graph_avortements(theme = ggplot2::theme_minimal()) oc_russie_graph_naissance_et_avortements(theme = ggplot2::theme_minimal())
oc_russie_graph_naissances(theme = ggplot2::theme_minimal()) oc_russie_graph_avortements(theme = ggplot2::theme_minimal()) oc_russie_graph_naissance_et_avortements(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_naissances() oc_russie_graph_avortements() # Not run: needs patchwork to assemble the plot and only # works if the package is loaded oc_russie_graph_naissance_et_avortements()
oc_russie_graph_naissances() oc_russie_graph_avortements() # Not run: needs patchwork to assemble the plot and only # works if the package is loaded oc_russie_graph_naissance_et_avortements()
Graphique du solde migratoire en Russie par décénies.
oc_russie_graph_solde_migratoire(theme = ggplot2::theme_minimal())
oc_russie_graph_solde_migratoire(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_solde_migratoire()
oc_russie_graph_solde_migratoire()
Graphiques avec l'évolution de l'attitude des russes envers l'étranger.
oc_russie_graph_attitude_us(theme = ggplot2::theme_minimal()) oc_russie_graph_attitude_eu(theme = ggplot2::theme_minimal())
oc_russie_graph_attitude_us(theme = ggplot2::theme_minimal()) oc_russie_graph_attitude_eu(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_attitude_us() oc_russie_graph_attitude_eu()
oc_russie_graph_attitude_us() oc_russie_graph_attitude_eu()
Graphiques qui montrent l'évolution de l'espérance de vie de la Russie.
oc_russie_graph_esperance_europe(theme = ggplot2::theme_minimal()) oc_russie_hc_esperance_europe() oc_russie_graph_esperance_65_femmes(theme = ggplot2::theme_minimal()) oc_russie_graph_esperance_65_hommes(theme = ggplot2::theme_minimal())
oc_russie_graph_esperance_europe(theme = ggplot2::theme_minimal()) oc_russie_hc_esperance_europe() oc_russie_graph_esperance_65_femmes(theme = ggplot2::theme_minimal()) oc_russie_graph_esperance_65_hommes(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_russie_graph_esperance_europe() oc_russie_hc_esperance_europe() # Not run: needs credentials for HMD database oc_russie_graph_esperance_65_femmes() oc_russie_graph_esperance_65_hommes()
oc_russie_graph_esperance_europe() oc_russie_hc_esperance_europe() # Not run: needs credentials for HMD database oc_russie_graph_esperance_65_femmes() oc_russie_graph_esperance_65_hommes()
Graphique de l'évolution de l'indice de fécondité de la Russie comparé au reste de l'Europe.
oc_russie_graph_fertilite_europe(theme = ggplot2::theme_minimal()) oc_russie_hc_fertilite_europe()
oc_russie_graph_fertilite_europe(theme = ggplot2::theme_minimal()) oc_russie_hc_fertilite_europe()
theme |
A ggplot2 theme |
A ggplot2 graph
A highcharts graph
oc_russie_graph_fertilite_europe() oc_russie_hc_fertilite_europe()
oc_russie_graph_fertilite_europe() oc_russie_hc_fertilite_europe()
Graphique des 10 ethnies les plus fréquentes (hors Russes)
oc_russie_hc_ethnies()
oc_russie_hc_ethnies()
A highcharts graph
oc_russie_hc_ethnies()
oc_russie_hc_ethnies()
PIB par habitant comparé entre la Russie et la Suisse
oc_russie_hc_pib_vs_suisse()
oc_russie_hc_pib_vs_suisse()
A highcharts graph
oc_russie_hc_pib_vs_suisse()
oc_russie_hc_pib_vs_suisse()
Religion en Russie
oc_russie_hc_religion()
oc_russie_hc_religion()
A highcharts graph
https://www.levada.ru/en/2023/06/02/religious-beliefs/
oc_russie_hc_religion()
oc_russie_hc_religion()
Une carte du résultat de la votation sur le suffrage féminin au canton du Valais le 12 avril 1970.
oc_suisse_carte_1970_suffrage_feminin_valais(theme = ggplot2::theme_minimal())
oc_suisse_carte_1970_suffrage_feminin_valais(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
ggplot2 map
oc_suisse_carte_1970_suffrage_feminin_valais()
oc_suisse_carte_1970_suffrage_feminin_valais()
Religion par commune
oc_suisse_carte_hc_2020_religion()
oc_suisse_carte_hc_2020_religion()
A highcharts map
oc_suisse_carte_hc_2020_religion()
oc_suisse_carte_hc_2020_religion()
Une carte de l'introduction du suffrage féminin au niveau cantonal en Suisse.
oc_suisse_carte_suffrage_feminin(theme = ggplot2::theme_minimal())
oc_suisse_carte_suffrage_feminin(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
ggplot2 map
oc_suisse_carte_suffrage_feminin()
oc_suisse_carte_suffrage_feminin()
Un graphique avec l'évolution de l'immigration italienne en Suisse de 1981 jusqu'en 2021.
oc_suisse_graph_2021_immigration_italienne(theme = ggplot2::theme_minimal())
oc_suisse_graph_2021_immigration_italienne(theme = ggplot2::theme_minimal())
theme |
A ggplot2 theme |
A ggplot2 graph
oc_suisse_graph_2021_immigration_italienne()
oc_suisse_graph_2021_immigration_italienne()
Graphique des principales nationalité en Suisse en 2023 hors Suisses.
oc_suisse_hc_2023_nationalite()
oc_suisse_hc_2023_nationalite()
A highcharts graph
oc_suisse_hc_2023_nationalite()
oc_suisse_hc_2023_nationalite()