Releases: hadley/reshape
Releases · hadley/reshape
reshape2 1.4.5
- No longer uses non-API entry points (@kevinushey, #106).
- Other various fixes for
R CMD checkissues.
reshape2 1.4.4
- Fix R CMD check failure in R-devel.
reshape2 1.4.3
-
Fix C/C++ problems causing R CMD CHECK errors.
-
melt.data.frame()throws when encountering objects of typePOSIXlt,
and requests a conversion to the (much saner)POSIXcttype.
reshape2 1.4.2
- Minor R CMD check fixes for CRAN.
reshape2 1.4.1
melt.data.frame()now properly sets the OBJECT bit onvaluevariable
generated if attributes are copied (for example, when multiple POSIXct
columns are concatenated to generate thevaluevariable) (#50)melt.data.frame()can meltdata.frames containinglistelements asid
columns. (#49)melt.data.frame()no longer errors whenmeasure.varsisNULLor empty.
(#46)
reshape2 1.4
dcast()andacast()gain a useful error message if you usevalue_var
intead ofvalue.var(#16), and ifvalue.vardoesn't exist (#9). They
also work better with.in specifications like. ~ .or
x + y ~ .melt.array()creates factor variables with levels in the same order
as the original rownames (#19)melt.data.frame()gains an internal Rcpp / C++ implementation, and
is now many orders of magnitudes faster. It also preserves identical
attributes for measure variables, and now throws a warning if they are
dropped. (Thanks to Kevin Ushey)melt.data.frame()gains afactorsAsStringsargument that controls whether
factors are converted to character when melted as measure variables. This
isTRUEby default for backward compatibility.melt.array()gains aas.isargument which can be used to prevent
dimnames being converted withtype.convert()recast()now returns a data frame instead of a list (#45).