Peta koroplet

Visualisasi Data Interaktif dengan plotly di R

Adam Loy

Statistician, Carleton College

Visualisasi Data Interaktif dengan plotly di R

Peta kepadatan penduduk dunia 800px

Visualisasi Data Interaktif dengan plotly di R

Peta koroplet di plotly

head(turnout)
       state state.abbr turnout2018 turnout2014  ballots      vep      vap
1    Alabama         AL       0.474       0.332  1725000  3641209  3802714
2     Alaska         AK       0.537       0.548   280000   521777   554426
3    Arizona         AZ       0.486       0.341  2385000  4910625  5519036
4   Arkansas         AR       0.412       0.403   895000  2171940  2319740
5 California         CA       0.478       0.307 12250000 25635139 30836229
6   Colorado         CO       0.619       0.547  2540000  4103903  4445013
Visualisasi Data Interaktif dengan plotly di R

Peta koroplet di plotly

turnout %>%

plot_geo(locationmode = 'USA-states') %>%
add_trace( z = ~turnout, # Mengatur nilai warna locations = ~state.abbr # Mencocokkan kasus ke poligon ) %>%
layout(geo = list(scope = 'usa')) # Membatasi peta hanya ke AS
Visualisasi Data Interaktif dengan plotly di R

Batasan plot_geo()

locationmode: "USA-states" | "ISO-3" | "country names"

Visualisasi Data Interaktif dengan plotly di R

Opsi pemetaan

scope = "usa"

  • "world" | "usa" | "europe" | "asia" | "africa" | "north america" | "south america"

projection = list(type = "mercator")

  • "conic conformal" | "mercator" | "robinson" | "stereographic" | dan 18 lagi...

scale = 1

  • Nilai lebih besar = zoom lebih dekat

center = list(lat = ~c.lat, lon = ~c.lon)

  • Atur c.lat dan c.lon untuk memusatkan peta
Visualisasi Data Interaktif dengan plotly di R

Mari memetakan!

Visualisasi Data Interaktif dengan plotly di R

Preparing Video For Download...