swh:1:snp:13ceaf33a0cf03b54a9c83ec2c853f3c4226f6da
Raw File
Tip revision: 5a76ac2b362d62422d1ea4da87cb87f69db16516 authored by Ben Bolker on 21 May 2007, 13:26:20 UTC
version 0.7
Tip revision: 5a76ac2
relist.Rd
\name{relist}
\alias{relist}
\title{reconstruct the structure of a list}
\description{
  reshapes a vector according to a list template
}
\usage{
relist(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))
  relist(1:9,l)
}
\keyword{misc}
back to top