melt {reshape2} R Documentation

melt: Convert an object into a molten data frame.

Description


This the generic melt function. See the following functions
for the details about different data structures

Usage

melt(data,
    na.rm = FALSE,
    value.name = "value",
    ... = NULL);

Arguments

data

Data set to melt

na.rm

Should NA values be removed from the data set? This will convert explicit missings to implicit missings. [as boolean]

value.name

name of variable used to store values. [as string]

args

further arguments passed To Or from other methods. [as list]

env

[as Environment]

Details

Authors

SMRUCC genomics Institute

Value

1. melt.data.frame for data.frames 2. melt.array for arrays, matrices And tables 3. melt.list for lists

clr value class

Examples


[Package reshape2 version 2.33.856.6961 Index]