Skip to content

Incompatible with pandas 1.1.0 #557

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

Merged
merged 1 commit into from
Aug 24, 2020
Merged

Conversation

sbrugman
Copy link
Collaborator

@codecov
Copy link

codecov bot commented Aug 24, 2020

Codecov Report

Merging #557 into develop will increase coverage by 0.12%.
The diff coverage is 94.73%.

Impacted file tree graph

@@             Coverage Diff             @@
##           develop     #557      +/-   ##
===========================================
+ Coverage    87.54%   87.66%   +0.12%     
===========================================
  Files          120      121       +1     
  Lines         3115     3113       -2     
===========================================
+ Hits          2727     2729       +2     
+ Misses         388      384       -4     
Flag Coverage Δ
#examples 30.48% <0.00%> (-0.58%) ⬇️
#issue 76.65% <94.73%> (+0.27%) ⬆️
#unit 84.67% <100.00%> (-0.19%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
tests/issues/test_issue537.py 94.44% <94.44%> (ø)
src/pandas_profiling/model/summary.py 89.28% <100.00%> (+0.04%) ⬆️
...das_profiling/report/presentation/core/variable.py 65.21% <0.00%> (-1.45%) ⬇️
...s_profiling/report/presentation/core/renderable.py 91.66% <0.00%> (-1.20%) ⬇️
src/pandas_profiling/profile_report.py 76.30% <0.00%> (-0.97%) ⬇️
...das_profiling/report/presentation/core/collapse.py 88.23% <0.00%> (-0.66%) ⬇️
tests/unit/test_describe.py 93.75% <0.00%> (-0.49%) ⬇️
tests/conftest.py 96.42% <0.00%> (-0.24%) ⬇️
src/pandas_profiling/config.py 95.08% <0.00%> (-0.08%) ⬇️
tests/unit/test_sort.py 100.00% <0.00%> (ø)
... and 10 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 577b230...529053c. Read the comment docs.

@sbrugman sbrugman merged commit 8b185ab into develop Aug 24, 2020
@sbrugman sbrugman deleted the feature/requirements-fix branch August 24, 2020 22:32
chanedwin pushed a commit to chanedwin/pandas-profiling that referenced this pull request Oct 11, 2020
chanedwin pushed a commit to chanedwin/pandas-profiling that referenced this pull request Oct 11, 2020
chanedwin pushed a commit to chanedwin/pandas-profiling that referenced this pull request Oct 11, 2020
chanedwin pushed a commit to chanedwin/pandas-profiling that referenced this pull request Oct 11, 2020
chanedwin added a commit to chanedwin/pandas-profiling that referenced this pull request Oct 11, 2020
…e, tests and CI up, and with visions integration pulled in

