gam.side package:mgcv R Documentation _I_d_e_n_t_i_f_i_a_b_i_l_i_t_y _s_i_d_e _c_o_n_d_i_t_i_o_n_s _f_o_r _a _G_A_M _D_e_s_c_r_i_p_t_i_o_n: GAM formulae with repeated variables only correspond to identifiable models given some side conditions. This routine works out appropriate side conditions, based on zeroing redundant parameters. It is called from 'mgcv:::gam.setup' and is not intended to be called by users. The method identifies nested and repeated variables by their names, but numerically evaluates which constraints need to be imposed. Constraints are always applied to smooths of more variables in preference to smooths of fewer variables. The numerical approach allows appropriate constraints to be applied to models constructed using any smooths, including user defined smooths. _U_s_a_g_e: gam.side(sm,Xp,tol=.Machine$double.eps^.5) _A_r_g_u_m_e_n_t_s: sm: A list of smooth objects as returned by 'smooth.construct'. Xp: The model matrix for the strictly parametric model components. tol: The tolerance to use when assessing linear dependence of smooths. _D_e_t_a_i_l_s: Models such as 'y~s(x)+s(z)+s(x,z)' can be estimated by 'gam', but require identifiability constraints to be applied, to make them identifiable. This routine does this, effectively setting redundant parameters to zero. When the redundancy is between smooths of lower and higher numbers of variables, the constraint is always applied to the smooth of the higher number of variables. Dependent smooths are identified symbolically, but which constraints are needed to ensure identifiability of these smooths is determined numerically, using 'fixDependence'. This makes the routine rather general, and not dependent on any particular basis. 'Xp' is used to check whether there is a constant term in the model (or columns that can be linearly combined to give a constant). This is because centred smooths can appear independent, when they would be dependent if there is a constant in the model, so dependence testing needs to take account of this. _V_a_l_u_e: A list of smooths, with model matrices and penalty matrices adjusted to automatically impose the required constraints. Any smooth that has been modified will have an attribute '"del.index"', listing the columns of its model matrix that were deleted. This index is used in the creation of prediction matrices for the term. _A_u_t_h_o_r(_s): Simon N. Wood simon.wood@r-project.org _E_x_a_m_p_l_e_s: set.seed(7) dat <- gamSim(n=400,scale=2) ## simulate data ## estimate model with redundant smooth interaction... b<-gam(y~s(x0)+s(x1)+s(x0,x1)+s(x2),data=dat) plot(b,pages=1) ## Simulate data with real interation... dat <- gamSim(2,n=500,scale=.1) old.par<-par(mfrow=c(2,2)) ## a fully nested tensor product example b<-gam(y~s(x,bs="cr",k=6)+s(z,bs="cr",k=6)+te(x,z,k=6), data=dat$data) plot(b) par(old.par) rm(dat)