Releases: Crunch-io/rcrunch
Releases · Crunch-io/rcrunch
v1.30.4
v1.30.3
crunch 1.30.3
- Fix typo which relied on partial argument matching when using the variable catalog cache
(#625, thanks @rossellhayes) - Can now upload a dataset with metadata stored as a .json file (#620)
- Avoid traversing hidden/private variable folder tree in more situations when the
crunch.warn.hidden
&crunch.warn.private
options are set (#619). - Support for including hidden/private variables in
names()
to avoid issues with
stuttering by RStudio auto-complete with option
crunch.names.includes.hidden.private.variables
(#619). - Experimental support for avoiding loading the variable order with option
crunch.order.var.catalog
(#619). - Miscellaneous fixes for CRAN checks
v1.30.2
crunch 1.30.2
- You can now run crunch automation scripts on project folders. For a list of commands
see https://help.crunch.io/hc/en-us/sections/10343332025101-Folder-commands. (#617) - Fix for printing
ScriptCatalog
(and removal of theScriptCatalog
method for
ScriptBody
the full body, subset to the particular script if you need the body
text withvapply(scripts(ds), function(x) scriptBody(x), character(1))
). - Bug fix for setting the encoding type when running crunch automation commands.
1.30.1
v1.30.0
v1.29.1
v1.29.0
crunch 1.29.0
- Authenticating with an API key is now the recommended way to use the R crunch package. See
thevignette("crunch")
or?crunch-api-key
for more details. Thelogin()
authentication
flow is deprecated and will be removed from an upcoming release.
v1.28.2
crunch 1.28.2
- You can now export a csv version of a tabbook for use in Tableau or other BI software (#583)
- Crunch slides have been improved:
- Fixed a warning in R 4.1 when setting attributes on S4 objects (#578)
- Can create and edit subtotal insertions on Multiple Response variables (#580)
- Update to the pets example (#585)
interactVariables()
now uses server side logic to create categories so that it's faster,
but thesep
argument is no longer supported (it's always set to" and "
) and the category
order will not be the same.
1.28.1
as.data.frame()
andas.vector()
work with numeric arrays now (#558)- Can now create subtotal differences from rcrunch (#559)
- Can now use
options(crunch.show.progress.url = TRUE)
to show the URL checked for progress (#565) - Avoids a possible bug when a hidden or private folder have bad entities in them (#561)
- Fixed a bug in
as.data.frame()
where it would not respect theinclude.hidden
argument (#560) - Fixed a warning message in R 4.1 when assigning two levels deep (#578)
1.28.0
- Variables catalogs are now loaded lazily, which means some dataset operations will be much faster. You can override this behavior (useful for eg testing or rare situations when working on many datasets at once by using
forceVariableCatalog()
oroption(crunch.lazy.variable.catalog = FALSE)
). - You can now set the filter, weight and viz_type of a slide when creating it.
searchDatasets()
gained an argumentf
that allows you to pass R objects to filter on.- Added a vignette for common deck operations.
(Release much earlier but not put on GitHub as a release)