this is the code
ggplot(new_long_seabirds, aes(fill= Fishing_trend, y=count, x=Category))+
geom_bar(position="stack", stat="identity")+
labs(x = 'Year', y = 'Number of catches (000)', title = 'Estimated Sea bird by catch by fish trend from 2003-2014')+
scale_fill_brewer(palette="Spectral")+
theme(axis.text.x = element_text(angle = 30, vjust = 1, hjust=1))
but makes this graph
instead of points 2003-2014
how do i make the x axis points 2003-2014