README.md

dspace

Travis build
status

The goal of dspace is to enable researchers to delineate real estate submarkets based on the information within the data. Current methods usually depend on pre-existing, subjective divisions, eg. administrative boundaries or school districts. The method implemented here uses graph analysis for finding communities in network to cluster together point or polygon objects based on their similarity.…

Installation

You can install the development version from GitHub with:

# install.packages("remotes")
remotes::install_github("dabrowskia/dspace")

Example

This is a basic example which shows you how to solve a common problem:

library(dspace)
data("socioGrid")
modularity <- find_no_clusters(socioGrid, disjoint = TRUE, n.neigh = 6)
plot_modularity(modularity)
socioGrid$class <- regionalize(socioGrid, k = 7,
   disjoint = TRUE, plot = TRUE)

data("realEstate")
realEstate$class <- regionalize(realEstate, k = 5, accuracy = FALSE)


dabrowskia/dspace documentation built on July 3, 2020, 8:47 p.m.