R/createRDBESEstObject.R
createRDBESEstObject.Rd
Creates an rdbesEStObject from prepared RDBES data
createRDBESEstObject(
rdbesPrepObject,
hierarchyToUse = NULL,
stopTable = NULL,
verbose = FALSE,
strict = TRUE
)
The prepared RDBES object that should be used to create an estimation object
The upper RDBES hiearchy to use
(Optional) The table to stop at in the RDBES hierarchy. If specified, only tables up to and including this table will be included in the resulting RDBESEstObject. The default is NULL, which means all tables in the hierarchy will be included.
(Optional) Set to TRUE if you want informative text printed out, or FALSE if you don't. The default is FALSE.
(Optional) This function validates its input data - should the validation be strict? The default is TRUE.
An object of class RDBESEstObject ready for use in design based estimation
An object of class RDBESEstObject ready for use in design based estimation
#Creates an rdbesEStObject from prepared RDBES data
myH1EstObj <- createRDBESEstObject(H1Example, 1, "SA")
myH1EstObj <- createRDBESEstObject(H1Example, 1, "SA")