new working version with major updates

This commit is contained in:
Andreas Gammelgaard Damsbo 2024-12-17 11:30:17 +01:00
commit e4633421aa
No known key found for this signature in database
16 changed files with 1678 additions and 85 deletions

24
man/is_any_class.Rd Normal file
View file

@ -0,0 +1,24 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cut-variable-dates.R
\name{is_any_class}
\alias{is_any_class}
\title{Test class}
\usage{
is_any_class(data, class.vec)
}
\arguments{
\item{data}{data}
\item{class.vec}{vector of class names to test}
}
\value{
factor
}
\description{
Test class
}
\examples{
vapply(REDCapCAST::redcapcast_data, \(.x){
is_any_class(.x, c("hms", "Date", "POSIXct", "POSIXt"))
}, logical(1))
}