Releases: etiennebacher/tidypolars
tidypolars 0.2.0
tidypolars
requires polars
>= 0.9.0.
New features
-
Rename
pl_fetch()
tofetch()
. -
New functions supported:
describe()
,sink_csv()
,slice_sample()
. -
New argument
fill
inpl_complete()
. -
Support
stringr::str_to_title()
andtools::toTitleCase()
. -
Support
stringr::fixed()
to use literal strings. -
Support replacements with captured groups like
\\1
instringr::str_replace()
andstringr::str_replace_all()
.
Bug fixes
sink_parquet()
didn't use the user inputs (apart from thepath
).
Misc
-
Clearer error message when an expression contains
<pkg>::
. This is not
supported for now but could potentially be implemented later. -
pl_colnames()
is no longer exported.
tidypolars 0.1.0
New features
-
Support
as.numeric()
,as.character()
,as.logical()
,grepl()
, and
paste()
in expressions inpl_filter()
,pl_mutate()
andpl_summarize()
. -
Support
sink_parquet()
(#38). -
Support
fetch()
(#42). -
Support for additional
stringr
functions:str_detect()
,str_extract_all()
,
str_pad()
,str_squish()
,str_trim()
,word()
(some arguments or corner
cases are not supported yet). -
Add all optimization parameters in
collect()
.
Bug fixes
-
Fix
pl_mutate()
andpl_summarize()
when expressions use some variables
previously created or modified (#10, #37). -
Fix bug in
pl_filter()
when passing a vector in the RHS of%in%
.
Misc
tidypolars 0.0.1
Initial release