Skip to content
Back to formatted view

Raw Message

Message-ID: <1b0440e2-7bec-4947-b55f-ab59f1642dff@j35g2000yqh.googlegroups.com>
Date: 2008-12-03T08:24:51Z
From: cmr.Pent at gmail.com
Subject: par(mfrow = ) resets par('cex'), not reduces it

Hello group!

I use R 2.8.0 . I've just found out that par(mfrow =) *resets* par
('cex'), not reduces it as documented. To reproduce:

par(cex = 0.5)
par(mfrow = c(2, 2))
print(par('cex'))

It outputs 0.83, not 0.415 as expected.

Particularly such a behavior makes plot.acf effectively ignore par
('cex') value for multivariate case. I guess there are more situations
where the documented behavior would be more appropriate.

I think it is bug in par implementation not in documentation. Could
anyone comment on this?

Andrey