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
group_by: one grouping variable (Species)
summarise: now 3 rows and 2 columns, ungrouped
while I would expect something like
group_by: one grouping variable (Species)
summarise: now 3 rows and 2 columns, ungrouped
arrange: now arranged in descending order by one variable (mean_Sepal_Length)
I think that would be a nice addition, if it would fit within the logic of this package.
The text was updated successfully, but these errors were encountered:
I was always hesitant to add information about arrange because it seems so obvious what is happening, but I guess there is some value in it -- especially if your data is grouped and you possibly sort within groups inadvertently.
Would it make sense to print information about the number of rows with NAs among the columns used for sorting? A user might not be aware whether there are any missings in the data. dplyr::arange() puts them last so it printing the head of a data.frame doesn't reveal such instances.
Considering
arrange()
is part of dplyr and tidyr I would expected support for it. For example:now gives:
while I would expect something like
I think that would be a nice addition, if it would fit within the logic of this package.
The text was updated successfully, but these errors were encountered: