insight icon indicating copy to clipboard operation
insight copied to clipboard

:crystal_ball: Easy access to model information for various model objects

Results 91 insight issues
Sort by recently updated
recently updated
newest added

```r library(panelr) data("teen_poverty") teen

New models :alien:

Close #553 ``` r library(insight) library(mgcv) #> Loading required package: nlme #> This is mgcv 1.8-40. For overview type 'help("mgcv-package")'. clean_names('s(time)') #> [1] "time" clean_names('s(longitude, latitude)') #> [1] "longitude, latitude"...

https://github.com/vincentarelbundock/marginaleffects/issues/404

Bug :bug:
3 investigators :grey_question::question:

1. Currently, if `robust = TRUE`, we default to `sandwich::vcovHC(..., type = "HC3")`. This works great for many models, but some models, like `"merMod"`, only have sandwich estimators in `clubSandwich::vcovCR()`....

enhancement :boom:

1. `get/find_transformation` should not return identity if an unsupported transformation is present. 2. Should support linear transformations? ``` r m [1] "identity" ``` Created on 2022-06-27 by the [reprex package](https://reprex.tidyverse.org)...

Enhancement :boom:

I noticed that using `find_formula` with `lmBF()` keeps two consecutive `+` in the conditional part of the formula. I suppose this is a bug so this PR removes the duplicate...

tl;dr: What do you think of my adding `include_interval` arguments to `get_data.rma()` rather than these being in `parameters::parameters()`? @strengejacke @DominiqueMakowski @IndrajeetPatil @mattansb I'm looking to improve our handling of meta-analysis...

First, it is a bug, since, as stated in `?get_sigma` > By default, `get_sigma()` tries to extract sigma by calling `stats::sigma()`. If the model-object has no `sigma()` method, the next...

Bug :bug:
Low priority :sleeping:
3 investigators :grey_question::question:

For binomial and multinomial trials with a `| trials()` or `| weights()` argument, there should be an option to get disaggregate the data and return the total number of trials,...

Enhancement :boom:

Hello! Thanks for this package, it's so great! I have a question about GAMs with mgcv. I wonder if there is a function to programmatically find variables based on smooth...

Question :interrobang: