Daniel Saxton
Daniel Saxton
@brandonros If it's the cumulative version you're interested in you can use `ss.cumulativeStdNormalProbability`, but instead of plugging in `x` directly use `(x - mean) / standard_dev`. For the density function...
Hmm, first thought is to accept that this would require someone to repeat the same calculation rather than adding complexity to the API. It's hard to say whether this would...
Still not sure how I feel about complicating the library to accommodate this, it feels a bit like over-optimization. To me I wouldn't worry a whole lot if my computer...
Add functions if you want, submodules seem like overkill
> `precalculated` could also be named `formulas` or something. `cached` could also make for an interesting name (since we are using "cached" replicates). I suppose submodules aren't too bad if...
@HDembinski Were you still interesting in working on this? I think it would be nice to release a new version in the not too distant future (your plan was to...
I think it makes sense, although I wouldn't know how to implement it. Are there options built into numpy and scipy that can be used?
> Parallel execution is easy to implement with `concurrent.futures.ThreadPoolExecutor`, I can do that. It is mainly a question of whether we want to add this. I think it would be...
Yeah that would make a good addition, and I agree it should likely be its own function.
I've been wondering how exactly @simonjayhawkins does this but was too afraid to ask 😊. Great idea to document this.