Fabio Sanchez wrote:
Dear R-nautes,
I installed the 2.7.1 version of R and found it is not possible to modify
graphical parameters with par().
for example;
par(mfrow=c(2,2))
Error in c(2, 2) : unused argument(s) (2)
par$mfrow
NULL
Does any one know what is the cause of thi
Thank you all,
I accidentally loaded a variable named "c".
All the best,
Fabio
On Wed, Jul 23, 2008 at 1:08 PM, Prof Brian Ripley <[EMAIL PROTECTED]>
wrote:
> Did you start R with --vanilla to check that this is not something you have
> done? It is good practice, and I suspect will show you t
Fabio Sanchez wrote:
Dear R-nautes,
I installed the 2.7.1 version of R and found it is not possible to modify
graphical parameters with par().
for example;
par(mfrow=c(2,2))
Error in c(2, 2) : unused argument(s) (2)
That's not an error from par(), it's an error from c(). I woul
Perhaps you have a function called 'par' in your workspace.
On Wed, Jul 23, 2008 at 6:56 AM, Fabio Sanchez <[EMAIL PROTECTED]> wrote:
> Dear R-nautes,
>
> I installed the 2.7.1 version of R and found it is not possible to modify
> graphical parameters with par().
>
> for example;
>
>> par(mfrow=
Hi Fabio
Have you used the name "c" for something else? Try typing in "c" at the
command line, you should see something like:
> c
function (..., recursive = FALSE) .Primitive("c")
Regards
John
---
for example;
> par(mfrow=c(2,2))
Error in c(2, 2) : unused argument(s) (2)
> par$mfr
Did you start R with --vanilla to check that this is not something you
have done? It is good practice, and I suspect will show you that you have
mis-diagosed this problem.
On Wed, 23 Jul 2008, Fabio Sanchez wrote:
Dear R-nautes,
I installed the 2.7.1 version of R and found it is not possibl
Hi Fabio
Works OK for me.
> par(mfrow=c(2,2))
> par("mfrow")
[1] 2 2
>
But then I am using Windows ...
> sessionInfo()
R version 2.7.1 (2008-06-23)
i386-pc-mingw32
locale:
LC_COLLATE=English_United Kingdom.1252;LC_CTYPE=English_United
Kingdom.1252;LC_MONETARY=English_United
Kingdom.1252
7 matches
Mail list logo