Zeilenumbruch in expression ()?
Ich habe das folgende Histogramm in R:
hist(alpha,cex.main=2,cex.axis=1.2,cex.lab=1.2,
main=expression(paste("Histogram of ",hat(mu), ", Bootstrap samples, Allianz")))
Der Titel ist zu lang, deshalb möchte ich einen Zeilenumbruch. DemzufolgeFaden Ich habe es versucht
hist(alpha,cex.main=2,cex.axis=1.2,cex.lab=1.2,
main=expression(paste("Histogram of ",hat(mu), ",cat("\n") Bootstrap samples, Allianz")))
oder
hist(alpha,cex.main=2,cex.axis=1.2,cex.lab=1.2,
main=expression(paste("Histogram of ",hat(mu), cat("\n"),", Bootstrap samples, Allianz")))
Aber beide funktionieren nicht, wie kann ich einen Zeilenumbruch in paste () bekommen?