https://github.com/cran/FedData
Raw File
Tip revision: ec6fb1cf6e009ff2cbdea0287158d33821578667 authored by R. Kyle Bocinsky on 17 March 2024, 00:40:03 UTC
version 4.0.1
Tip revision: ec6fb1c
replace_null.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/UTILITY_FUNCTIONS.R
\name{replace_null}
\alias{replace_null}
\title{Replace NULLs}
\usage{
replace_null(x)
}
\arguments{
\item{x}{A list}
}
\description{
Replace all the empty values in a list
}
\examples{
list(a = NULL, b = 1, c = list(foo = NULL, bar = NULL)) \%>\% replace_null()
}
back to top