Changelog History
Page 1
-
v0.6.6 Changes
April 26, 2021 -
v0.6.5 Changes
February 21, 2021โ Add
- โ Add Float64Data.Quartiles documentation
โก๏ธ Update
- โก๏ธ Update changelog with v0.6.5 changes
-
v0.6.4 Changes
February 21, 2021โ Add
- โ Add Quartiles method to Float64Data type (issue #60)
๐ Fix
- ๐ Fix make release changelog command and add changelog history
- ๐ Fix failing tests due to precision errors on arm64 (#58)
โก๏ธ Update
- โก๏ธ Update changelog with v0.6.4 changes
- ๐ Update README.md links to CHANGELOG.md and DOCUMENTATION.md
- ๐ Update README.md and Makefile with new release commands
- โก๏ธ Update changelog with v0.6.4 changes
- โก๏ธ Update examples directory to include a README.md used for synopsis
- โก๏ธ Update go.mod to include go version where modules are enabled by default
- โก๏ธ Update changelog with v0.6.3 changes
-
v0.6.3 Changes
February 18, 2020โ 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 Changes
February 18, 2020๐ Fix
- ๐ Fix linting errcheck warnings in go benchmarks
โก๏ธ Update
- ๐ Update Makefile release directive to use correct release name
-
v0.6.1 Changes
February 18, 2020โ 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 Changes
February 17, 2020โ 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 {}
-
v0.5.0 Changes
January 16, 2019โ Add
Sigmoid
andSoftMax
functions (63fbb25)func Sigmoid(input Float64Data) ([]float64, error) {}func SoftMax(input Float64Data) ([]float64, error) {}
-
v0.4.0 Changes
January 14, 2019โ Add
- โ Add goreport badge and documentation section to README.md
- โ Add Examples to test files
- โ Add AutoCorrelation and nist tests
- โ Add String method to statsErr type
- โ Add Y coordinate error for ExponentialRegression
- โ Add syntax highlighting (#43)
- โ Add CumulativeSum (#40)
- โ Add more tests and rename distance files
- โ Add coverage and benchmarks to azure pipeline
- โ Add go tests to azure pipeline
๐ Change
- ๐ Change travis tip alias to master
- ๐ Change codecov to coveralls for code coverage
๐ Fix
- ๐ Fix a few lint warnings
- ๐ Fix example error
๐ Improve
- ๐ Improve test coverage of distance functions
Only
- Only run travis on stable and tip versions
- Only check code coverage on tip
โ Remove
- โ Remove azure CI pipeline
- โ Remove unnecessary type conversions
Return
- Return EmptyInputErr instead of EmptyInput
Set
- ๐ท Set up CI with Azure Pipelines
-
v0.3.0 Changes
December 02, 2017โ Add
- โ Add Chebyshev, Manhattan, Euclidean and Minkowski distance functions (#35)
- โ Add function for computing chebyshev distance. (#34)
- โ Add support for time.Duration
- โ Add LoadRawData to docs and examples
- โ Add unit test for edge case that wasn't covered
- โ Add unit tests for edge cases that weren't covered
- โ Add pearson alias delegating to correlation
- โ Add CovariancePopulation to Float64Data
- โ Add pearson product-moment correlation coefficient
- โ Add population covariance
- โ Add random slice benchmarks
- โ Add all applicable functions as methods to Float64Data type
- โ Add MIT license badge
- โ Add link to examples/methods.go
- โ Add Protips for usage and documentation sections
- โ Add tests for rounding up
- โ Add webdoc target and remove linting from test target
- โ Add example usage and consolidate contributing information
โ Added
- โ Added MedianAbsoluteDeviation
Annotation
- Annotation spelling error
Auto
- auto commit
- auto commit
Calculate
- Calculate correlation with sdev and covp
Clean
- ๐ Clean up README.md and add info for offline docs
Consolidated
- Consolidated all error values.
๐ Fix
- ๐ Fix Percentile logic
- ๐ Fix InterQuartileRange method test
- ๐ Fix zero percent bug and add test
- ๐ Fix usage example output typos
๐ Improve
- ๐ Improve bounds checking in Percentile
- ๐ Improve error log messaging
Imput
- Imput -> Input
Include
- Include alternative way to set Float64Data in example
๐ Make
- ๐ Make various changes to README.md
๐ Merge
- ๐ Merge branch 'master' of github.com:montanaflynn/stats
- ๐ Merge master
Mode
- โ Mode calculation fix and tests
Realized
- Realized the obvious efficiency gains of ignoring the unique numbers at the beginning of the slice. Benchmark joy ensued.
๐จ Refactor
- ๐จ Refactor testing of Round()
- ๐จ Refactor setting Coordinate y field using Exp in place of Pow
- ๐จ Refactor Makefile and add docs target
โ Remove
- โ Remove deep links to types and functions
๐ Rename
- ๐ Rename file from types to data
Retrieve
- Retrieve InterQuartileRange for the Float64Data.
Split
- Split up stats.go into separate files
๐ Support
- ๐ Support more types on LoadRawData() (#36)
Switch
- 0๏ธโฃ Switch default and check targets
โก๏ธ Update
- โก๏ธ Update Readme
- โก๏ธ Update example methods and some text
- โก๏ธ Update README and include Float64Data type method examples
Pull Requests
- ๐ Merge pull request #32 from a-robinson/percentile
- ๐ Merge pull request #30 from montanaflynn/fix-test
- ๐ Merge pull request #29 from edupsousa/master
- ๐ Merge pull request #27 from andrey-yantsen/fix-percentile-out-of-bounds
- ๐ Merge pull request #25 from kazhuravlev/patch-1
- ๐ Merge pull request #22 from JanBerktold/time-duration
- ๐ Merge pull request #24 from alouche/master
- ๐ Merge pull request #21 from brydavis/master
- ๐ Merge pull request #19 from ginodeis/mode-bug
- ๐ Merge pull request #17 from Kunde21/master
- ๐ Merge pull request #3 from montanaflynn/master
- ๐ Merge pull request #2 from montanaflynn/master
- ๐ Merge pull request #13 from toashd/pearson
- ๐ Merge pull request #12 from alixaxel/MAD
- ๐ Merge pull request #1 from montanaflynn/master
- ๐ Merge pull request #11 from Kunde21/modeMemReduce
- ๐ Merge pull request #10 from Kunde21/ModeRewrite