I have this plot command:
pdx_1990s_plot <- ggplot(pdx_disc_1990s, aes(year+(mon/12), vol)) +
geom_bar(stat='identity', color='blue', fill='#0387fc', position='dodge') +
theme_classic() +
theme(plot.title = element_text(hjust = 0.5, face = 'bold')) +
theme(plot.subtitle = element_text(hjust = 0.5, face = 'bold')) +
ggtitle('Portland Monthly Mean Discharge', subtitle = '1988--1994') +
xlab('Year') +
ylab('Discharge (Cubic Feet/Second)')
which produces a plot with x-axis tics and their labels for each year.
I've not found how to have a small tic for each month and a larger tic for each year with the month names on one label line and the year labels on a second line underneath.
Please point me to a source for how to do this, with an example I can emulate.
TIA,
Rich