too much..

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-03-05 21:13:06 +01:00
commit bc8aa7b583
No known key found for this signature in database
28 changed files with 1064 additions and 95 deletions

27
man/append_list.Rd Normal file
View file

@ -0,0 +1,27 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/helpers.R
\name{append_list}
\alias{append_list}
\title{Append list with named index}
\usage{
append_list(data, list, index)
}
\arguments{
\item{data}{data to add to list}
\item{list}{list}
\item{index}{index name}
}
\value{
list
}
\description{
Append list with named index
}
\examples{
ls_d <- list(test=c(1:20))
ls_d <- list()
data.frame(letters[1:20],1:20) |> append_list(ls_d,"letters")
letters[1:20]|> append_list(ls_d,"letters")
}