From c6e753162add6d331c665b629c71594bfd448693 Mon Sep 17 00:00:00 2001 From: Suraj Yerramilli Date: Fri, 6 Feb 2015 22:19:41 +0530 Subject: added code for splitting data into training and validation sets --- man/dataPartition.Rd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 man/dataPartition.Rd (limited to 'man/dataPartition.Rd') diff --git a/man/dataPartition.Rd b/man/dataPartition.Rd new file mode 100644 index 0000000..501ace2 --- /dev/null +++ b/man/dataPartition.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2 (4.1.0): do not edit by hand +% Please edit documentation in R/partition.R +\name{dataPartition} +\alias{dataPartition} +\title{Split data into training and validation sets} +\usage{ +dataPartition(object, p = 0.6) +} +\arguments{ +\item{object}{an object of class \code{idframe}} + +\item{p}{the percentage of the data that goes to training (Default : \code{0.6})} +} +\value{ +list containing estimation and validation idframe objects +} +\description{ +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}. +} + -- cgit