mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
feat: the missingness module was overhauled to include two different analysis methods and a better, standalone module
Some checks are pending
pkgdown.yaml / pkgdown (push) Waiting to run
Some checks are pending
pkgdown.yaml / pkgdown (push) Waiting to run
This commit is contained in:
parent
fab5c6cf22
commit
af523edc00
25 changed files with 1049 additions and 720 deletions
25
man/missings_logic_across.Rd
Normal file
25
man/missings_logic_across.Rd
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/missings-module.R
|
||||
\name{missings_logic_across}
|
||||
\alias{missings_logic_across}
|
||||
\title{Converting all variables to logicals by missing status}
|
||||
\usage{
|
||||
missings_logic_across(data, exclude = NULL)
|
||||
}
|
||||
\arguments{
|
||||
\item{data}{data}
|
||||
|
||||
\item{exclude}{character vector of variable names to be excluded}
|
||||
}
|
||||
\value{
|
||||
data frame
|
||||
}
|
||||
\description{
|
||||
Converting all variables to logicals by missing status
|
||||
}
|
||||
\examples{
|
||||
mtcars |> missings_logic_across("cyl")
|
||||
## gtsummary::trial |>
|
||||
## missings_logic_across() |>
|
||||
## gtsummary::tbl_summary()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue