swh:1:snp:13ceaf33a0cf03b54a9c83ec2c853f3c4226f6da
Raw File
Tip revision: 0fe6aa35b6d0de47895310e5fdbb8541f166ef46 authored by Ben Bolker on 10 August 2009, 00:00:00 UTC
version 0.9.3
Tip revision: 0fe6aa3
relist.Rd
\name{relist2}
\alias{relist2}
\title{reconstruct the structure of a list}
\description{
  reshapes a vector according to a list template
}
\usage{
relist2(v, l)
}
\arguments{
  \item{v}{vector, probably numeric, of values to reshape}
  \item{l}{template list giving structure}
}
\details{
  attempts to coerce \code{v} into a list with the same
  structure and names as \code{l}
}
\value{
  a list with values corresponding to v and structure corresponding to l
}
\author{Ben Bolker}
\examples{
  l = list(b=1,c=2:5,d=matrix(1:4,nrow=2))
  relist2(1:9,l)
}
\keyword{misc}
back to top