【R】都道府県別 だいこん生産量

農林水産省が公表している 平成18年青果物・花き集出荷機構調査報告 から都道府県別の大根生産量を地図に描画してみます。生産量が不明等の理由で大阪、香川、高知、佐賀は生産量が0となっています。

library(leaflet)

dat <- read.csv("http://www.dinov.tokyo/Data/JP_Pref/Pref_data.csv", header = TRUE,
                fileEncoding="UTF-8")
col_start <- 0.2
col_end <- 0.0

datc_m <- cut(dat$だいこん, hist(dat$だいこん, plot=FALSE)$breaks, right=FALSE)
datc_mcol <- rainbow(length(levels(datc_m)), start = col_start, end=col_end)[as.integer(datc_m)]
windowsFonts(JP1=windowsFont("MS Gothic"),
             JP2=windowsFont("MS Mincho"),
             JP3=windowsFont("Meiryo"),
             JP4=windowsFont("Biz Gothic"))
windows(width=800, height=800)
par(family="JP4")

library(NipponMap)
JapanPrefMap(datc_mcol, main="平成18年 都道府県別 だいこん生産量 t  (農林水産省より) ")
legend("bottomright", fill=rainbow(length(levels(datc_m)), start = col_start, end=col_end), legend=names(table(datc_m)))

全国的に広く栽培されていますが、北海道と千葉が圧倒的に生産量が多いです。

出典: 農林水産省 平成18年青果物・花き集出荷機構調査報告

Add a Comment

メールアドレスが公開されることはありません。