mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 12:37:30 +02:00
too much..
This commit is contained in:
parent
e5b702a183
commit
bc8aa7b583
28 changed files with 1064 additions and 95 deletions
27
man/append_list.Rd
Normal file
27
man/append_list.Rd
Normal 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")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue