mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2026-06-19 05:07:30 +02:00
all data parsing and formatting has been seperated in individual functions
This commit is contained in:
parent
4911d4dbc8
commit
ea08a2066f
7 changed files with 362 additions and 85 deletions
29
man/numchar2fct.Rd
Normal file
29
man/numchar2fct.Rd
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
% 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue