Skip to content

Commit

Permalink
Merge pull request #285 from DHI/update-bins-default-2
Browse files Browse the repository at this point in the history
Default number of bins in scatter plot --- too many defaults?
  • Loading branch information
jsmariegaard authored Nov 26, 2023
2 parents 85cef68 + fdb1167 commit c23d91c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modelskill/comparison/_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def spatial_skill(
def scatter(
self,
*,
bins=20,
bins=120,
quantiles=None,
fit_to_quantiles=False,
show_points=None,
Expand Down
2 changes: 1 addition & 1 deletion modelskill/comparison/_collection_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def scatter(
self,
*,
model=None,
bins: int | float = 20,
bins: int | float = 120,
quantiles: int | Sequence[float] | None = None,
fit_to_quantiles: bool = False,
show_points: bool | int | float | None = None,
Expand Down
2 changes: 1 addition & 1 deletion modelskill/comparison/_comparer_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def scatter(
self,
*,
model=None,
bins: int | float = 20,
bins: int | float = 120,
quantiles: int | Sequence[float] | None = None,
fit_to_quantiles: bool = False,
show_points: bool | int | float | None = None,
Expand Down
2 changes: 1 addition & 1 deletion modelskill/comparison/_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ def remove_bias(self, correct="Model"):
def scatter(
self,
*,
bins=20,
bins=120,
quantiles=None,
fit_to_quantiles=False,
show_points=None,
Expand Down

0 comments on commit c23d91c

Please sign in to comment.