minor steps
Some checks are pending
pkgdown.yaml / pkgdown (push) Waiting to run

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-03-12 18:27:46 +01:00
commit efc3f8acc3
No known key found for this signature in database
23 changed files with 1467 additions and 644 deletions

20
man/missing_fraction.Rd Normal file
View file

@ -0,0 +1,20 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/helpers.R
\name{missing_fraction}
\alias{missing_fraction}
\title{Get missingsness fraction}
\usage{
missing_fraction(data)
}
\arguments{
\item{data}{data}
}
\value{
numeric vector
}
\description{
Get missingsness fraction
}
\examples{
c(NA,1:10,rep(NA,3)) |> missing_fraction()
}