R/ntcheck.R

Defines functions ntcheck

Documented in ntcheck

#' Investigate possible concatenation
#'
#' @param df \code{ntdf} created dataframe
#' @param ... Other keyword arguments
#' @return Frequncy table of each neighborhood type
#' @export

ntcheck <- function(df, ...)
  df %>% dplyr::group_by(NeighType) %>% dplyr::count() %>% dplyr::arrange(dplyr::desc(n)) %>% data.frame()
timathomas/neighborhood documentation built on Feb. 17, 2024, 11:44 a.m.