Kyle F Butts

Results 70 comments of Kyle F Butts
trafficstars

@cderv Fixed in my fork: https://github.com/kylebutts/knitr/commit/b8e17d736ee557acc5f5714c5a4289ef20416857. What do you think about the approach? It basically inserts a `# %%` whenever a code chunk starts with `#|` and then runs spin...

@Tal500 This is actually a different feature. It takes `# %%` code cells in plain R files (which the extension now well supports) and sends them to an interactive notebook....

It seems like there is going to be a new API that makes sending commands to interactive window easier, so best to wait for that: - Proposed API: https://github.com/microsoft/vscode-jupyter/pull/14676/ -...

@grantmcdermott Been planning on fixing all the things you flagged, but for now I pushed your PR so as to not be blocking!

@simonschoe, pretty easy to modify the code from https://github.com/cran/car/blob/d67a2f5ed4013c8766e8d3e827dcaf6aaaf7f0fa/R/vif.R ``` r library(fixest) library(car) #> Loading required package: carData vif_feols

I'm not sure! I haven't worked much with VIF, so I don't know how to think about it with demeaned data. Sorry I can't be of more help in that...

Just found a bug (column names are not correct for `factor()`). I suspect the fix will be `deparse` the terms? ``` r library(fixest) est = feols( mpg ~ factor(am) +...

@jonathandroth, here's a basic version (no clustering). Two questions and I can make this more robust: 1. What is the correct way to account for degrees of freedom? Is it...

@grantmcdermott @vincentarelbundock, is there a way to call `marginaleffects::hypothesis` providing a vector of coefficients and the variance-covariance matrix?

@vincentarelbundock That worked with defining custom `get_coef` and `set_coef` methods! Thanks!