Look I will put 2 images of the same plot, the only thing I made was changing the size of it, expanding the size of the plot to the sizes before saving it as an image. But the code is the same in both plots. How can I make this not to happen?
here I attach same plot with different size, see how much change the columns, now there is a new column with máximum of 15 that was not before !!!:
Here I attach my code for the plot:
plot<-ggplot(DT,aes(x=Date,y=n_per_week,fill=var2))+
geom_bar(stat="identity", size= 4)+
theme(plot.title = element_text(hjust = 0.5))+
ylab("N")+xlab("Date (Month-Year)")+
scale_x_date(date_labels = "%m-%y")+
theme_minimal(base_size = 11, base_family = "")
How can I make this changes not to happen !!
Thanks in advance !