Rev 7014 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{smooth.construct.sos.smooth.spec}\alias{smooth.construct.sos.smooth.spec}\alias{Predict.matrix.sos.smooth}\alias{Spherical.Spline}%- Also NEED an `\alias' for EACH other topic documented here.\title{Splines on the sphere}\description{\code{\link{gam}} can use isotropic smooths on the sphere, via terms like\code{s(la,lo,bs="sos",m=2,k=100)}. There must be exactly 2 arguments to such a smooth.The first is taken to be latitude (in degrees) and the second longitude (in degrees).\code{m} (default 0) is an integer in the range -1 to 4 determining the order of the penalty used.For \code{m>0}, \code{(m+2)/2} is the penalty order, with \code{m=2} equivalent to the usual secondderivative penalty. \code{m=0} signals to use the 2nd order spline on the sphere, computed byWendelberger's (1981) method. \code{m = -1} results in a \code{\link{Duchon.spline}} beingused (with m=2 and s=1/2), following an unpublished suggestion of Jean Duchon.\code{k} (default 50) is the basis dimension.}\usage{\method{smooth.construct}{sos.smooth.spec}(object, data, knots)\method{Predict.matrix}{sos.smooth}(object, data)}\arguments{\item{object}{a smooth specification object, usually generated by a term \code{s(...,bs="sos",...)}.}\item{data}{a list containing just the data (including any \code{by} variable) required by this term,with names corresponding to \code{object$term} (and \code{object$by}). The \code{by} variableis the last element.}\item{knots}{a list containing any knots supplied for basis setup --- in same order and with same names as \code{data}.Can be \code{NULL}}}\value{ An object of class \code{"sos.smooth"}. In addition to the usual elements of asmooth class documented under \code{\link{smooth.construct}}, this object will contain:\item{Xu}{A matrix of the unique covariate combinations for this smooth (the basis is constructed by first strippingout duplicate locations).}\item{UZ}{The matrix mapping the parameters of the reduced rank spline back to the parameters of a full spline.}}\details{ For \code{m>0}, the smooths implemented here are based on the pseudosplines on the sphere of Wahba (1981)(there is a correction of table 1 in 1982, but the correction has a misprint in the definition of A --- the Agiven in the 1981 paper is correct). For \code{m=0} (default) then a second order spline on the sphere is used which is theanalogue of a second order thin plate spline in 2D: the computation is based on Chapter 4 of Wendelberger, 1981.Optimal low rank approximations are obtained using exactly the approach given in Wood (2003). For \code{m = -1} a smooth of the general type discussed in Duchon (1977) is used: the sphere is embedded in a 3D Euclidean space, butsmoothing employs a penalty based on second derivatives (so that locally as the smoothing parameter tendsto zero we recover a "normal" thin plate spline on the tangent space). This is an unpublished suggestion of JeanDuchon. \code{m = -2} is the same but with first derivative penalization.Note that the null space of the penalty is always the space of constant functions on the sphere, whatever the order of penalty.This class has a plot method, with 3 schemes. \code{scheme==0} plots one hemisphere of the sphere, projected onto a circle.The plotting sphere has the north pole at the top, and the 0 meridian running down the middle of the plot, and towardsthe viewer. The smoothing sphere is rotated within the plotting sphere, by specifying the location of its pole in theco-ordinates of the viewing sphere. \code{theta}, \code{phi} give the longitude and latitude of the smoothing sphere polewithin the plotting sphere (in plotting sphere co-ordinates). (You can visualize the smoothing sphere as a globe, free torotate within the fixed transparent plotting sphere.) The value of the smooth is shown by a heat map overlaid with acontour plot. lat, lon gridlines are also plotted.\code{scheme==1} is as \code{scheme==0}, but in black and white, without the image plot. \code{scheme>1} calls the defaultplotting method with \code{scheme} decremented by 2.}\seealso{\code{\link{Duchon.spline}}}\references{Wahba, G. (1981) Spline interpolation and smoothing on the sphere. SIAM J. Sci. Stat. Comput. 2(1):5-16Wahba, G. (1982) Erratum. SIAM J. Sci. Stat. Comput. 3(3):385-386.Wendelberger, J. (1981) PhD Thesis, University of Winsconsin.Wood, S.N. (2003) Thin plate regression splines. J.R.Statist.Soc.B 65(1):95-114}\author{ Simon Wood \email{simon.wood@r-project.org},with help from Grace Wahba (m=0 case) and Jean Duchon (m = -1 case).}\examples{require(mgcv)set.seed(0)n <- 400f <- function(la,lo) { ## a test function...sin(lo)*cos(la-.3)}## generate with uniform density on sphere...lo <- runif(n)*2*pi-pi ## longitudela <- runif(3*n)*pi-pi/2ind <- runif(3*n)<=cos(la)la <- la[ind];la <- la[1:n]ff <- f(la,lo)y <- ff + rnorm(n)*.2 ## test data## generate data for plotting truth...lam <- seq(-pi/2,pi/2,length=30)lom <- seq(-pi,pi,length=60)gr <- expand.grid(la=lam,lo=lom)fz <- f(gr$la,gr$lo)zm <- matrix(fz,30,60)require(mgcv)dat <- data.frame(la = la *180/pi,lo = lo *180/pi,y=y)## fit spline on sphere model...bp <- gam(y~s(la,lo,bs="sos",k=60),data=dat)## pure knot based alternative...ind <- sample(1:n,100)bk <- gam(y~s(la,lo,bs="sos",k=60),knots=list(la=dat$la[ind],lo=dat$lo[ind]),data=dat)b <- bpcor(fitted(b),ff)## plot results and truth...pd <- data.frame(la=gr$la*180/pi,lo=gr$lo*180/pi)fv <- matrix(predict(b,pd),30,60)par(mfrow=c(2,2),mar=c(4,4,1,1))contour(lom,lam,t(zm))contour(lom,lam,t(fv))plot(bp,rug=FALSE)plot(bp,scheme=1,theta=-30,phi=20,pch=19,cex=.5)}\keyword{models} \keyword{regression}%-- one or more ..