Why am I not able to group data?

I am using the command group_by.. but it doesn't seem to be working effectively. please help.
Final %>%

The group_by() function will not change what you see with the view() function. group_by changes the internal attributes of the data so that calculations can be done on each group. If you want to sort the data, use the arrange function from the dplyr package.

Final %>% arrange(`Merchant Name`)

If you want to do something else, please explain what that is.

3 Likes

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.