Hi ,
I got warning message from the following code and the graph did not show
as expected; I don't have the date on the x-axis and I do not have legend.
Graph is attached.
How can I fix it?
******
x<-df_c_m$date
y<-df_c_m$percentage
group <- df_c_m$direction
patternbar_s(df_c_m, x,y, group, xlab='', ylab='%', label.size=3,
pattern.type=c( 'hlines', 'vlines','bricks'), pattern.line.size=c(5, 5,
5),frame.size=1,
#,background.color=c('grey', 'chartreuse3', 'bisque')
pixel=16, density=c(18, 72, 54),frame.color='black',
legend.type='h', legend.h=12, legend.y.pos=0.49,
legend.pixel=6, legend.w=0.275, legend.x.pos=1.05,
legend.label=c("up", "uc", "dn" ),
bar.width=0.8)+scale_y_continuous(limits = c(0, 100))+ggtitle('')
******