We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! is the following behavior something expected?
library(ggbump) library(ggplot2) # Create data year <- rep(2019:2021, 3) products_sold <- c( 500, 600, 700, 550, 650, 600, 600, 400, 500 ) store <- c( "Store A", "Store A", "Store A", "Store B", "Store B", "Store B", "Store C", "Store C", "Store C" ) # Create the new dataframe df <- data.frame( year = year, products_sold = products_sold, store = store ) ggplot(df, aes(x = year, y = products_sold, color = store)) + geom_bump()
The solution is actually to load the tidyverse and not only ggplot: library(tidyverse), but I'm not sure if that's something normal?
tidyverse
ggplot
library(tidyverse)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! is the following behavior something expected?
The solution is actually to load the
tidyverse
and not onlyggplot
:library(tidyverse)
, but I'm not sure if that's something normal?The text was updated successfully, but these errors were encountered: