recast: Recast: melt and cast in a single step

Description Usage Arguments See Also Examples

View source: R/recast.r

Description

This conveniently wraps melting and (d)casting a data frame into a single step.

Usage

1
recast(data, formula, ..., id.var, measure.var)

Arguments

data

data set to melt

formula

casting formula, see dcast for specifics

...

other arguments passed to dcast

id.var

identifying variables. If blank, will use all non measure.var variables

measure.var

measured variables. If blank, will use all non id.var variables

See Also

http://had.co.nz/reshape/

Examples

1
recast(french_fries, time ~ variable, id.var = 1:4)

hadley/reshape documentation built on March 16, 2021, 9:38 a.m.