select_cste_bin: Select the optimal tuning parameters in CSTE estimation for...

Description Usage Arguments Value References See Also

View source: R/select_cste_bin.R

Description

select lasso penalty parameter λ for β_1 and β_2 in CSTE estimation.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
select_cste_bin(
  x,
  y,
  z,
  lam_seq,
  beta_ini = NULL,
  nknots = 1,
  max.iter = 2000,
  eps = 0.001
)

Arguments

x

samples of covariates which is a n*p matrix.

y

samples of binary outcome which is a n*1 vector.

z

samples of treatment indicator which is a n*1 vector.

lam_seq

a sequence for the choice of λ.

beta_ini

initial values for (β_1', β_2')', default value is NULL.

nknots

number of knots for the B-spline for estimating g_1 and g_2.

max.iter

maximum iteration for the algorithm.

eps

numeric scalar ≥q 0, the tolerance for the estimation of β_1 and β_2.

Value

A list which includes

References

Guo W., Zhou X. and Ma S. (2021). Estimation of Optimal Individualized Treatment Rules Using a Covariate-Specific Treatment Effect Curve with High-dimensional Covariates, Journal of the American Statistical Association, 116(533), 309-321

See Also

cste_bin


CSTE documentation built on Dec. 16, 2021, 9:07 a.m.

Related to select_cste_bin in CSTE...