Skip to content

Commit

Permalink
Fix for issue#87
Browse files Browse the repository at this point in the history
  • Loading branch information
Manu Setty committed Nov 4, 2022
1 parent e97712c commit bef8458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/palantir/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def plot_terminal_state_probs(pr_res, cells):
df.columns = ["y", "x"]

# Plot
sns.barplot("x", "y", data=df, ax=ax, palette=branch_colors)
sns.barplot(x="x", y="y", data=df, ax=ax, palette=branch_colors)
ax.set_xlabel("")
ax.set_ylabel("")
ax.set_ylim([0, 1])
Expand Down

0 comments on commit bef8458

Please sign in to comment.