UBC-MDS/taxyvr

Saved data is grouped

Closed this issue · 3 comments

ll_df <- combo %>% group_by(folio) %>% slice(1)

(Appears in all data-raw/tax_20XX.R scripts)

Need to ungroup() here to avoid errors like Adding missing grouping variables: 'folio' when selecting

@jbourak do you mean just

 ll_df <- combo %>% group_by(folio) %>% slice(1)  %>% ungroup()

I wasn't getting any errors but I can add it now!

Yep! I was getting that error when trying to unselect the folio column since its used in the grouping

Ok closing issue fixed!