Computes intermediate quantities for evaluating basis functions when no interpolation is used. Basis functions are evaluated at the exact covariate and response grid locations.
pre_comput_nothing(
normalizedData,
predictorNames,
responseName,
nIntegral = 101
)A list of intermediate quantities used in SLGP basis function computation:
nodes: all points where basis functions are evaluated,
indNodesToIntegral: index mapping nodes to response bins,
indSamplesToNodes: index mapping observations to nodes,
indSamplesToPredictor: index mapping observations to unique predictors,
weightSamplesToNodes: interpolation weights (equal to 1 here).
A data frame with values already normalized to \([0,1]\).
Character vector of covariate column names.
Name of the response variable.
Integer, number of points used to discretize the response domain.