-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathchangelog.txt
94 lines (62 loc) · 1.89 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# simplestatistics changelog
## 0.4.0
2017-11-16
### Added
- `covariance()` - calculate sample covariance
- `add_to_mean()` - calculates new mean after adding value(s)
- `sinh()` - hyperbolic function (sinh)
- `cosh()` - hyperbolic function (cosh)
- `tanh()` - hyperbolic function (tanh)
- `gamma_function()`
- `beta()`
## 0.3.0
2016-12-03
### Added
- `error_function()` - Gauss error function
- `chi_squared_dist_table()` - A table of χ2 values vs p-values
- `bernoulli()` - the Bernoulli distribution
- `poisson()` - the Poisson distribution
## 0.2.5
2016-09-24
### Added
- `harmonic_mean()`
- `bayesian_classfier()`
- `perceptron()`
- `coefficient_of_variation()` (Thanks to Lidiane Taquehara (lidimayra))
### Improved
- Allow user to specify `sample = False` in `standard_deviation()`,
`coefficient_of_variation()`, `z_scores()` (Thanks to Lidiane Taquehara
(lidimayra))
## 0.2.0
2016-08-27
### Added
- `linear_regression_line()` returns a function that, provided with a (m, b)
tuple, where m is the slope and b is the y intercept, calculates y values
based on given x values.
- `root_mean_square()`
- `interquartile_range()`
- `sum_nth_power_deviations()` to calculate sum of the deviations raised to Nth power.
## 0.1.5
2016-07-30
### Added
- `factorial()`
- `choose()`
- `binomial()` to calculate binomial distribution probabilities
- `normal()` to calculate normal distribution probabilities
- `kurtosis()` to calculate kurtosis/"tailedness" of a probability distribution of a variable
_ `skew()` to calculate Pearson's moment coefficient of skewness
- `linear_regression()` to calculate slope (m) and y intercept (b) of line of
best fit.
### Improved
- Reorganized documentation.
### Improved
- 100% test coverage
## 0.1.3
2016-06-06
### Added
Functions for calculating correlation coefficients, products of vectors,
quantiles, and sums.
- `correlate()`
- `product()`
- `quantiles()`
- `sum()`