[R] Change margin size of complex barplot

2012-09-06 Thread Michael Eisenring
Dear R-help members, with the help of one of you the following R-Code was developed. No I have the (probably simple) problem that I want to increase font size of text and ylab names from 1 to 2. Unfortunately I'm not able to adjust the margin so, that the plot is appers complete (all names

Re: [R] Change margin size of complex barplot

2012-09-06 Thread Jean V Adams
Michi, Try putting your par() statements BEFORE your barplot() statement. For example, oldpar - par(mar=c(18, 7, 2, 2.1)) oldfont - par(font=3) bp - barplot(data.matrix(geo_barplot_percentage_top10), ... Jean Michael Eisenring eimic...@ethz.ch wrote on 09/06/2012 12:40:27 PM: Dear