/squirrels.fusen

An example of use for {fusen} along with presentation

Primary LanguageROtherNOASSERTION

squirrels.fusen

R-CMD-check Codecov test coverage

The goal of {squirrels.fusen} is to present an example of package built with {fusen}.
This goes along with my presentations available in https:://github.com/statnmap/prez.

Installation

The development version from GitHub with:

# install.packages("devtools")
devtools::install_github("statnmap/squirrels.fusen")

Example

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

library(squirrels.fusen)
## basic example code
# A working example
my_data_example <- data.frame(
  lat = c(40.77, 40.78),
  long = c(-73.95, -73.96),
  primary_fur_color = c("grey", "black")
)
check_data_integrity(my_data_example)
#> All tests are good !