| node_to_df {tabnet} | R Documentation | 
Turn a Node object into predictor and outcome.
Description
Turn a Node object into predictor and outcome.
Usage
node_to_df(x, drop_last_level = TRUE)
Arguments
| x | Node object | 
| drop_last_level | TRUE unused | 
Value
a named list of x and y, being respectively the predictor data-frame and the outcomes data-frame,
as expected inputs for hardhat::mold() function.
Examples
library(dplyr)
library(data.tree)
data(starwars)
starwars_tree <- starwars %>%
  mutate(pathString = paste("tree", species, homeworld, `name`, sep = "/")) %>%
  as.Node()
node_to_df(starwars_tree)$x %>% head()
node_to_df(starwars_tree)$y %>% head()
[Package tabnet version 0.6.0 Index]