-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
bugSomething isn't workingSomething isn't working
Description
I started getting warnings for the dotPlot function in sccore v. 1.0.6 and ggplot2 v. 4.0.1:
Warning: `aes_string()` was deprecated in ggplot2 3.0.0.
ℹ Please use tidy evaluation idioms with `aes()`.
The error happens here:
Line 669 in e4ef223
| geom_point(aes_string(size = "pct.exp", color = "avg.exp.scaled")) + |
Should be
geom_point(aes(size = pct.exp, color = avg.exp.scaled)) +
Will look into it
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working