summaryrefslogtreecommitdiff
path: root/man/predict.demean.Rd
diff options
context:
space:
mode:
authorSuraj Yerramilli2015-03-22 20:37:02 +0530
committerSuraj Yerramilli2015-03-22 20:37:02 +0530
commita93a9661626862afd941996a1d5f27f3cc0138bf (patch)
tree5f6b21a509b17e92b0e8d2089687f8c9039c71cc /man/predict.demean.Rd
parent6f034a37fc7b35f94b9eaa1738bec4f5b2e2561b (diff)
downloadSysID-R-code-a93a9661626862afd941996a1d5f27f3cc0138bf.tar.gz
SysID-R-code-a93a9661626862afd941996a1d5f27f3cc0138bf.tar.bz2
SysID-R-code-a93a9661626862afd941996a1d5f27f3cc0138bf.zip
Added documentation for the demean function
Diffstat (limited to 'man/predict.demean.Rd')
-rw-r--r--man/predict.demean.Rd31
1 files changed, 31 insertions, 0 deletions
diff --git a/man/predict.demean.Rd b/man/predict.demean.Rd
new file mode 100644
index 0000000..0fd798b
--- /dev/null
+++ b/man/predict.demean.Rd
@@ -0,0 +1,31 @@
+% Generated by roxygen2 (4.1.0): do not edit by hand
+% Please edit documentation in R/demean.R
+\name{predict.demean}
+\alias{predict.demean}
+\title{Predict the centered values}
+\usage{
+\method{predict}{demean}(object, newdata = NULL, ...)
+}
+\arguments{
+\item{object}{an object of class \code{idframe}}
+
+\item{newdata}{An optional idframe object in which to look for variables with which
+to predict. If ommited, the original idframe object is used}
+}
+\value{
+an \code{idframe} object
+}
+\description{
+Center an \code{idframe} object based on the training center means
+}
+\examples{
+## Examples for train and test sets
+data(cstr)
+splitList <- dataPartition(cstr,p=0.6)
+train <- splitList$estimation # training set
+test <- splitList$validation # testing set
+fit.mean <- demean(train)
+train_demean <- predict(fit.mean)
+test_demean <- predict(fit,newdata=test)
+}
+