tidyr (version 0.1)

spread_: Standard-evaluation version of spread.

Description

This is a S3 generic.

Usage

spread_(data, key_col, value_col, fill = NA, convert = FALSE)

Arguments

data
A data frame.
key_col,value_col
Strings giving names of key and value cols.
fill
If there isn't a value for every combination of the other variables and the key column, this value will be substituted.
convert
If TRUE, type.convert with asis = TRUE will be run on each of the new columns. This is useful if the value column was a mix of variables that was coerced to a string.