LoginSignup
1
2

More than 5 years have passed since last update.

choroplethr - Vignettes - a) イントロダクション

Last updated at Posted at 2014-12-07

Rのパッケージchoroplethrのビネットの翻訳です.
( 原文: http://cran.r-project.org/web/packages/choroplethr/index.html )


a) イントロダクション

コロプレス図(階級区分図)とは

コロプレス図とは

  1. 地理的な境界を描いて
  2. ある尺度に基づいて領域を塗り分けた

地図のことです.

コロプレス図は,地理的な境界が自然な集計単位になっているデータを可視化する場合に便利です.
例として,2012年のアメリカの州別人口推計を表すコロプレス図を示します.

library(choroplethr)
?df_pop_state
data(df_pop_state)
state_choropleth(df_pop_state, title="2012 US State Population Estimates", legend="Population")

us-pop-2012.png

choroplethrとは

choroplethrはRでのコロプレス図の作成を容易にするRパッケージです.
そのために3つの特徴を備えています.

  1. 4つの異なる地図を用いたコロプレス図をすぐに作成できる関数を提供します.
  2. コロプレス図を作るための興味深いデータソースへのAPI接続を提供します.
  3. 任意のシェープファイル(Shapefile)からコロプレス図を作成するための フレームワークを提供します.

残りのビネットではこれらの特徴について詳細に説明します.

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2