-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
releasedIncluded in a releaseIncluded in a release
Description
Is your feature request related to a problem?
A 2D histogram is a nice way to to determine the distribution of two columns.
Desired solution
- Add a method
histogram_2dtoTablePlotter - Parameters:
x_name: str- Name of the x-columny_name: str- Name of the y-column- Keyword-only
x_max_bin_count: int = 10 - Keyword-only
y_max_bin_count: int = 10
- Returns:
Image- The plot
- Raises:
_check_columns_existforx_name,y_name_check_columns_are_numericforx_name,y_name_check_boundsto ensure thatx_max_bin_countandy_max_bin_countare >= 1
- Dark mode as described in Dark mode for plots #798.
- Make the plot consistent with
scatter_plot, since it's just a variant of that with binning.
Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
releasedIncluded in a releaseIncluded in a release
Type
Projects
Status
✔️ Done