Skip to content

Commit

Permalink
Merge 13842b4 into aa64239
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed Nov 20, 2018
2 parents aa64239 + 13842b4 commit 008bf87
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/statmodels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@ Return the names of the coefficients.
coefnames(obj::StatisticalModel) = error("coefnames is not defined for $(typeof(obj)).")

"""
coeftable(obj::StatisticalModel)
coeftable(obj::StatisticalModel; level::Real=0.95)
Return a table of class `CoefTable` with coefficients and related statistics.
`level` determines the level for confidence intervals (by default, 95%).
"""
coeftable(obj::StatisticalModel) = error("coeftable is not defined for $(typeof(obj)).")

"""
confint(obj::StatisticalModel)
confint(obj::StatisticalModel; level::Real=0.95)
Compute confidence intervals for coefficients.
Compute confidence intervals for coefficients, with confidence level `level` (by default 95%).
"""
confint(obj::StatisticalModel) = error("confint is not defined for $(typeof(obj)).")

Expand Down

0 comments on commit 008bf87

Please sign in to comment.