我正在尝试创建与我的数据框值相对应的十分位数因子。我希望因子显示为一个范围,例如,如果值为“164”,那么因子结果应该是“160 - 166”。
过去我会这样做:
quantile(countries.Imported$Imported, seq(0,1, 0.1), na.rm = T) # display deciles
Imported.levels <- c(0, 1000, 10000, 20000, 30000, 50000, 80000) # create levels from observed deciles
Imported.labels <- c('< 1,000t', '1,000t - 10,000t', '10,000t - 20,000t', etc) # create corresponding labels
colfunc <- colorRampPalette(c('#E5E4E2', '#8290af','#512888'))
# apply factor function
Imported.colors <- colfunc(10)
names(Imported.colors) <- Imported.labels
countries.Imported$Imported.fc <- factor(
cut(countries.Imported$Imported, Imported.levels),labels = Imported.labels)
相反,我想应用一个函数,将值分解为十分位数范围。我想避免手动设置因子标签,因为我将运行许多查询并绘制具有离散图例的地图。我创建了一个名为 Value.fc 的列,但我无法将其从 "(160, 166]" 格式化为 "160 - 166"。请参阅下面有问题的代码:
corn_df <- corn_df %>%
mutate(Value.fc = gtools::quantcut(Value, 10))
corn_df %>%
select(Value, unit_desc, domain_desc, Value.fc) %>%
head(6)
A tibble: 6 x 4 Value unit_desc domain_desc Value.fc <dbl> <chr> <chr> <fct> 1 164. BU / ACRE TOTAL (160,166] 2 196. BU / ACRE TOTAL (191,200] 3 203. BU / ACRE TOTAL (200,230] 4 205. BU / ACRE TOTAL (200,230] 5 172. BU / ACRE TOTAL (171,178] 6 213. BU / ACRE TOTAL (200,230]