As mentioned in #3542, reshape2 is dead since a year ago.
We removed it from suggests but still have some snippets like:
ns = tryCatch(getNamespace("reshape2"), error=function(e)
stop("The dcast generic in data.table has been passed a ",class(data)[1L]," (not a data.table) but the reshape2 package is not installed to process this type. Please either install reshape2 and try again, or pass a data.table to dcast instead."))
ns$dcast(data, formula, fun.aggregate = fun.aggregate, ..., margins = margins,
subset = subset, fill = fill, value.var = value.var)
I don't think it makes sense to support such functionality anymore.
Question is, are we safe to just get rid of it right away, or do we need to lifecycle it out?
As mentioned in #3542,
reshape2is dead since a year ago.We removed it from suggests but still have some snippets like:
I don't think it makes sense to support such functionality anymore.
Question is, are we safe to just get rid of it right away, or do we need to lifecycle it out?