rrr
rrr

Reputation: 371

What package is required to use initial_split()?

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

Answers (1)

STATistics
STATistics

Reputation: 11

the library(tidymodels) is used to the split the data into training and testing using the function initial_split().

Upvotes: 1

Related Questions