| .bf_case_gauss_gee | R Documentation |
When the response is Gaussian with identity link and a working
correlation structure is present, the whitened system
\mathbf{V}^{-1/2}\mathbf{X} is not block-diagonal, so
partition-wise backfitting does not apply.
This function performs a single closed-form solve that replicates
get_B Path 1a but in the backfitting context.
.bf_case_gauss_gee(
X,
y,
K,
p_expansions,
order_list,
VhalfInv,
Lambda,
L_partition_list,
unique_penalty_per_partition,
A,
constraint_values,
spline_cols,
flat_cols,
observation_weights,
quadprog = FALSE,
qp_Amat = NULL,
qp_bvec = NULL,
qp_meq = NULL,
qp_score_function = NULL,
tol = 1e-08,
parallel_eigen = FALSE,
parallel_qr = FALSE,
cl = NULL,
chunk_size = NULL,
num_chunks = NULL,
rem_chunks = NULL,
initial_active_ineq = integer(0),
include_warnings = TRUE,
verbose = FALSE,
...
)
X |
List of |
y |
List of |
K |
Integer; number of interior knots. |
p_expansions |
Integer; columns per partition. |
order_list |
List of observation-index vectors by partition. |
VhalfInv |
|
Lambda |
Shared penalty matrix. |
L_partition_list |
Partition-specific penalty matrices. |
unique_penalty_per_partition |
Logical. |
A |
Full constraint matrix. |
constraint_values |
List of constraint RHS vectors. |
spline_cols, flat_cols |
Integer vectors of column indices. |
quadprog |
Logical; whether inequality refinement is active. |
qp_Amat, qp_bvec, qp_meq |
QP constraint specification. |
tol |
Numeric tolerance. |
parallel_eigen, cl, chunk_size, num_chunks, rem_chunks |
Parallel arguments used by the Woodbury gate. |
include_warnings, verbose |
Logical. |
In other words, this begins from the dense correlated solve on the pooled
coefficient space. When inequality constraints are present and Woodbury
acceleration is available, the helper then attempts the same
partition-wise Woodbury active-set refinement used by get_B().
If that path is unavailable or fails, it falls back to dense
solve.QP on the whitened system.
A named list:
List of K+1 spline coefficient vectors.
Numeric vector of flat coefficients.
List of K+1 full per-partition coefficient
vectors.
QP or active-set metadata, or NULL.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.