Hello all,
I am quite new to coding and am having trouble with a violin plot.
I would really appreciate help!
I have made a violin plot but the x axis is not showing labels all the years. (i.e. it only lables 2010, 2013, and 2016)
Does anyone know how to fix this?
Thank you heaps!!!
library(tidyverse)
library(lubridate)
library(dslabs)
data(trump_tweets)
trump_tweets_year <- trump_tweets %>%
mutate(year = year(trump_tweets$created_at))
ggplot(trump_tweets_year, aes(x = year, y = retweet_count,group = year))+
geom_violin() +
geom_jitter(alpha=0.2,size=0.5, width = 0.15)+
scale_y_log10()+
labs(y= "Retweet count",
x= "Year")