Kevin Sheppard
Kevin Sheppard
Only `get_info` is really needed. We also import `set_verbosity` but that can be ignored. The actual build is standard. (referring to statsmodels)
@rgommers Thanks, that work around should help. I suspect that `get_info` is widely used by libraries that link to NumPy, so it would be good to have a replacement or...
7 is clearly wrong. The negation is valid and intentional.
Same as `(-bound) % bound` for an unsigned type. Reflect it around, then find the modulus. This code is never used and could be removed FWIW.
FWIW the idea in this code is to find the amount of a uint64 that is left over after that largest integer divisor, and then remove this from when sampling...
7 should be ticked and 9 is silly since it is only being used to have a negligible prob of a collision.
You should be able to use `open`, which is file-like, to avoid reading the data twice. Modified from [the python docs](https://docs.python.org/3/library/zipfile.html#zipfile.ZipFile.open): ``` with ZipFile('Archive.zip') as myzip: with myzip.open('numpyarray.bin', mode="rb") as...
Seems `fromfile` requires `fileno()` to be supported since it calls `fd = PyObject_AsFileDescriptor(file);`. This means it only works with file physically-backed files, so you would need to read the data.
Also has a default positional value of 0.0 it seems.
I implemented `RollingOLS`. I wasn't sure what `residuals` should look like since there are at least 2 different definitions. 1. A set of T-window+1 set of residuals for each regression...