Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add residuals method for GLM #499

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
8625214
add residuals method for GLM
palday Sep 20, 2022
30a77ab
set default to deviance residuals
palday Sep 20, 2022
92660be
Apply suggestions from code review
palday Sep 21, 2022
ca6342b
restore whitespace in f-tests
palday Sep 21, 2022
66325eb
add in tests for other families
palday Sep 21, 2022
ffd7c97
update doctests
palday Sep 29, 2022
d8e0434
Merge branch 'master' of github.com:JuliaStats/GLM.jl into pa/resid
palday Sep 29, 2022
e90aad8
Merge branch 'master' of github.com:JuliaStats/GLM.jl into pa/resid
palday Nov 11, 2022
9480b0c
Merge branch 'master' of github.com:JuliaStats/GLM.jl into pa/resid
palday Dec 3, 2022
613f5fe
add code for pearson
palday Dec 8, 2022
476fc6f
Merge branch 'master' of github.com:JuliaStats/GLM.jl into pa/resid
palday Dec 8, 2022
dd491b5
whitespace
palday Dec 8, 2022
5be6314
whitespace
palday Dec 8, 2022
b58c3bd
whitespace
palday Dec 8, 2022
3cb863e
again
palday Dec 8, 2022
cfa33e0
Geometric and negative binomial
palday Dec 9, 2022
ee87fc7
residuals for normal
palday Dec 9, 2022
dfa5f15
Update test/runtests.jl
mousum-github Jan 29, 2023
781ecd1
Merge branch 'master' of github.com:JuliaStats/GLM.jl into pa/resid
palday Apr 14, 2023
8eb70a8
Update src/glmfit.jl
mousum-github May 4, 2023
c8b69b6
Update src/glmfit.jl
mousum-github May 4, 2023
ae0b680
Update src/glmfit.jl
mousum-github May 4, 2023
88345d6
Update test/runtests.jl
mousum-github May 4, 2023
f55713a
Update test/runtests.jl
mousum-github May 4, 2023
64eda0b
Update test/runtests.jl
mousum-github May 4, 2023
6bd8980
Update test/runtests.jl
mousum-github May 4, 2023
3445319
Update test/runtests.jl
mousum-github May 4, 2023
fe6800b
Update test/runtests.jl
mousum-github May 4, 2023
282e321
Update test/runtests.jl
mousum-github May 4, 2023
904e158
Update test/runtests.jl
mousum-github May 4, 2023
1a1cbeb
Update test/runtests.jl
mousum-github May 4, 2023
d90bab5
Update test/runtests.jl
mousum-github May 4, 2023
e9865be
Update test/runtests.jl
mousum-github May 4, 2023
c3fbc4a
Merge branch 'master' of github.com:JuliaStats/GLM.jl into pa/resid
palday Sep 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,14 @@ Using a `CategoricalVector` constructed with `categorical` or `categorical!`:
```jldoctest categorical
julia> using CategoricalArrays, DataFrames, GLM, StableRNGs


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

? Same for other seemingly unrelated line additions here

julia> rng = StableRNG(1); # Ensure example can be reproduced


julia> data = DataFrame(y = rand(rng, 100), x = categorical(repeat([1, 2, 3, 4], 25)));



julia> lm(@formula(y ~ x), data)
StatsModels.TableRegressionModel{LinearModel{GLM.LmResp{Vector{Float64}}, GLM.DensePredChol{Float64, LinearAlgebra.CholeskyPivoted{Float64, Matrix{Float64}, Vector{Int64}}}}, Matrix{Float64}}

Expand All @@ -105,8 +108,10 @@ Using [`contrasts`](https://juliastats.github.io/StatsModels.jl/stable/contrasts
```jldoctest categorical
julia> using StableRNGs


julia> data = DataFrame(y = rand(StableRNG(1), 100), x = repeat([1, 2, 3, 4], 25));


