We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
plot_trajectories
1 parent c0ade34 commit fbf826eCopy full SHA for fbf826e
README.md
@@ -73,6 +73,9 @@ ____
73
Release Notes
74
-------------
75
76
+ ### Next Release
77
+ * Avoid warning in `plot_trajectories`
78
+
79
### Version 1.4.2
80
* Fix "lightgray" error in `plot_trend`
81
* Address pygam incompatibility with newer scipy versions (automatic skip in tests, user warnings)
src/palantir/plot.py
@@ -2437,7 +2437,7 @@ def plot_trajectories(
2437
ax.scatter(
2438
umap[branch_mask, 0],
2439
umap[branch_mask, 1],
2440
- c=colors_mapping[branch],
+ color=colors_mapping[branch],
2441
label=f"Branch {branch}",
2442
**scatter_kwargs,
2443
)
0 commit comments