-
Notifications
You must be signed in to change notification settings - Fork 16
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
Pandas 2.2.0 #359
Merged
Merged
Pandas 2.2.0 #359
Changes from 28 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
42e27c4
fix boxplot closures (maybe_color_bp changed scope)
AdamOrmondroyd 55dec12
_args_adjust no longer a thing (still need to deal with hists
AdamOrmondroyd a2a1116
remove convert_period from _get_xticks
AdamOrmondroyd 06050b5
add fig to PlanePlot2D._make_plot()
AdamOrmondroyd ef13f21
range is now self._bin_range, and convert data to numeric first (not …
AdamOrmondroyd 672bc6c
update pandas requirement
AdamOrmondroyd 5d851dc
bump version
AdamOrmondroyd 6d42c9b
fix MultiIndex.format deprecation
AdamOrmondroyd 1f9857b
address warnings in plot.py (no idea why these specific ones are the …
AdamOrmondroyd 64c14c8
Revert "address warnings in plot.py (no idea why these specific ones …
AdamOrmondroyd e710dfc
fix chained assignment warnings
AdamOrmondroyd f3a6d8f
don't include groups in chains.apply in remove_burn_in
AdamOrmondroyd 9610c7b
replace grouper with _grouper
AdamOrmondroyd 99c652d
more chained assignment warning fixes
AdamOrmondroyd 888c979
Merge branch 'master' into pandas2.2
AdamOrmondroyd b30ae7c
fix Index.format deprecation
AdamOrmondroyd 8fff3bc
bump version to 2.7.1
AdamOrmondroyd 8a16d12
remove unused exception handling from HistPlot._calculate_bins
AdamOrmondroyd c1e3b8f
remember loc to fix covariance coverage (cov cov lol)
AdamOrmondroyd ae4182a
remove pandas 1.5-specific documentation fix
AdamOrmondroyd 1b5b2ad
use sphinx-autodoc-typehints to fix PlotAccessor documentation
AdamOrmondroyd 5e68563
Merge branch 'master' into pandas2.2
AdamOrmondroyd 0f6e45e
bump version to 2.7.4
AdamOrmondroyd 91eb24e
add test for `range=None` in `hist_plot_1d` as this is no longer cove…
lukashergt 1ab5407
Merge branch 'master' into pandas2.2
lukashergt 9a57567
consistent diagonal
AdamOrmondroyd 4a1bbf0
try whether `auto-update-conda` makes conda CI work better
lukashergt ae96746
make conda install `pandas~=2.2.0`
lukashergt 71c7bac
Lukas' tidy suggestion for Hist1dPlot._calculate_bins()
AdamOrmondroyd 6ed8648
remove unused import
AdamOrmondroyd a009988
I can only apologise, I'd forgotten to reinstall the pre-commit hooks…
AdamOrmondroyd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 +1 @@ | ||
__version__ = '2.8.1' | ||
__version__ = '2.8.2' |
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not happy with repeating this a third time, and I haven't checked if the weights definitely need checking for nans
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not work with
data.to_numpy().ravel()
inquantile
below? seems simpler to me...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Essentially because I'm attempting to replicate the pandas versions as closely as possible
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, considering that
Hist1dPlot
was created for aWeightedSeries
, we could simplify things here.Even simpler than my previous suggestion:
Not sure what is easier for maintenance in the long run, though, so happy with either approach.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's too tidy to resist!