Learn R Programming

divseg (version 0.1.0)

ds_abs_clust: Compute Absolute Clustering

Description

Compute Absolute Clustering

Usage

ds_abs_clust(.data, .cols, .name)

abs_clust(..., .data = dplyr::across(everything()))

Value

a tibble or numeric vector if .name missing

Arguments

.data

tibble with sf geometry

.cols

tidy-select Columns to compute the measure with. Must be at least 2 columns. If more than 2, treats first column as first group and sum of other columns as second.

.name

name for column with absolute clustering. Leave missing to return a vector.

...

arguments to forward to ds_abs_clust from abs_clust

Examples

Run this code
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')

Run the code above in your browser using DataLab