summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/dataPartition.Rd6
-rw-r--r--man/dataSlice.Rd8
2 files changed, 7 insertions, 7 deletions
diff --git a/man/dataPartition.Rd b/man/dataPartition.Rd
index afcc473..2ac7ef5 100644
--- a/man/dataPartition.Rd
+++ b/man/dataPartition.Rd
@@ -4,15 +4,15 @@
\alias{dataPartition}
\title{Split data into training and validation sets}
\usage{
-dataPartition(object, p = 0.6)
+dataPartition(data, p = 0.6)
}
\arguments{
-\item{object}{an object of class \code{idframe}}
+\item{data}{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
+list containing estimation and validation idframe datas
}
\description{
The function splits the data into training and validation sets and returns them bundled
diff --git a/man/dataSlice.Rd b/man/dataSlice.Rd
index 2489cc3..52eb438 100644
--- a/man/dataSlice.Rd
+++ b/man/dataSlice.Rd
@@ -2,16 +2,16 @@
% Please edit documentation in R/partition.R
\name{dataSlice}
\alias{dataSlice}
-\title{Subset an idframe object}
+\title{Subset an idframe data}
\usage{
-dataSlice(object, indices)
+dataSlice(data, indices)
}
\arguments{
-\item{object}{an object of class \code{idframe}}
+\item{data}{an object of class \code{idframe}}
\item{indices}{the indices that need to be subsetted}
}
\description{
-Subsetting method for objects of class \code{idframe}
+Subsetting method for datas of class \code{idframe}
}