View source: R/bimets_ts_functions.R
NOELS | R Documentation |
This function returns a numerical array built with the length of each input argument. Input arguments can be numerical or time series. Input arguments can also be string variables.
NOELS(...)
... |
List of input arguments. This function accepts input of class |
This function returns an array of class c()
.
TIMESERIES
is.bimets
BIMETS indexing
TSDATES
LOCS
NAMELIST
INTS
TSINFO
TSLOOK
TABIT
out_NOELS<-NOELS(c(1,2,3,4),c(5,6,7))
print(out_NOELS) #print c(4,3)
out_NOELS<-NOELS(TSERIES(c(1,2,3,4),START=c(2000,1),FREQ=1),c(5,6,7))
print(out_NOELS) #print c(4,3)
out_NOELS<-NOELS('aaa','bb')
print(out_NOELS) #print c(3,2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.