Skip to content
This repository was archived by the owner on Oct 12, 2020. It is now read-only.

Bump github.com/montanaflynn/stats from 0.5.0 to 0.6.0 #74

Merged

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps github.com/montanaflynn/stats from 0.5.0 to 0.6.0.

Release notes

Sourced from github.com/montanaflynn/stats's releases.

v0.6.0

  • Add Entropy function (aff88e33df74c3c6ef693c2fbefa10ea5c6f8adc)
func Entropy(input Float64Data) (float64, error) {}
  • Add StableSample function (ce31985b3920588edaffc28439e43c4fa505ecc6)
func StableSample(input Float64Data, takenum int) ([]float64, error) {}
  • Add Normal Distribution Functions (60d707fd1db41538718d32aa9f0ea667a62716c2)
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 {}
Changelog

Sourced from github.com/montanaflynn/stats's changelog.

v0.6.0 (2020-02-17)

Add

  • Add Normal Distribution Functions (#56)
  • Add previous versions of Go to travis CI config
  • Add check for distinct values in Mode function (#51)
  • Add StableSample function (#48)
  • Add doc.go file to show description and usage on godoc.org
  • Add comments to new error and legacy error variables
  • Add ExampleRound function to tests
  • Add go.mod file for module support
  • Add Sigmoid, SoftMax and Entropy methods and tests
  • Add Entropy documentation, example and benchmarks
  • Add Entropy function (#44)

Fix

  • Fix percentile when only one element (#47)
  • Fix AutoCorrelation name in comments and remove unneeded Sprintf

Improve

  • Improve documentation section with command comments

Remove

  • Remove very old versions of Go in travis CI config
  • Remove boolean comparison to get rid of gometalinter warning

Update

  • Update license dates
  • Update Distance functions signatures to use Float64Data
  • Update Sigmoid examples
  • Update error names with backward compatibility

Use

  • Use relative link to examples/main.go
  • Use a single var block for exported errors

Commits
  • 45043a0 Update license dates
  • 60d707f Add Normal Distribution Functions (#56)
  • 7479779 Remove very old versions of Go in travis CI config
  • 5e2a00f Add previous versions of Go to travis CI config
  • 5391ebe Add check for distinct values in Mode function (#51)
  • ce31985 Add StableSample function (#48)
  • dfab42c Fix percentile when only one element (#47)
  • 38304a2 Use relative link to examples/main.go
  • 572e08a Add doc.go file to show description and usage on godoc.org
  • 2039aba Use a single var block for exported errors
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [github.com/montanaflynn/stats](https://github.com/montanaflynn/stats) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/montanaflynn/stats/releases)
- [Changelog](https://github.com/montanaflynn/stats/blob/master/CHANGELOG.md)
- [Commits](montanaflynn/stats@v0.5.0...v0.6.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Feb 18, 2020
@Ullaakut Ullaakut merged commit 391946f into master Feb 18, 2020
@Ullaakut Ullaakut deleted the dependabot/go_modules/github.com/montanaflynn/stats-0.6.0 branch February 18, 2020 06:58
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant