FreesearchR/man/argsstring2list.Rd

22 lines
436 B
Text
Raw Permalink Normal View History

2024-11-08 16:31:33 +01:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/helpers.R
\name{argsstring2list}
\alias{argsstring2list}
\title{Convert string of arguments to list of arguments}
\usage{
argsstring2list(string)
}
\arguments{
\item{string}{string to convert to list to use with do.call}
}
\value{
list
}
\description{
Idea from the answer: https://stackoverflow.com/a/62979238
}
\examples{
argsstring2list("A=1:5,b=2:4")
}