Skip to content

Commit

Permalink
correlation=FALSE in summary.glm
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/branches/R-0-61-patches@897 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
pd committed Mar 13, 1998
1 parent d630cc7 commit f519dfc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES
@@ -1,6 +1,9 @@
CHANGES IN R VERSION 0.61.2

BUG FIXES

o Output of correlation matrix in summary.glm() no longer default

o Docs for predict.lm

o Subset and transform functions (to make life with dataframes
Expand Down
2 changes: 1 addition & 1 deletion src/library/base/R/glm
Expand Up @@ -455,7 +455,7 @@ stat.anova <- function(table, test, scale, df.scale, n)


summary.glm <- function(object, dispersion = NULL,
correlation = TRUE, na.action=na.omit)
correlation = FALSE, na.action=na.omit)
{
est.disp<-FALSE
if(is.null(dispersion)) # calculate dispersion if needed
Expand Down
2 changes: 1 addition & 1 deletion src/library/base/man/glm.Rd
Expand Up @@ -7,7 +7,7 @@ glm(formula, family=gaussian, data, weights, subset,
trace=F),
model=T, method=glm.fit, x=F, y=T)

summary(glm.obj, dispersion=NULL, correlation=TRUE,
summary(glm.obj, dispersion=NULL, correlation=FALSE,
na.action=na.omit)
anova(glm.obj, \dots)

Expand Down

0 comments on commit f519dfc

Please sign in to comment.