-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make release-tag: Merge branch 'main' into stable
- Loading branch information
Showing
35 changed files
with
2,624 additions
and
1,679 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
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 |
---|---|---|
|
@@ -46,12 +46,12 @@ make install | |
|
||
If you intend to modify the source code or contribute to the project you will need to | ||
install it from the source using the `make install-develop` command. In this case, we | ||
recommend you to branch from `master` first: | ||
recommend you to branch from `main` first: | ||
|
||
```bash | ||
git clone [email protected]:sdv-dev/SDMetrics | ||
cd SDMetrics | ||
git checkout master | ||
git checkout main | ||
git checkout -b <your-branch-name> | ||
make install-develp | ||
``` | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% set version = '0.11.1' %} | ||
{% set version = '0.12.0.dev1' %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
__author__ = 'MIT Data To AI Lab' | ||
__email__ = '[email protected]' | ||
__version__ = '0.11.1' | ||
__version__ = '0.12.0.dev1' | ||
|
||
import sys | ||
import warnings as python_warnings | ||
|
@@ -15,7 +15,7 @@ | |
from pkg_resources import iter_entry_points | ||
|
||
from sdmetrics import ( | ||
column_pairs, demos, goal, multi_table, single_column, single_table, timeseries) | ||
column_pairs, demos, goal, multi_table, reports, single_column, single_table, timeseries) | ||
from sdmetrics.demos import load_demo | ||
|
||
__all__ = [ | ||
|
@@ -27,6 +27,7 @@ | |
'single_column', | ||
'single_table', | ||
'timeseries', | ||
'reports', | ||
] | ||
|
||
|
||
|
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,7 +1,12 @@ | ||
"""Reports for sdmetrics.""" | ||
from sdmetrics.reports.utils import get_column_pair_plot, get_column_plot | ||
from sdmetrics.reports.multi_table import DiagnosticReport as MultiTableDiagnosticReport | ||
from sdmetrics.reports.multi_table import QualityReport as MultiTableQualityReport | ||
from sdmetrics.reports.single_table import DiagnosticReport as SingleTableDiagnosticReport | ||
from sdmetrics.reports.single_table import QualityReport as SingleTableQualityReport | ||
|
||
__all__ = [ | ||
'get_column_pair_plot', | ||
'get_column_plot', | ||
'SingleTableQualityReport', | ||
'SingleTableDiagnosticReport', | ||
'MultiTableQualityReport', | ||
'MultiTableDiagnosticReport', | ||
] |
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.