From fb0ce1210ee86df45420f6c73a95935a100a2c6b Mon Sep 17 00:00:00 2001 From: Montana Flynn Date: Tue, 18 Feb 2020 12:53:47 +0700 Subject: [PATCH] Update documentation links and rename DOC.md to DOCUMENTATION.md --- DOC.md => DOCUMENTATION.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) rename DOC.md => DOCUMENTATION.md (96%) diff --git a/DOC.md b/DOCUMENTATION.md similarity index 96% rename from DOC.md rename to DOCUMENTATION.md index 1105314..d3dcc77 100644 --- a/DOC.md +++ b/DOCUMENTATION.md @@ -249,7 +249,7 @@ CovariancePopulation computes covariance for entire population between two varia -## func [CumulativeSus/cumulative_sum.go?s=81:137#L4) +## func [CumulativeSum](/cumulative_sum.go?s=81:137#L4) ``` go func CumulativeSum(input Float64Data) ([]float64, error) ``` @@ -394,7 +394,7 @@ Mode gets the mode [most frequent value(s)] of a slice of float64s -## func [Ncr](/norm.go?s=7466:7488#L239) +## func [Ncr](/norm.go?s=7384:7406#L239) ``` go func Ncr(n, r int) int ``` @@ -412,7 +412,7 @@ For more information please visit: func [NormCdf](/norm.go?s=1858:1917#L52) +## func [NormCdf](/norm.go?s=1826:1885#L52) ``` go func NormCdf(x float64, loc float64, scale float64) float64 ``` @@ -420,7 +420,7 @@ NormCdf is the cumulative distribution function. -## func [NormEntropy](/norm.go?s=5844:5896#L179) +## func [NormEntropy](/norm.go?s=5773:5825#L180) ``` go func NormEntropy(loc float64, scale float64) float64 ``` @@ -428,7 +428,7 @@ NormEntropy is the differential entropy of the RV. -## func [NormFit](/norm.go?s=6133:6172#L186) +## func [NormFit](/norm.go?s=6058:6097#L187) ``` go func NormFit(data []float64) [2]float64 ``` @@ -438,7 +438,7 @@ Returns array of Mean followed by Standard Deviation. -## func [NormInterval](/norm.go?s=7062:7135#L221) +## func [NormInterval](/norm.go?s=6976:7047#L221) ``` go func NormInterval(alpha float64, loc float64, scale float64) [2]float64 ``` @@ -446,7 +446,7 @@ NormInterval finds endpoints of the range that contains alpha percent of the dis -## func [NormIsf](/norm.go?s=4386:4449#L137) +## func [NormIsf](/norm.go?s=4330:4393#L137) ``` go func NormIsf(p float64, loc float64, scale float64) (x float64) ``` @@ -454,7 +454,7 @@ NormIsf is the inverse survival function (inverse of sf). -## func [NormLogCdf](/norm.go?s=2052:2114#L57) +## func [NormLogCdf](/norm.go?s=2016:2078#L57) ``` go func NormLogCdf(x float64, loc float64, scale float64) float64 ``` @@ -462,7 +462,7 @@ NormLogCdf is the log of the cumulative distribution function. -## func [NormLogPdf](/norm.go?s=1617:1679#L47) +## func [NormLogPdf](/norm.go?s=1590:1652#L47) ``` go func NormLogPdf(x float64, loc float64, scale float64) float64 ``` @@ -470,7 +470,7 @@ NormLogPdf is the log of the probability density function. -## func [NormLogSf](/norm.go?s=2471:2532#L67) +## func [NormLogSf](/norm.go?s=2423:2484#L67) ``` go func NormLogSf(x float64, loc float64, scale float64) float64 ``` @@ -478,7 +478,7 @@ NormLogSf is the log of the survival function. -## func [NormMean](/norm.go?s=6646:6695#L206) +## func [NormMean](/norm.go?s=6560:6609#L206) ``` go func NormMean(loc float64, scale float64) float64 ``` @@ -486,7 +486,7 @@ NormMean is the mean/expected value of the distribution. -## func [NormMedian](/norm.go?s=6517:6568#L201) +## func [NormMedian](/norm.go?s=6431:6482#L201) ``` go func NormMedian(loc float64, scale float64) float64 ``` @@ -494,7 +494,7 @@ NormMedian is the median of the distribution. -## func [NormMoment](/norm.go?s=4750:4808#L146) +## func [NormMoment](/norm.go?s=4694:4752#L146) ``` go func NormMoment(n int, loc float64, scale float64) float64 ``` @@ -503,7 +503,7 @@ For more information please visit: func [NormPdf](/norm.go?s=1379:1438#L42) +## func [NormPdf](/norm.go?s=1357:1416#L42) ``` go func NormPdf(x float64, loc float64, scale float64) float64 ``` @@ -511,7 +511,7 @@ NormPdf is the probability density function. -## func [NormPpf](/norm.go?s=2910:2973#L75) +## func [NormPpf](/norm.go?s=2854:2917#L75) ``` go func NormPpf(p float64, loc float64, scale float64) (x float64) ``` @@ -531,7 +531,7 @@ For more information please visit: func [NormSf](/norm.go?s=2290:2348#L62) +## func [NormSf](/norm.go?s=2250:2308#L62) ``` go func NormSf(x float64, loc float64, scale float64) float64 ``` @@ -539,7 +539,7 @@ NormSf is the survival function (also defined as 1 - cdf, but sf is sometimes mo -## func [NormStats](/norm.go?s=5348:5416#L161) +## func [NormStats](/norm.go?s=5277:5345#L162) ``` go func NormStats(loc float64, scale float64, moments string) []float64 ``` @@ -550,7 +550,7 @@ Returns array of m v s k in that order. -## func [NormStd](/norm.go?s=6900:6948#L216) +## func [NormStd](/norm.go?s=6814:6862#L216) ``` go func NormStd(loc float64, scale float64) float64 ``` @@ -558,7 +558,7 @@ NormStd is the standard deviation of the distribution. -## func [NormVar](/norm.go?s=6761:6809#L211) +## func [NormVar](/norm.go?s=6675:6723#L211) ``` go func NormVar(loc float64, scale float64) float64 ```