我正在使用数据结果([ https://drive.google.com/file/d/0B0zK9xcdOi1sQ1JaZFZYX1FQaUU/view?usp=sharing])
我要做的是使用 maps 包根据该州的标签值为美国地图的州着色。
我正在尝试使用以下代码,但它不起作用。
library(choroplethr)
gtd <- read.csv("/Users/urAD_Jeff/Documents/Image analysis/result PNG/state.CSV")
statelabel<- ddply(gtd, .(y), "nrow")
colnames(statelabel) <- c("label", "value")
statelabel$label <- tolower(statelabel$label)
statelabel$label <- gsub(" (u.s. state)", "", statelabel$label, fixed=TRUE)
choroplethr(statlabel, lod="state")
想要的结果图像如下所示: