Releases: montanaflynn/stats
Releases · montanaflynn/stats
v0.7.1
v0.7.0
v0.6.6
v0.6.5
Add
- Add Float64Data.Quartiles documentation
Update
- Update changelog with v0.6.5 changes
v0.6.4
v0.6.3
Add
- Add creating and committing changelog to Makefile release directive
- Add release-notes.txt and .chglog directory to .gitignore
Update
- Update exported tests to use import for better example documentation
- Update documentation using godoc2md
- Update changelog with v0.6.2 release
v0.6.2
Fix
- Fix linting errcheck warnings in go benchmarks
Update
- Update Makefile release directive to use correct release name
v0.6.1
Add
- Add StableSample function signature to readme
Fix
- Fix linting warnings for normal distribution functions formatting and tests
Update
- Update documentation links and rename DOC.md to DOCUMENTATION.md
- Update README with link to pkg.go.dev reference and release section
- Update Makefile with new changelog, docs, and release directives
- Update DOC.md links to GitHub source code
- Update doc.go comment and add DOC.md package reference file
- Update changelog using git-chglog
v0.6.0
- Add
Entropy
function (aff88e3)
func Entropy(input Float64Data) (float64, error) {}
- Add
StableSample
function (ce31985)
func StableSample(input Float64Data, takenum int) ([]float64, error) {}
- Add Normal Distribution Functions (60d707f)
func NormBoxMullerRvs(loc float64, scale float64, size int) []float64 {}
func NormCdf(x float64, loc float64, scale float64) float64 {}
func NormEntropy(loc float64, scale float64) float64 {}
func NormFit(data []float64) [2]float64{}
func NormInterval(alpha float64, loc float64, scale float64 ) [2]float64 {}
func NormIsf(p float64, loc float64, scale float64) (x float64) {}
func NormLogCdf(x float64, loc float64, scale float64) float64 {}
func NormLogPdf(x float64, loc float64, scale float64) float64 {}
func NormLogSf(x float64, loc float64, scale float64) float64 {}
func NormMean(loc float64, scale float64) float64 {}
func NormMedian(loc float64, scale float64) float64 {}
func NormMoment(n int, loc float64, scale float64) float64 {}
func NormPdf(x float64, loc float64, scale float64) float64 {}
func NormPpf(p float64, loc float64, scale float64) (x float64) {}
func NormPpfRvs(loc float64, scale float64, size int) []float64 {}
func NormSf(x float64, loc float64, scale float64) float64 {}
func NormStats(loc float64, scale float64, moments string) []float64 {}
func NormStd(loc float64, scale float64) float64 {}
func NormVar(loc float64, scale float64) float64 {}