Update integrations.rst (ydataai#544)

fix ydataai#537  ValueError race condition when running multiprocessing with describe1d (ydataai#549)

* include tests for issue 537
* fix hidden side effect from previous series.fillna(in_place=True) call by expliciting dropping na

Give visibility to our support (ydataai#536)

* Add support mention

Change formatters for overview (ydataai#535)

Fix 523 (ydataai#533)

* Fix 523

Incompatible with pandas 1.1.0 (ydataai#557)

Notebook update instructions (ydataai#556)

Fix 545 and test pandas 1.0.5 and >=1.1 (ydataai#558)

* Fix 545 and test pandas 1.0.5 and >=1.1

Bump visions[type_image_path] from 0.4.4 to 0.5.0 (ydataai#547)

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.4.4 to 0.5.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@v0.4.4...0.5.0)

Update frequent issues (ydataai#564)

Fix warning from cmap (ydataai#565)

Feature/distinct unique (ydataai#566)

* Fix ydataai#539

v2.9.0 details (ydataai#567)

[skip ci] Code formatting

Visions integration

Build summary from graph structure

Fix a few more tests

Typeset changes + test updates

Type checking

Correlations

Handler, warning structure, random sample, test fix

Test fix

Fixes

Fix warning

Captions missing diagrams

Fix 51

Unhashable

Process comments

Fix tests

Update messages.py

Add threshold to all correlation configs

Remove unused renderers (ydataai#580)

* Remove unused rendered

Update README.md

Fix check for infinite values (ydataai#588)

* Fix check for infinite values

Bump visions[type_image_path] from 0.5.0 to 0.6.0

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@0.5.0...v0.6.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

Update get_scatter_matrix for sparse dataframes

For a dataframe like:

	A	B	C
0	1.0	7.0	NaN
1	2.0	8.0	NaN
2	3.0	9.0	NaN
3	4.0	NaN	13.0
4	5.0	NaN	14.0
5	6.0	NaN	15.0
6	NaN	10.0	16.0
7	NaN	11.0	17.0
8	NaN	12.0	18.0

the 'Interactions' tab would not display any data (as all rows contain NaN's) while any pair of columns would contain valid data to plot.
This change allows columns A, B, and C to be pairwise plotted against each other by only removing rows with NaN's between the pairwise columns.

Update plot.py

Notation
chanedwin added a commit to chanedwin/pandas-profiling that referenced this pull request Oct 11, 2020
…e, tests and CI up, and with visions integration pulled in

Update integrations.rst (ydataai#544)

fix ydataai#537  ValueError race condition when running multiprocessing with describe1d (ydataai#549)

* include tests for issue 537
* fix hidden side effect from previous series.fillna(in_place=True) call by expliciting dropping na

Give visibility to our support (ydataai#536)

* Add support mention

Change formatters for overview (ydataai#535)

Fix 523 (ydataai#533)

* Fix 523

Incompatible with pandas 1.1.0 (ydataai#557)

Notebook update instructions (ydataai#556)

Fix 545 and test pandas 1.0.5 and >=1.1 (ydataai#558)

* Fix 545 and test pandas 1.0.5 and >=1.1

Bump visions[type_image_path] from 0.4.4 to 0.5.0 (ydataai#547)

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.4.4 to 0.5.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@v0.4.4...0.5.0)

Update frequent issues (ydataai#564)

Fix warning from cmap (ydataai#565)

Feature/distinct unique (ydataai#566)

* Fix ydataai#539

v2.9.0 details (ydataai#567)

[skip ci] Code formatting

Visions integration

Build summary from graph structure

Fix a few more tests

Typeset changes + test updates

Type checking

Correlations

Handler, warning structure, random sample, test fix

Test fix

Fixes

Fix warning

Captions missing diagrams

Fix 51

Unhashable

Process comments

Fix tests

Update messages.py

Add threshold to all correlation configs

Remove unused renderers (ydataai#580)

* Remove unused rendered

Update README.md

Fix check for infinite values (ydataai#588)

* Fix check for infinite values

Bump visions[type_image_path] from 0.5.0 to 0.6.0

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@0.5.0...v0.6.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

Update get_scatter_matrix for sparse dataframes

For a dataframe like:

	A	B	C
0	1.0	7.0	NaN
1	2.0	8.0	NaN
2	3.0	9.0	NaN
3	4.0	NaN	13.0
4	5.0	NaN	14.0
5	6.0	NaN	15.0
6	NaN	10.0	16.0
7	NaN	11.0	17.0
8	NaN	12.0	18.0

the 'Interactions' tab would not display any data (as all rows contain NaN's) while any pair of columns would contain valid data to plot.
This change allows columns A, B, and C to be pairwise plotted against each other by only removing rows with NaN's between the pairwise columns.

Update plot.py

Notation
chanedwin pushed a commit to chanedwin/pandas-profiling that referenced this pull request Oct 22, 2020
chanedwin added a commit to chanedwin/pandas-profiling that referenced this pull request Jan 13, 2021
…e, tests and CI up, and with visions integration pulled in

Update integrations.rst (ydataai#544)

fix ydataai#537  ValueError race condition when running multiprocessing with describe1d (ydataai#549)

* include tests for issue 537
* fix hidden side effect from previous series.fillna(in_place=True) call by expliciting dropping na

Give visibility to our support (ydataai#536)

* Add support mention

Change formatters for overview (ydataai#535)

Fix 523 (ydataai#533)

* Fix 523

Incompatible with pandas 1.1.0 (ydataai#557)

Notebook update instructions (ydataai#556)

Fix 545 and test pandas 1.0.5 and >=1.1 (ydataai#558)

* Fix 545 and test pandas 1.0.5 and >=1.1

Bump visions[type_image_path] from 0.4.4 to 0.5.0 (ydataai#547)

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.4.4 to 0.5.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@v0.4.4...0.5.0)

Update frequent issues (ydataai#564)

Fix warning from cmap (ydataai#565)

Feature/distinct unique (ydataai#566)

* Fix ydataai#539

v2.9.0 details (ydataai#567)

[skip ci] Code formatting

Visions integration

Build summary from graph structure

Fix a few more tests

Typeset changes + test updates

Type checking

Correlations

Handler, warning structure, random sample, test fix

Test fix

Fixes

Fix warning

Captions missing diagrams

Fix 51

Unhashable

Process comments

Fix tests

Update messages.py

Add threshold to all correlation configs

Remove unused renderers (ydataai#580)

* Remove unused rendered

Update README.md

Fix check for infinite values (ydataai#588)

* Fix check for infinite values

Bump visions[type_image_path] from 0.5.0 to 0.6.0

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@0.5.0...v0.6.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

Update get_scatter_matrix for sparse dataframes

For a dataframe like:

	A	B	C
0	1.0	7.0	NaN
1	2.0	8.0	NaN
2	3.0	9.0	NaN
3	4.0	NaN	13.0
4	5.0	NaN	14.0
5	6.0	NaN	15.0
6	NaN	10.0	16.0
7	NaN	11.0	17.0
8	NaN	12.0	18.0

the 'Interactions' tab would not display any data (as all rows contain NaN's) while any pair of columns would contain valid data to plot.
This change allows columns A, B, and C to be pairwise plotted against each other by only removing rows with NaN's between the pairwise columns.

Update plot.py

Notation
chanedwin added a commit to chanedwin/pandas-profiling that referenced this pull request Jan 13, 2021
…e, tests and CI up, and with visions integration pulled in

Update integrations.rst (ydataai#544)

fix ydataai#537  ValueError race condition when running multiprocessing with describe1d (ydataai#549)

* include tests for issue 537
* fix hidden side effect from previous series.fillna(in_place=True) call by expliciting dropping na

Give visibility to our support (ydataai#536)

* Add support mention

Change formatters for overview (ydataai#535)

Fix 523 (ydataai#533)

* Fix 523

Incompatible with pandas 1.1.0 (ydataai#557)

Notebook update instructions (ydataai#556)

Fix 545 and test pandas 1.0.5 and >=1.1 (ydataai#558)

* Fix 545 and test pandas 1.0.5 and >=1.1

Bump visions[type_image_path] from 0.4.4 to 0.5.0 (ydataai#547)

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.4.4 to 0.5.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@v0.4.4...0.5.0)

Update frequent issues (ydataai#564)

Fix warning from cmap (ydataai#565)

Feature/distinct unique (ydataai#566)

* Fix ydataai#539

v2.9.0 details (ydataai#567)

[skip ci] Code formatting

Visions integration

Build summary from graph structure

Fix a few more tests

Typeset changes + test updates

Type checking

Correlations

Handler, warning structure, random sample, test fix

Test fix

Fixes

Fix warning

Captions missing diagrams

Fix 51

Unhashable

Process comments

Fix tests

Update messages.py

Add threshold to all correlation configs

Remove unused renderers (ydataai#580)

* Remove unused rendered

Update README.md

Fix check for infinite values (ydataai#588)

* Fix check for infinite values

Bump visions[type_image_path] from 0.5.0 to 0.6.0

Bumps [visions[type_image_path]](https://github.com/dylan-profiler/visions) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/dylan-profiler/visions/releases)
- [Commits](dylan-profiler/visions@0.5.0...v0.6.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

Update get_scatter_matrix for sparse dataframes

For a dataframe like:

	A	B	C
0	1.0	7.0	NaN
1	2.0	8.0	NaN
2	3.0	9.0	NaN
3	4.0	NaN	13.0
4	5.0	NaN	14.0
5	6.0	NaN	15.0
6	NaN	10.0	16.0
7	NaN	11.0	17.0
8	NaN	12.0	18.0

the 'Interactions' tab would not display any data (as all rows contain NaN's) while any pair of columns would contain valid data to plot.
This change allows columns A, B, and C to be pairwise plotted against each other by only removing rows with NaN's between the pairwise columns.

Update plot.py

Notation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant