The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

catcont

Test For and Identify Categorical or Continuous Values

CRAN_Status_Badge License

This collection of methods and utilities allows for a working with vectors at a higher level abstraction, i.e. by whether they are categorical (nominal) or continous. The functions allow for testing, identifying, selecting, mutating,etc. and work with both atomic vectors and recursive objects (table and list-like) objects in a tidyverse compliant way.

Installation

You can install from CRAN with:

install.packages("catcont")

You can install catcont from github with:

# install.packages("devtools")
devtools::install_github("decisionpatterns/catcont")

Example

Tests

is_cat(letters)          # TRUE
is_cat(factor(letters))  # TRUE
is_cat(TRUE)             # TRUE
is_cat(FALSE)            # TRUE
is_cat(1:10)             # FALSE
is_cat(rnorm(10))        # FALSE
is_cat( Sys.Date() )     # FALSE
is_cat( complex(1,2) )   # FALSE
 
is_cont(letters)         # FALSE
is_cont(factor(letters)) # FALSE
is_cont(TRUE)            # FALSE
is_cont(FALSE)           # FALSE
is_cont(1:10)            # TRUE
is_cont(rnorm(10))       # TRUE
is_cont( Sys.Date() )    # TRUE
is_cont( complex(1,2) )  # TRUE
 

 

Identification

# Atomic 
cat_cont(1:10)
cat_cont(letters)
 
# Recursive 
cat_cont(iris)
 
which_cat(iris)
which_cat( iris, names=TRUE )
  
which_cont(iris)
which_cont( iris, names=TRUE )

Selection

iris %>% select_cat()
iris %>% select_cont()

Mutation

iris %>% mutate_if_cat(...)
iris %>% mutate_if_cont(...)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.