Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow get_column_plot to graph synthetic and real data individually #596

Merged
merged 23 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5030641
Allow get_column_pair_plot to visualize one dataset instead of both r…
lajohn4747 Jun 20, 2024
58e0989
Adding ability to individually graph synthetic or real data
lajohn4747 Jun 20, 2024
9c7dbc7
Fix title naming
lajohn4747 Jun 20, 2024
10026b1
Merge branch 'issue_581_get_column_pair_plot' into issue_581_get_colu…
lajohn4747 Jun 20, 2024
412b10b
Fixed title
lajohn4747 Jun 20, 2024
122855c
Update message
lajohn4747 Jun 20, 2024
f83279a
Merge branch 'issue_581_get_column_pair_plot' into issue_581_get_colu…
lajohn4747 Jun 20, 2024
2add684
Keep colors
lajohn4747 Jun 20, 2024
9fec05b
Update error message
lajohn4747 Jun 20, 2024
964008c
Merge branch 'main' into issue_581_get_column_pair_plot
lajohn4747 Jun 21, 2024
ceca02e
Merge branch 'issue_581_get_column_pair_plot' into issue_581_get_colu…
lajohn4747 Jun 21, 2024
b80af9f
Add tests for previous visualization methods
lajohn4747 Jun 24, 2024
a917652
Use assert_called_once_with with ANY
lajohn4747 Jun 24, 2024
87178a1
Fix failing minimum test
lajohn4747 Jun 24, 2024
34b66ae
Address comments and added check for single column test for internal …
lajohn4747 Jun 24, 2024
d694819
Fix
lajohn4747 Jun 24, 2024
8e97290
Merge branch 'issue_581_get_column_pair_plot' into issue_581_get_colu…
lajohn4747 Jun 24, 2024
673c1d9
Remove unneeded tests
lajohn4747 Jun 24, 2024
c01163f
Merge branch 'issue_581_get_column_pair_plot' into issue_581_get_colu…
lajohn4747 Jun 24, 2024
dc2eed0
Merge branch 'main' into issue_581_get_column_pair_plot
lajohn4747 Jun 25, 2024
42bfd87
Cap scipy from new release to avoid test failures
lajohn4747 Jun 25, 2024
8e94caa
Cap all scipy versions
lajohn4747 Jun 25, 2024
990eb74
Merge branch 'issue_581_get_column_pair_plot' into issue_581_get_colu…
lajohn4747 Jun 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ dependencies = [
"scikit-learn>=1.1.0;python_version>='3.10' and python_version<'3.11'",
"scikit-learn>=1.1.3;python_version>='3.11' and python_version<'3.12'",
"scikit-learn>=1.3.1;python_version>='3.12'",
"scipy>=1.7.3;python_version<'3.10'",
"scipy>=1.9.2;python_version>='3.10' and python_version<'3.12'",
"scipy>=1.12.0;python_version>='3.12'",
"scipy>=1.7.3,<1.14.0;python_version<'3.10'",
"scipy>=1.9.2,<1.14.0;python_version>='3.10' and python_version<'3.12'",
"scipy>=1.12.0,<1.14.0;python_version>='3.12'",
'copulas>=0.11.0',
'tqdm>=4.29',
'plotly>=5.19.0',
Expand Down
Loading
Loading