Shamus Husheer

Results 10 issues of Shamus Husheer

csaps.CubicSmoothingSpline purports to perform extrapolation using the "natural" boundary condition. From https://github.com/espdev/csaps/blob/master/docs/formulation.rst: "csaps spline is cubic only and it has natural boundary condition type." This means the first derivative should...

help wanted

Certain arrangements of smoothing intensity, weights and xdata, in particular irregularly spaced data where some xvalues are rather close together, causes CubicSmoothingSpline to produce a first derivative that is not...

help wanted

csaps.CubicSmoothingSpline purports to support periodic functions, but does not implement this correctly. I believe this is because it is a *smoothing* spline, which means that there are far more knots...

bug
help wanted

#### Describe the bug https://github.com/statsmodels/statsmodels/blob/main/statsmodels/sandbox/stats/runs.py includes the following comment: "This should be extended once I figure out what the distribution of runs of any length k is." Here's a reference...

For many GPUs (IoT devices using unified memory models, Intel iGPUs, and GPUs with pinned memory), zero-copy buffers are really useful. You use malloc() in the examples currently, which only...

Many folks will probably use the example code as the basis for their first projects - which will likely have bugs in kernels. Make life easier for them by replacing...

Currently network traffic is shown numerically, with 12K/s for example. The other items (memory, CPU) give a nice glanceable way to see what's happening, as we know a-priori what "100%"...

enhancement

As described at http://blog.dlib.net/2017/12/a-global-optimization-algorithm-worth.html LIPO is supposed to alternate a random search of candidate values for parameters with a local optimiser. The random search depends on the Lipschitz constant (which...

…incorrect zscore and pvalue - [ X] closes #9523 - [ X] tests added / passed. - [ X] code/documentation is well formatted. - [ X] properly formatted commit message....

type-enh
comp-stats
prio-elev

#### Describe the bug When a single run is provided, e.g. np.ones(50), resulting zscore and pvalue are (nan,nan) This is not correct. Binomial theory tells us exactly what the probability...