You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you decide to handle missing data in your data analysis, it is always crucial
1371
+
to think critically about the setting, how the data were collected, and the
1372
+
question you are answering.
1373
+
1374
+
1297
1375
## Putting it together in a `workflow` {#puttingittogetherworkflow}
1298
1376
1299
-
The `tidymodels` package collection also provides the `workflow`, a way to chain\index{tidymodels!workflow}\index{workflow|see{tidymodels}} together multiple data analysis steps without a lot of otherwise necessary code for intermediate steps.
1300
-
To illustrate the whole pipeline, let's start from scratch with the `unscaled_wdbc.csv` data.
1301
-
First we will load the data, create a model, and specify a recipe for how the data should be preprocessed:
1377
+
The `tidymodels` package collection also provides the `workflow`, a way to
1378
+
chain\index{tidymodels!workflow}\index{workflow|see{tidymodels}} together
1379
+
multiple data analysis steps without a lot of otherwise necessary code for
1380
+
intermediate steps. To illustrate the whole pipeline, let's start from scratch
1381
+
with the `unscaled_wdbc.csv` data. First we will load the data, create a
1382
+
model, and specify a recipe for how the data should be preprocessed:
0 commit comments