nobs.GNARfit: Function to return the number of observations input to...

View source: R/nobs.GNARfit.R

nobs.GNARfitR Documentation

Function to return the number of observations input to GNARfit objects

Description

nobs returns the number of obervations (T) of the input multivariate time series in the GNARfit function.

Usage

## S3 method for class 'GNARfit'
nobs(object,...)

Arguments

object

the output of a GNARfit or GNARpredict call

...

additional arguments, unused here.

Details

S3 method for class "GNARfit".

Value

An integer specifying the number of rows in the input vts to the GNARfit function.

Examples

#observations of example fiveVTS
nobs(GNARfit())
#check this is the same as number of rows in fiveVTS
all.equal(nobs(GNARfit()), nrow(fiveVTS))

GNAR documentation built on April 28, 2023, 1:12 a.m.

Related to nobs.GNARfit in GNAR...