- Uses new print method so users no longer have to specify
results = "asis"
in the R Markdown chunk option - Fixed error in rendering logistic/probit regression equations by removing the epsilon (error term) at the end of the left-hand side
- Initial CRAN Release
- Extracts equations for
lm
models - Extracts equations for
glm
models withfamily = binomial(link = "logit")
orfamily = binomial(link = "probit")
- Extracts equations form ordered regression models using
MASS::polr
orordered::clm
for logit and probit link functions glm
models have an optionalshow_distribution
argument to show the distributional assumptions- All equations can be displayed using Greek notation or the estimated coefficients
- The
raw_tex
code can be used to supply custom TeX code for the intercept or the coefficients, through theintercept
andgreek
arguments respectively - Long equations can be wrapped to multiple lines with the optional
wrap
argument. The length of the wrapping is controlled byterms_per_line
. - Added a
NEWS.md
file to track subsequent changes to the package.