Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scale argument of Guides cannot be FALSE #16

Open
kayla-hale opened this issue Mar 13, 2023 · 0 comments
Open

Scale argument of Guides cannot be FALSE #16

kayla-hale opened this issue Mar 13, 2023 · 0 comments

Comments

@kayla-hale
Copy link

library(ggplot2)
library(webr)
library(dplyr)

data <- as.data.frame(Titanic)
head(data)

# Building a table with the data for the plot
PD = data %>% group_by(Class, Survived) %>% summarise(n = sum(Freq))
print(PD)

# Pie-Donut chart
PieDonut(PD, aes(Survived, Class, count=n), 
         title = "Titanic: Survival by Class")

Generated warning message:
The <scale> argument of guides() cannot be FALSE. Use "none"
instead as of ggplot2 3.3.4.
ℹ The deprecated feature was likely used in the webr package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant