-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increased test coverage and changed main function name to make it shorter
- Loading branch information
Showing
16 changed files
with
559 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
[MASTER] | ||
disable= missing-module-docstring, missing-class-docstring, missing-function-docstring, missing-final-newline, C0325 | ||
ignore-paths=.coveragerc | ||
ignore=.coveragerc | ||
[FORMAT] | ||
max-line-length=200 | ||
|
||
# allow 1 or 2 length variable names | ||
good-names-rgxs=^[_a-zGW][_a-z0-9L]?$ | ||
good-names=R,D,T,D_row,S,A,F,H,F_vals, F_val, H_vals, M, SMALL_VAL, LARGE_VAL, MicroaggWilberCalculator_edu, N_vals, N | ||
good-names=R,D,T,D_row,S,A,F,H,F_vals, F_val, H_vals, M, SMALL_VAL, LARGE_VAL, MicroaggWilberCalculator_edu, N_vals, N, setUp, tearDown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from microagg1d.main import optimal_univariate_microaggregation_1d | ||
from microagg1d.main import univariate_microaggregation | ||
|
||
microagg1d = optimal_univariate_microaggregation_1d # shorthand for the above | ||
microagg1d = univariate_microaggregation # shorthand for the above |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.