Skip to content

Commit

Permalink
pep8 and changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Sep 19, 2017
1 parent fc034a4 commit 7dd76e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/sources/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The CHANGELOG for the current development version is available at

- Added `evaluate.permutation_test`, a permutation test for hypothesis testing (or A/B testing) to test if two samples come from the same distribution. Or in other words, a procedure to test the null hypothesis that that two groups are not significantly different (e.g., a treatment and a control group).
- Added `'leverage'` and `'conviction` as evaluation metrics to the `frequent_patterns.association_rules` function. [#246](https://github.com/rasbt/mlxtend/pull/246) & [#247](https://github.com/rasbt/mlxtend/pull/247)
- Added a `loadings_` attribute to `PrincipalComponentAnalysis` to compute the factor loadings of the features on the principal components. [#250](https://github.com/rasbt/mlxtend/pull/250)
- Added a `loadings_` attribute to `PrincipalComponentAnalysis` to compute the factor loadings of the features on the principal components. [#251](https://github.com/rasbt/mlxtend/pull/251)

##### Changes

Expand All @@ -26,7 +26,7 @@ The CHANGELOG for the current development version is available at

##### Bug Fixes

- the "S" vector from SVD in `PrincipalComponentAnalysis` are now scaled so that the eigenvalues via `solver='eigen'` and `solver='svd'` now store eigenvalues that have the same magnitudes. [#250](https://github.com/rasbt/mlxtend/pull/250)
- the "S" vector from SVD in `PrincipalComponentAnalysis` are now scaled so that the eigenvalues via `solver='eigen'` and `solver='svd'` now store eigenvalues that have the same magnitudes. [#251](https://github.com/rasbt/mlxtend/pull/251)

### Version 0.8.0 (2017-09-09)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ def test_fail_array_dimension_2():
assert_raises(ValueError,
'X must be a 2D array. Try X[:, numpy.newaxis]',
pca.transform,
X[1])
X[1])

0 comments on commit 7dd76e7

Please sign in to comment.