View source: R/dexpectilizeVecR.R
dexpectilizeVecR | R Documentation |
This function is part of the erfe package. It de-expectilizes a vector of data, which means subtracting the expectile of level τ\in (0, 1) of the vector to the vector itself. When τ=0.5 then the process of de-expectilizing corresponds to the process of deamining the vector. That is, subtracting the mean of the vector from the vector itself.
dexpectilizeVecR(yvec, aweight, panSizeVec)
yvec |
Numeric vector to de-expectilize. |
aweight |
Numeric vector of individual asymmetric weight. |
panSizeVec |
Numeric vector of individual panel size. |
Return a de-expectilized vector of the vector yvec.
Amadou Barry, barryhafia@gmail.com
Barry, Amadou, Oualkacha, Karim, and Charpentier Arthur. (2022). Weighted asymmetric least squares regression with fixed-effects. arXiv preprint arXiv:2108.04737
set.seed(13) temps_obs <- 5 # panel size n_subj <- 50 # sample size id <- rep(1:n_subj, each = temps_obs) asym <- 0.5 panSizeVec <- unname(unlist(lapply(split(id, id), function(x) length(x)))) yvec <- c(mvtnorm::rmvnorm(n_subj, sigma = diag(rep(1,temps_obs)))) aweight <- rep(asym, temps_obs * n_subj) aweight[!(yvec > mean(yvec))] = 1 - asym dexpectilizeVecR(yvec, aweight, panSizeVec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.