1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/melt.r
\name{melt.default}
\alias{melt.default}
\title{Melt a vector.
For vectors, makes a column of a data frame}
\usage{
\method{melt}{default}(data, ..., na.rm = FALSE, value.name = "value")
}
\arguments{
\item{data}{vector to melt}
\item{...}{further arguments passed to or from other methods.}
\item{na.rm}{Should NA values be removed from the data set? This will
convert explicit missings to implicit missings.}
\item{value.name}{name of variable used to store values}
}
\description{
Melt a vector.
For vectors, makes a column of a data frame
}
\seealso{
\code{\link{melt}}, \code{\link{cast}}
Other melt methods:
\code{\link{melt.array}()},
\code{\link{melt.data.frame}()},
\code{\link{melt.list}()}
}
\concept{melt methods}
\keyword{manip}
|