Title: | Gadget to Use the Data Preprocessing 'recipes' Package Interactively |
---|---|
Description: | This gadget allows you to use the 'recipes' package belonging to 'tidymodels' to carry out the data preprocessing tasks in an interactive way. Build your 'recipe' by dragging the variables, visually analyze your data to decide which steps to use, add those steps and pre-process your data. |
Authors: | Alberto Almuiña <[email protected]> |
Maintainer: | Alberto Almuiña <[email protected]> |
License: | GPL-3 |
Version: | 0.1.0 |
Built: | 2024-11-03 04:13:08 UTC |
Source: | https://github.com/albertoalmuinha/shinyrecipes |
Gadget to use the data preprocessing 'recipes' package interactively.
recipesGadget(.df, bake_list = NULL)
recipesGadget(.df, bake_list = NULL)
.df |
data frame, data table or tibble on which the preprocessing steps will be trained. |
bake_list |
A named list where each element is a data.frame, data.table or tibble on which the selected preprocessing steps can be applied. |
Find more information in the [shinyrecipes](https://albertoalmuinha.github.io/shinyrecipes/) web page.
Returns a list containing the trained recipe as well as all the data to which the recipe has been applied within the gadget.
Alberto Almuiña
## Not run: recipesGadget(.df = mtcars, bake_list = list('mtcars1' = mtcars1)) ## End(Not run)
## Not run: recipesGadget(.df = mtcars, bake_list = list('mtcars1' = mtcars1)) ## End(Not run)