R/sdg.R

Defines functions sdg

Documented in sdg

#' sdg
#'
#' Shortcut to remove geometry from sf objects.
#'
#' @param x Vector dataset
#'
#' @return Dataframe.
#' @export
#'
#' @examples
#' \dontrun{
#'
#'
#' }
#'

sdg <- function(x) {
  sf::st_drop_geometry(x) |>
    tibble::as_tibble()
}
toddellis/miao documentation built on June 1, 2025, 10:11 p.m.