Nothing
#*******************************************************************************
#
# Estimation for Multivariate Normal Data with Monotone Missingness
# Copyright (C) 2007, University of Cambridge
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Questions? Contact Robert B. Gramacy (bobby@statslab.cam.ac.uk)
#
#*******************************************************************************
## regress.ls:
##
## fit y2 ~ y1 using LM (i.e., least squares)
'regress.ls' <-
function(y1, y2, verb=0)
{
## number of regressions
numreg <- ncol(y2); if(is.null(numreg)) numreg <- 1
## add to progress meter
if(verb > 0) cat(paste("using lsr ", sep=""))
## standard least-squares regression
reglst <- lm(y2 ~ y1)
bvec <- matrix(reglst$coef, ncol=numreg)
res <- matrix(reglst$resid, ncol=numreg)
actual.method <- "lsr"
ncomp <- rep(NA, numreg)
return(list(method=actual.method, ncomp=ncomp, b=bvec, res=res))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.