mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 13:30:23 +01:00
30 lines
670 B
R
30 lines
670 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/ds2dd_detailed.R
|
|
\name{numchar2fct}
|
|
\alias{numchar2fct}
|
|
\title{Applying var2fct across data set}
|
|
\usage{
|
|
numchar2fct(data, numeric.threshold = 6, character.throshold = 6)
|
|
}
|
|
\arguments{
|
|
\item{data}{dataset. data.frame or tibble}
|
|
|
|
\item{numeric.threshold}{threshold for var2fct for numeric columns. Default
|
|
is 6.}
|
|
|
|
\item{character.throshold}{threshold for var2fct for character columns.
|
|
Default is 6.}
|
|
}
|
|
\value{
|
|
data.frame or tibble
|
|
}
|
|
\description{
|
|
Individual thresholds for character and numeric columns
|
|
}
|
|
\examples{
|
|
mtcars |> str()
|
|
mtcars |>
|
|
numchar2fct(numeric.threshold = 6) |>
|
|
str()
|
|
}
|