summaryrefslogtreecommitdiff
path: root/man/dataPartition.Rd
diff options
context:
space:
mode:
Diffstat (limited to 'man/dataPartition.Rd')
-rw-r--r--man/dataPartition.Rd6
1 files changed, 6 insertions, 0 deletions
diff --git a/man/dataPartition.Rd b/man/dataPartition.Rd
index 501ace2..afcc473 100644
--- a/man/dataPartition.Rd
+++ b/man/dataPartition.Rd
@@ -18,4 +18,10 @@ list containing estimation and validation idframe objects
The function splits the data into training and validation sets and returns them bundled
as a list. The size of the sets are determined by the parameter \code{p}.
}
+\examples{
+data(cstr)
+splitList <- dataPartition(cstr,p=0.6)
+train <- splitList$estimation # training set
+test <- splitList$validation # testing set
+}