Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions bayesflow/diagnostics/plots/pairs_posterior.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from collections.abc import Sequence, Mapping
from collections.abc import Mapping, Sequence

import matplotlib.pyplot as plt

import numpy as np
import pandas as pd
import seaborn as sns
Expand All @@ -18,7 +17,7 @@ def pairs_posterior(
dataset_id: int = None,
variable_keys: Sequence[str] = None,
variable_names: Sequence[str] = None,
height: int = 3,
height: float = 3.0,
post_color: str | tuple = "#132a70",
prior_color: str | tuple = "gray",
alpha: float = 0.9,
Expand Down
Loading