fit_penalize_approx_quantile_model.Rd
Compute quantile regression via accelerated gradient descent using Huber approximation, warm start based on data subset
fit_penalize_approx_quantile_model(
X,
y,
X_sub,
y_sub,
tau,
init_beta,
mu = 1e-15,
maxiter = 100000L,
beta_tol = 1e-04,
check_tol = 1e-06,
intercept = 1L,
num_samples = 1000,
warm_start = 1L,
scale = 1L
)
design matrix
outcome vector
subset of X matrix to use for "warm start" regression
subset of y to use for "warm start" regression
target quantile
initial guess at beta
neighborhood over which to smooth
maximum number of iterations to run
tolerance for largest element of gradient, used for early stopping
loss function change tolerance for early stopping
location of the intercept column, using R's indexing
number of samples used for subset of matrix used for warm start
integer indicating whether to "warm up" on a subsample of the data
whether to scale x & y variables