Hello, I made the following graph in R with the following code.
ggplot(aes(x=factor(year), y=percentage, color = Gender, fill=Gender), data =
graph_text)+ geom_bar(position = 'dodge', stat='identity')+ theme_classic()+
scale_y_continuous(limits=c(0, 1.4*ymax))+ labs(x= 'Year', y = 'Percentage',
title = 'Men and Women')
However, on using the following code - tiff("test.tiff", units = "px", width =
440, height = 250, res = 300)ggplot(aes(x=factor(year), y=percentage, color =
Gender, fill=Gender), data = graph_text)+ geom_bar(position = 'dodge',
stat='identity')+ theme_classic()+ scale_y_continuous(limits=c(0, 1.4*ymax))+
labs(x= 'Year', y = 'Percentage', title = 'Men and Women')dev.off()
I get the following image -
I need to keep the DPI = 300 and Width = 440 fixed. I can only manipulate
height. Any help would be appreciated
Thank you
______________________________________________
[email protected] mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.