I have a problem that my legend is too big, my code is:
par(mfrow=c(1,2)) hist(alvsloss,breaks = 100, freq=F,main="Histogramm, density curve (gaussian kernel) \n and fitted normal distribution of Allianz simple losses ",xlim=c(-0.15,0.15),xlab="loss",ylab="density",cex.axis=1.2,cex.lab=1.2) lines(density(alvsloss), col="black", lwd=2) curve(dnorm(x, mean = mean(alvsloss), sd = sd(alvsloss)), add=TRUE, col="black",lwd=2,lty="dotted") legend(-0.155, 30, c("(Gaussian) Kernel density","fitted normal distribution"),lwd=2, cex=0.8, col=c("black","black"), lty=1:2) qqnorm(alvsloss,main="normal QQ Plot",cex.axis=1.2,cex.lab=1.2) qqline(alvsloss)
This gives the following picture:

The problem is that the legend on the left is too big, how can I control the width of the window? The box is too big.
can be found here: http://uploadeasy.net/upload/ocafq.rar
Stat tistician
source share