Kevin Sheppard

Results 499 comments of Kevin Sheppard

I'll let it run one more time to make sure there is nothing stange

@JimVaranelli For something relatively generic like a non-neg lst square solver, it would probably be a better fit with SciPy. It would also reach a wider audience if that matters...

https://github.com/pysal Python Spatial Analysis Library

Seems to be a lot of code that isn't used. Can some/all of the unused code be removed?

patsy is in maintenance (only) mode, and so this behavior is unlikely to change. Looking in the index is also potentially problematic since there might be named indices with the...

Can you provide a code example that shows what you are seeing?

I can't reproduce. When I change `cov_type="robust"` to `cov_type="unadjusted"` I get different F-statistic values. As for chi2 vs F, I always use chi2(df) distributions rather than using the "asymptotic F"...

``` np.unpackbits(np.array([120]).astype(">u2").view("u1")) ``` seems to do what you want, and returns ``` array([0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], dtype=uint8) ```...

Just saw it fails CI - latest mypy passes which is correct since `tuple[str,str]` is `Sequence[str]`