ds_abs_clust {divseg} | R Documentation |
Compute Absolute Clustering
Description
Compute Absolute Clustering
Usage
ds_abs_clust(.data, .cols, .name)
abs_clust(..., .data = dplyr::across(everything()))
Arguments
.data |
tibble with sf geometry |
.cols |
|
.name |
name for column with absolute clustering. Leave missing to return a vector. |
... |
arguments to forward to ds_abs_clust from abs_clust |
Value
a tibble or numeric vector if .name missing
Examples
data("de_county")
ds_abs_clust(de_county, c(pop_white, starts_with('pop_')))
ds_abs_clust(de_county, c(pop_white, starts_with('pop_')), 'abs_clust')
[Package divseg version 0.0.5 Index]