I have searched a lot about this topic. I found many Threads about it.
But none of it fits to my Problem, cause most of them want to change window size or device size. Also if you use the pdf() function in R.
I'm using RSweave to build a pdf file. I tried working with "xlim" or "space" attribute.
Both of them not change the width or space in the Plot Area, just the width of the bars.
I also tried to work with par(mfrow) but that doesnt help me either.
I dont want to change the margin around the Plot Area. I want to make the Plot Area wider, because the title of the bars dissapeared, because there is no space.
Here is the code for the plot (remeber it's in a RSweave document):
<<echo=FALSE, fig=TRUE>>==
plot(data$SD03, names.arg =c("0-15","15-19","20-24","25-29","30-34",
"35-39","40-44","45- 49","50-54","55-59","60-64","65 Jahre oder Älter"))
# xlim=c(0, 70), space=5
@
And a Screenshot of the result:
Hope you can help me, thanks for answers!