Skip to content

Deprecation of aes_string in ggplot2 #13

@rrydbirk

Description

@rrydbirk

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:

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

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions