Skip to content

Indexable model #167

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
33 changes: 33 additions & 0 deletions src/statsmodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -196,3 +196,36 @@ function Base.show(io::IO, model::TableModels)
end
end
end

"""
getparams(model::TableModels, t::AbstractTerm)

Returns a named tuple of parameters corresponding to `t`.

Examples:

julia> t = (y = rand(100), x = rand(100), b = rand(Bool, 100));
julia> m = lm(@formula(y ~ x + x & b), t);
julia> getparams(m, Term(:x))

"""
function getparams(model::TableModels, t::AbstractTerm)
m = model.mf.f.rhs.terms
i = 1
for x in m
@show typeof(x)
if t isa InteractionTerm && x isa InteractionTerm
xterms = map(s -> s.sym, x.terms)
tterms = map(s -> s.sym, t.terms)
xterms == tterms && break
elseif t isa InterceptTerm{true} && x isa InterceptTerm{true}
break
elseif x isa CategoricalTerm || x isa ContinuousTerm
x.sym == t.sym && break
else
nothing
end
i += 1
end
return (coefname = coefnames(model)[i], coef = coef(model)[i], stderror = stderror(model)[i])
end