You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wonder if it's worth using some generic R function names for some of the dataset manipulation functions e.g.
merge could be used to merge either two datasets into one, a list of summarysets into a dataset, a list of summarysets and datasets - that could make life quite a lot easier for analysts. This would replace create_dataset and add_summaryset (or just be a wrapper around those existing methods)
perhaps just use length instead of getLength
I like how you can just do dataset[c(1,2,5)] and it selects the summarysets that way
The text was updated successfully, but these errors were encountered:
I just wonder if it's worth using some generic R function names for some of the dataset manipulation functions e.g.
merge
could be used to merge either two datasets into one, a list of summarysets into a dataset, a list of summarysets and datasets - that could make life quite a lot easier for analysts. This would replacecreate_dataset
andadd_summaryset
(or just be a wrapper around those existing methods)length
instead ofgetLength
I like how you can just do
dataset[c(1,2,5)]
and it selects the summarysets that wayThe text was updated successfully, but these errors were encountered: