Closed jonocarroll closed 5 years ago
I will try to make a simple PR sometime if you like.
That would be great, the plan was to support MAE at some point. I am working on many other things at the moment so this project has taken the back seat for quite a while. PRs and contributions are always welcome!
This might be as simple as not relying on
colnames(object)
(which does something different for MAE) but rather callingrownames(colData(x))
with the same result, which does support MAEhttps://github.com/sa-lee/plyexperiment/blob/f1faf9cd32e020e2a82f441ee39087832973d6e9/R/verbs.R#L40
This
seems to work fine on an MAE as well as a SE for
mutate_col
andrename_col
(with this change), whilefilter_col
andarrange_col
already work as-is.A
select_col
would also require the same alteration, but would work nicely.