Dear R experts,

I just upgraded R from 1.8.1 to 1.9.0 version. My .First()
function in ~/.Rprofile contains x11() and par() functions.

.First <- function() {
    x11(display = "", 8.0, 5.0)
    par(las = 1, ...)
##  ...
}

And, R claims now, on startup:

    [hello messages skiped ...]
    Error in .First() : couldn't find function "x11"
    >

I commented "x11" string, and get the same error about par:
    Error in .First() : couldn't find function "par"
    > 

There was no such a problen with previos R version.
Why .First function knows nothing about "x11" and "par" functions?
Thanks.

--
WBR,
Timur

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to