@@ -36,25 +36,25 @@ fRegress.numeric <- function(y, xfdlist, betalist, wt=NULL,
36
36
# supplied, confidence limits are computed, otherwise not.
37
37
# SIGMAE ... Estimate of the covariances among the residuals. This
38
38
# can only be estimated after a preliminary analysis
39
- # with FREGRESS .
39
+ # with .
40
40
# RETURNMATRIX ... If False, a matrix in sparse storage model can be returned
41
41
# from a call to function BsplineS. See this function for
42
42
# enabling this option.
43
43
#
44
- # Returns FREGRESSLIST ... A list containing seven members with names:
45
- # yfdPar ... first argument of FREGRESS
46
- # xfdlist ... second argument of FREGRESS
47
- # betalist ... third argument of FREGRESS
44
+ # Returns LIST ... A list containing seven members with names:
45
+ # yfdPar ... first argument of
46
+ # xfdlist ... second argument of
47
+ # betalist ... third argument of
48
48
# betaestlist ... estimated regression functions
49
49
# yhatfdobj ... functional data object containing fitted functions
50
50
# Cmatinv ... inverse of the coefficient matrix, needed for
51
- # function FREGRESS .STDERR that computes standard errors
51
+ # function .STDERR that computes standard errors
52
52
# wt ... weights for observations
53
53
# df ... degrees of freedom for fit
54
- # This list object is converted to a class with the name "fRegress "
55
- # function predict.fRegress is an example of a method that can be called simply
56
- # as predict(fRegressList ). In this call fRegressList can be any object of the
57
- # "fRegress ".
54
+ # This list object is converted to a class with the name ""
55
+ # function predict. is an example of a method that can be called simply
56
+ # as predict(List ). In this call List can be any object of the
57
+ # "".
58
58
59
59
# Last modified 3 July 2020 by Jim Ramsay
60
60
@@ -411,7 +411,7 @@ fRegress.numeric <- function(y, xfdlist, betalist, wt=NULL,
411
411
# Set up output list object
412
412
# -------------------------------------------------------------------
413
413
414
- fRegressList <-
414
+ List <-
415
415
list (yfdPar = yfdPar ,
416
416
xfdlist = xfdlist ,
417
417
betalist = betalist ,
@@ -617,7 +617,7 @@ fRegress.numeric <- function(y, xfdlist, betalist, wt=NULL,
617
617
# Set up output list object
618
618
# -----------------------------------------------------------------------
619
619
620
- fRegressList <-
620
+ List <-
621
621
list (yfdPar = yfdPar ,
622
622
xfdlist = xfdlist ,
623
623
betalist = betalist ,
@@ -630,7 +630,7 @@ fRegress.numeric <- function(y, xfdlist, betalist, wt=NULL,
630
630
gcv = GCV )
631
631
}
632
632
633
- class(fRegressList ) <- " fRegress"
633
+ class(List ) <- " fRegress"
634
634
635
635
return (fRegressList )
636
636
0 commit comments