julia> lm(@formula(y ~ x), data, contrasts = Dict(:x => DummyCoding()))
StatsModels.TableRegressionModel{LinearModel{GLM.LmResp{Vector{Float64}}, GLM.DensePredChol{Float64, LinearAlgebra.CholeskyPivoted{Float64, Matrix{Float64}, Vector{Int64}}}}, Matrix{Float64}}

Expand All @@ -130,12 +135,16 @@ which computes an F-test between each pair of subsequent models and reports fit
```jldoctest
julia> using DataFrames, GLM, StableRNGs


julia> data = DataFrame(y = (1:50).^2 .+ randn(StableRNG(1), 50), x = 1:50);


julia> ols_lin = lm(@formula(y ~ x), data);


julia> ols_sq = lm(@formula(y ~ x + x^2), data);


julia> ftest(ols_lin.model, ols_sq.model)
F-test: 2 models fitted on 50 observations
─────────────────────────────────────────────────────────────────────────────────
Expand Down
32 changes: 32 additions & 0 deletions src/glmfit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -731,3 +731,35 @@ function checky(y, d::Binomial)
end
return nothing
end

# need to add :pearson
const _RESIDUAL_TYPES = [:deviance, :response, :working]
palday marked this conversation as resolved.
Show resolved Hide resolved

"""
residuals(model::GeneralizedLinearModel; type=:deviance)

Return the residuals of a GLM.

Supported values for `type` are:
- `:deviance` (the default): the signed square root of the element-wise
contribution to the deviance
- `:response`: the difference between the observed and fitted values
- `:working`: working residuals (used during the IRLS process)
palday marked this conversation as resolved.
Show resolved Hide resolved
"""
function residuals(model::GeneralizedLinearModel; type=:deviance)
type in _RESIDUAL_TYPES ||
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not use the else in the conditional to catch unsupported types rather than maintaining a separate list of types? Users can consult the docstring if they're not sure what's supported. The only other place the constant is used is in the tests where you loop over it. You could just move the list there where it's needed.

throw(ArgumentError("Unsupported type `$(type)``; supported types are" *
"$(_RESIDUAL_TYPES)"))
# TODO: add in optimized method for normal with identity link
if type == :response
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
return response(model) - fitted(model)
elseif type == :deviance
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
# XXX I think this might be the same as
# 2 * wrkresid, but I'm not 100% sure if that holds across families
Comment on lines +867 to +868
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dmbates Does this relationship hold across families?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use the devresid function here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it seems that that function is lower level and used in the computation of the associated field rather returning said field.

return sign.(response(model) .- fitted(model)) .* sqrt.(model.rr.devresid)
elseif type == :working
return model.rr.wrkresid
else
error("An error has occurred. Please file an issue on GitHub.")
end
end
palday marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion src/glmtools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ function loglik_obs end
loglik_obs(::Bernoulli, y, μ, wt, ϕ) = wt*logpdf(Bernoulli(μ), y)
loglik_obs(::Binomial, y, μ, wt, ϕ) = logpdf(Binomial(Int(wt), μ), Int(y*wt))
loglik_obs(::Gamma, y, μ, wt, ϕ) = wt*logpdf(Gamma(inv(ϕ), μ*ϕ), y)
# In Distributions.jl, a Geometric distribution characterizes the number of failures before
# In Distributions.jl, a Geometric distribution characterizes the number of failures before
nalimilan marked this conversation as resolved.
Show resolved Hide resolved
# the first success in a sequence of independent Bernoulli trials with success rate p.
# The mean of Geometric distribution is (1 - p) / p.
# Hence, p = 1 / (1 + μ).
Expand Down
88 changes: 87 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# NB: trailing white space must be preserved in the tests for `show`
# If your editor is set to automatically strip it, this will cause problems

using CategoricalArrays, CSV, DataFrames, LinearAlgebra, SparseArrays, StableRNGs,
Statistics, StatsBase, Test, RDatasets
using GLM
Expand Down Expand Up @@ -100,7 +103,11 @@ end
@test isapprox(loglikelihood(lm_model), -4353.946729075838)
@test isapprox(loglikelihood(glm_model), -4353.946729075838)
@test isapprox(nullloglikelihood(lm_model), -4984.892139711452)
@test isapprox(mean(residuals(lm_model)), -5.412966629787718)
@test isapprox(mean(residuals(lm_model)), -5.412966629787718)

