v0.9.0 #629
markfairbanks
started this conversation in
General
v0.9.0
#629
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dotless functions!
tidytable
now exports dotless versions of all functions (e.g.arrange()
/mutate()
/etc.).verb.()
syntax is still available to users for backwards compatibility.tidytable
anddplyr
by simply loadingdplyr
aftertidytable
, as theverb.()
functions won't be overwritten bydplyr
.New functions
dplyr
-style interface to groupinggroup_by()
/ungroup()
group_vars()
is_grouped_df()
rowwise()
add_tally()
/tally()
case_match()
Functionality improvements
summarize()
: Gains.unpack
argumentpivot_longer()
: Can pass a single ptype or function tovalues_ptypes
/values_transform
/names_ptypes
/names_transform
args.unnest_longer()
/unnest_wider()
: Can pass a single ptype or function toptype
/transform
args.Bug fixes
tidytable::'%in%'
dispatches tobase::'%in%'
when comparing with a list (v0.8.1 #563)pivot_wider()
: Works with column names with spaces (pivot_wider. cannot handle spaces or special characters in the column names #569)pivot_wider()
:names_glue="{.value}_{somecolumn}"
assigns column names incorrect order (@Darxor, Incorrect order of colnames in
pivot_wider.()
withnames_glue
#579)left_join()
: Works when y matching columns inby
is a non matching column of x (left_join: error when y matching columns is a non matching column of x #625)This discussion was created from the release v0.9.0.
Beta Was this translation helpful? Give feedback.
All reactions