Hi folks,
I note that in the general FAQ's we have
7.25 Why did my .Rprofile stop working when I updated R?

Did you read the NEWS file? For functions that are not in the base  
package you need to specify the correct package namespace, since the  
code will be run before the packages are loaded. E.g.,

      ps.options(horizontal = FALSE)
      help.start()

needs to be

      grDevices::ps.options(horizontal = FALSE)
      utils::help.start()

yet in the Help file under start up, we have

# Example of .Rprofile
options(width=65, digits=5)
options(show.signif.stars=FALSE)
ps.options(horizontal=FALSE)
....

Is this a conflict?

-Hank

Dr. Hank Stevens, Assistant Professor
338 Pearson Hall
Botany Department
Miami University
Oxford, OH 45056

Office: (513) 529-4206
Lab: (513) 529-4262
FAX: (513) 529-4243
http://www.cas.muohio.edu/~stevenmh/
http://www.muohio.edu/ecology/
http://www.muohio.edu/botany/

"E Pluribus Unum"






        [[alternative HTML version deleted]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to