Skip to content

Commit

Permalink
add df.t in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lrberge committed Sep 13, 2023
1 parent fe688ca commit e78c6df
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@
^_AUTO_BENCHMARK$
^CONTRIBUTORS\.md$
^.vscode
^_DOCS$
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Description: Fast and user-friendly estimation of econometric models with multip
License: GPL-3
BugReports: https://github.com/lrberge/fixest/issues
URL: https://lrberge.github.io/fixest/, https://github.com/lrberge/fixest
SystemRequirements: C++11
VignetteBuilder: knitr
LazyData: true
RoxygenNote: 7.2.3
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

- fix bug "t value" displaying in lieu of "z value". Thanks to issue on [easystats/parameters #892](https://github.com/easystats/parameters/issues/892). Very ancient bug!

- fix bug in coefplot: now the confidence intervals use the Student t when appropriate (before that, only the Normal law was used). Thanks to Grant McDermott, [#409](https://github.com/lrberge/fixest/pull/408)

# fixest 0.11.1

## Documentation bug
Expand Down
4 changes: 4 additions & 0 deletions R/coefplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@
#' to [`graphics::abline`]. Example: `zero.par = list(col = "darkblue", lwd = 3)`.
#' @param pt.join Logical, default is `FALSE`. If `TRUE`, then the coefficient estimates
#' are joined with a line.
#' @param df.t Integer scalar or `NULL` (default). The degrees of freedom (DoF) to use
#' when computing the confidence intervals with the Student t. By default it
#' tries to capture the DoF from the estimation. To use a Normal law to compute the
#' confidence interval, use `df.t = Inf`.
#' @param pt.join.par List. Parameters of the line joining the coefficients. The
#' default values are: `col = pt.col` and `lwd = lwd`. You can add any graphical
#' parameter that will be passed to [`lines`]. Eg: `pt.join.par = list(lty = 2)`.
Expand Down
5 changes: 5 additions & 0 deletions man/coefplot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e78c6df

Please sign in to comment.