Extract Coefficients from bbnp_regression Object
coef.bbnp_regression.RdExtracts the estimated bias bound parameters and bandwidth
Usage
# S3 method for class 'bbnp_regression'
coef(object, ...)Examples
# \donttest{
X <- rnorm(100)
Y <- X^2 + rnorm(100)
fit <- biasBound_condExpectation(Y, X, h = 0.1)
#> Warning: No feasible xi_n passed Schennach's test in interval [0.9925, 3.1385]. Using theoretical upper bound xi_ub = 3.1385. This may indicate insufficient signal or inappropriate xi bounds.
coef(fit)
#> A r B h
#> 0.8065401 2.4639173 1.3640430 0.1000000
# }