stat-computing-r-python/part-wrangling/03-data-cleaning #12
Replies: 2 comments 1 reply
-
The code for mutating in 19.6 does not work. |
Beta Was this translation helpful? Give feedback.
1 reply
-
storm_strength_duration = storms.groupby(["name", "year"]).agg(duration = ("time", lambda x: max(x) - min(x)),max_strength = ("category", "max")) ggplot(aes(x = "factor(max_strength)", y = "duration"), data = storm_strength_duration) + geom_boxplot() TypeError: ggplot.init() got multiple values for argument 'data'plotnine needs named arguments for aesthetics -- fix |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
stat-computing-r-python/part-wrangling/03-data-cleaning
https://srvanderplas.github.io/stat-computing-r-python/part-wrangling/03-data-cleaning.html
Beta Was this translation helpful? Give feedback.
All reactions