# this should be elementwise true (which is a stronger condition than
# vectors being approximately equal) the so we test elementwise
@test all(residuals(glm_model; type=:response) .≈ residuals(lm_model))
end

@testset "rankdeficient" begin
Expand Down Expand Up @@ -294,6 +301,24 @@ dobson = DataFrame(Counts = [18.,17,15,20,10,20,25,13,12],
@test isapprox(bic(gm1), 57.74744128863877)
@test isapprox(coef(gm1)[1:3],
[3.044522437723423,-0.45425527227759555,-0.29298712468147375])

@test isapprox(residuals(gm1; type=:deviance),
[-0.6712492, 0.9627236, -0.1696466, -0.2199851, -0.9555235,
1.049386, 0.8471537, -0.09167147, -0.9665637];
atol=1e-6)
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
# @test isapprox(residuals(gm1; type=:pearson),
# [-0.6546537, 1.004158, -0.1684304, -0.2182179,
# -0.9128709, 1.094797, 0.8728716, -0.09128709, -0.9263671];
# atol=1e-6)
palday marked this conversation as resolved.
Show resolved Hide resolved
@test isapprox(residuals(gm1; type=:response),
[-3, 3.666667, -0.6666667, -1, -3.333333,
4.333333, 4, -0.3333333, -3.666667];
atol=1e-6)
@test isapprox(residuals(gm1; type=:working),
[-0.1428571, 0.275, -0.04255319, -0.04761905,
-0.25, 0.2765957, 0.1904762, -0.025, -0.2340426];
atol=1e-6)

end

## Example from http://www.ats.ucla.edu/stat/r/dae/logit.htm
Expand All @@ -315,6 +340,34 @@ admit.rank = categorical(admit.rank)
@test isapprox(coef(gm2),
[-3.9899786606380756, 0.0022644256521549004, 0.804037453515578,
-0.6754428594116578, -1.340203811748108, -1.5514636444657495])
res = residuals(gm2; type=:deviance)
# values from R
@test isapprox(res[1:10],
[-0.6156283, 1.568695, 0.7787919, 1.856779, -0.5019254,
1.410201, 1.318558, -0.6994666, 1.792076, -1.207922]; atol=1e-6)
@test isapprox(res[390:400],
[-1.015303, 1.352001, 1.199244, 1.734904, 1.283653, 1.656921,
-1.158223, -0.6015442, -0.6320556, -1.116244, -0.8458358]; atol=1e-6)
res = residuals(gm2; type=:response)
# values from R
@test isapprox(res[1:10],
[-0.1726265, 0.707825, 0.2615918, 0.8216154, -0.1183539,
0.6300301, 0.5807538, -0.2170033, 0.7992648, -0.5178682], atol=1e-6)
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
@test isapprox(res[390:400],
[-0.4027505, 0.5990641, 0.512806, 0.7779709, 0.5612748,
0.7465767, -0.48867, -0.1655043, -0.1810622, -0.4636674, -0.3007306]; atol=1e-6)
# res = residuals(gm2; type=:pearson)
# @test isapprox(res[1:10],
# [-0.4567757, 1.556473, 0.5952011, 2.146128, -0.3663905,
# 1.304961, 1.176959, -0.5264452, 1.995417, -1.036398]; atol=1e-6)
# @test isapprox(res[390:400],
# [-0.8211834, 1.22236, 1.025949, 1.871874, 1.131075,
# 1.716382, -0.977591, -0.4453409, -0.4702063, -0.9297929]; atol=1e-6)
palday marked this conversation as resolved.
Show resolved Hide resolved
# less extensive test here because it's just grabbing the IRLS values, which are already
# extensively tested
@test isapprox(residuals(gm2; type=:working)[1:10],
[-1.208644, 3.422607, 1.354264, 5.605865, -1.134242,
2.702922, 2.385234, -1.277145, 4.981688, -2.074122]; atol=1e-5)
end

@testset "Bernoulli ProbitLink" begin
Expand Down Expand Up @@ -472,6 +525,22 @@ clotting = DataFrame(u = log.([5,10,15,20,30,40,60,80,100]),
@test isapprox(coef(gm8), [-0.01655438172784895,0.01534311491072141])
@test isapprox(GLM.dispersion(gm8.model, true), 0.002446059333495581, atol=1e-6)
@test isapprox(stderror(gm8), [0.00092754223, 0.000414957683], atol=1e-6)

@test isapprox(residuals(gm8; type=:response),
[-4.859041, 4.736111, 1.992869, 0.9973619, -1.065779,
0.02779383, -0.614323, -0.7318223, -0.4831699]; atol=1e-6)
@test isapprox(residuals(gm8; type=:working),
[0.0003219114, -0.001669384, -0.001245099, -0.0008626359,
0.001353047, -4.456918e-05, 0.001314963, 0.001879625, 0.001414318];
atol=1e-6)
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
@test isapprox(residuals(gm8; type=:deviance),
[-0.04008349, 0.08641118, 0.04900896, 0.02904992,
-0.03846595, 0.001112578, -0.02869586, -0.03755713, -0.0263724];
atol=1e-6)
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
# @test isapprox(residuals(gm8; type=:pearson),
# [-0.03954973, 0.08891786, 0.04981284, 0.0293319,
# -0.03797433, 0.001112991, -0.02842204, -0.03708843, -0.02614107];
# atol=1e-6)
palday marked this conversation as resolved.
Show resolved Hide resolved
end

@testset "InverseGaussian" begin
Expand All @@ -490,6 +559,21 @@ end
@test isapprox(coef(gm8a), [-0.0011079770504295668,0.0007219138982289362])
@test isapprox(GLM.dispersion(gm8a.model, true), 0.0011008719709455776, atol=1e-6)
@test isapprox(stderror(gm8a), [0.0001675339726910311,9.468485015919463e-5], atol=1e-6)

@test isapprox(residuals(gm8a; type=:response),
[-18.21078, 15.52523, 7.639634, 4.20793, -0.2428536,
-0.3585344, -2.263445, -3.056904, -3.240284]; atol=1e-5)
@test isapprox(residuals(gm8a; type=:working),
[1.441199e-05, -0.0004052051, -0.0003766424, -0.0002882584, 2.402242e-05,
4.397323e-05, 0.0003595653, 0.0005697418, 0.0006762887];
atol=1e-6)
andreasnoack marked this conversation as resolved.
Show resolved Hide resolved
@test isapprox(residuals(gm8a; type=:deviance),
[-0.01230767, 0.04799467, 0.03430759, 0.02309913, -0.001715577,
-0.002827721, -0.02123177, -0.03179512, -0.0359572];
atol=1e-6)
# @test isapprox(residuals(gm8a; type=:pearson),
# [-0.01145543, 0.05608432, 0.03793027, 0.02462693, -0.001707913,
# -0.00280766, -0.02017246, -0.02950971, -0.03310111]; atol=1e-6)
palday marked this conversation as resolved.
Show resolved Hide resolved
end

@testset "Gamma LogLink" begin
Expand Down Expand Up @@ -1049,6 +1133,8 @@ end
ft1a = ftest(mod, nullmod)
@test isnan(ft1a.pval[1])
@test ft1a.pval[2] ≈ 2.481215056713184e-8
# NB: trailing white space must be preserved in the tests for `show`
# If your editor is set to automatically strip it, this will cause problems
Comment on lines +1476 to +1477
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# NB: trailing white space must be preserved in the tests for `show`
# If your editor is set to automatically strip it, this will cause problems

You already added this comment at the top of the file

if VERSION >= v"1.6.0"
@test sprint(show, ft1a) == """
F-test: 2 models fitted on 12 observations
Expand Down