File: melt.Rd

package info (click to toggle)
r-cran-reshape2 1.4.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 292 kB
  • sloc: cpp: 246; sh: 9; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 868 bytes parent folder | download | duplicates (2)
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}
\alias{melt}
\title{Convert an object into a molten data frame.}
\usage{
melt(data, ..., na.rm = FALSE, value.name = "value")
}
\arguments{
\item{data}{Data set 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{
This the generic melt function. See the following functions
for the details about different data structures:
}
\details{
\itemize{
  \item \code{\link{melt.data.frame}} for data.frames
  \item \code{\link{melt.array}} for arrays, matrices and tables
  \item \code{\link{melt.list}} for lists
}
}
\seealso{
\code{\link{cast}}
}
\keyword{manip}