aggStrata2.Rd
This function builds the dataframe "strata" considering as input a given domain in the sampling frame. In case a dataframe "model" is given, the anticipated variance in the strata for each target variable is calculated
aggrStrata2(dataset,
model=NULL,
vett,
dominio)
This is the name of the dataframe containing the sample data, or the frame data. It is strictly required that auxiliary information is organised in variables named as X1, X2, ... , Xm (there should be at least one of them) and the target variables are denoted by Y1, Y2, ... , Yn. In addition, in case of sample data, a variable named 'WEIGHT' must be present in the dataframe, containing the weigths associated to each sampling unit
Dataframe with the parameters of the model(s) to be used to calculate anticipated variance. Default is null.
vector of values indicating how the units in the dataset must be aggregated in strata.
Value indicating the domain in the dataset to be processed.
A dataframe containing strata
if (FALSE) {
strata <- aggrStrata2(dataset=frame,
model=NULL,
vett,
dominio=1)
}