predict.BGLR: Model Predictions

View source: R/methods.R

predict.BGLRR Documentation

Model Predictions

Description

extracts predictions from the results of BGLR function.

Usage

## S3 method for class 'BGLR'
predict(object, newdata, ...)

Arguments

object

An object of class BGLR.

newdata

Currently not supported, for new data you should assing missing value indicator (NAs) to the corresponding entries in the response vector (y).

...

Further arguments passed to or from other methods.

Author(s)

Gustavo de los Campos, Paulino Perez Rodriguez,

See Also

BGLR.

Examples


## Not run: 

setwd(tempdir())
library(BGLR)
data(wheat)
out=BLR(y=wheat.Y[,1],XL=wheat.X)
predict(out)


## End(Not run)


BGLR documentation built on May 12, 2022, 1:06 a.m.

Related to predict.BGLR in BGLR...