Reputation: 371
I'm willing to use the initial_split() function, but whenever I type it R returns this message: No documentation for ‘initial_split’ in specified packages and libraries: you could try ‘??initial_split’.
What kind of package do I need to install?
Upvotes: 1
Views: 5084
Reputation: 11
the library(tidymodels) is used to the split the data into training and testing using the function initial_split().
Upvotes: 1