We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec9cd7 commit bd1a71bCopy full SHA for bd1a71b
swyft/plot/plot2.py
@@ -353,7 +353,6 @@ def corner(
353
label_args={},
354
contours_1d: bool = True,
355
fig=None,
356
- labeler=None,
357
smooth=0.0,
358
) -> None:
359
"""Make a beautiful corner plot.
@@ -384,10 +383,7 @@ def corner(
384
383
385
diagnostics = {}
386
387
- if labeler is not None:
388
- labels = [labeler.get(k, k) for k in parnames]
389
- else:
390
- labels = parnames
+ labels = labels if labels is not None else parnames
391
392
for i in range(K):
393
for j in range(K):
0 commit comments