similar to: .Rprofile error: ps.options

Displaying 20 results from an estimated 5000 matches similar to: ".Rprofile error: ps.options"

2006 Apr 18
2
rpm build difference?
I noticed a strange thing on my CentOS 4 workstations today. Immediately after installing the tetex suite (tetex-xdvi tetex-dvips tetex tetex-latex tetex-afm tetex-fonts), "rpm -V tetex" reports some package inconsistencies: rpm -V tetex ........C /usr/bin/amstex ........C /usr/bin/bamstex ........C /usr/bin/bplain ........C /usr/bin/lambda ........C
2005 Jun 03
2
Is RHEL to CentOS conversion possible?
Is it possible to convert an RHEL 3 system into Centos 3 without reinstalling the OS? -- A k o p P o g o s i a n (akopps at ls.berkeley.edu) Unix Consultant Letters & Science Computer Resources 461 Birge Hall (phone: 510-643-2989)
2006 Jan 26
5
hosts fail to negotiate 1000Mbps speed
I am trying to connect two workstations (CentOS 3&4) directly using a straight through cat 5e cable with a crossover adapter on one of the ends. Both hosts have gigabit-capable ethernet card. According to lspci host 1 has: 03:0e.0 Ethernet controller: Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) (rev 01) and host 2 has: 05:00.0 Ethernet controller: Marvell Technology Group
2005 Sep 03
2
booting from a +2TB disk
I have been trying to install CentOS 4.1 on a new server today. The installation went fine but the system doesn't boot. It doesn't even get to the Grub screen. The system has a 3ware 9500 series controller and 12 250GB SATA disks which are configured for RAID5 with one hot spare. I searched on the web and noticed that this is a Grub (and Lilo) limitation. Is there any way around it other
2004 Aug 21
4
loadhistory() in .Rprofile ?
dear wizards: my .Rprofile has just one command for testing, loadhistory("~/.Rhistory") but this gives me an error on R startup: Error: couldn't find function "loadhistory" Invoking loadhistory() as the first interactive command works fine; incidentally, I believe loadhistory() in the .Rprofile worked in earlier or other platform R releases, too. Is the .Rprofile
2004 Jul 21
2
add more data to a data file, problem with .Rprofile
Hi, Is there a way to incorporate an R object x to a file already containing R objects? It seems that 'save' is not capable to do this. If I save x to a file containing previously saved data, then I will lose this data. I use the funcion hsv in .Rprofile but it is recognized. Couriously, if I source .Rprofile when R is already running I do not get any error message. Thank you.
2002 Aug 12
1
79.00FE error on HP8150DN
For some reason, our HP8150DN printers hang with this error and require power-cycling after a user tries to print any job from Windows2000 or NT (including a test page). The Samba server is running 2.2.5 on a Solaris 2.6 box using Sun's printing system. It forwards all jobs to another Solaris machine that runs LPRng-3.8.2 and ifhp-3.5.1. I am able to install and use all of our printers
2004 Oct 20
2
par() defaults in Rprofile
Dear List, I've tried to set default par() in .Rprofile by putting the following in the .First function: setHook(packageEvent("graphics", "onLoad"), function(...) {graphics::par(cex.axis=1.5, cex.lab=2, las=1)} ) My goal was to set par() defaults without opening a device everytime at startup. However, the next plot I create doesn't show these
2004 May 21
2
.First() in R 1.9.0
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
2004 Apr 13
1
par() in .Rprofile
Dear all I installed new version (from binaries) and I noticed that par(bg="white") which I have in my .Rprofile causes error message on startup But if I issued this command immediately after startup everything worked as expected. I did not see any note in changes file or elsewhere. Should I specify white background in .Rprofile differently? Or is there some other recommended way
2005 Nov 04
1
fatal rpm/cpio error
How am I supposed to deal with this error? # rpm -Uvh filesystem-2.2.1-3.centos.1.i386.rpm Preparing... ########################################### [100%] 1:filesystem ########################################### [100%] error: unpacking of archive failed on file /home: cpio: chown failed - Operation not permitted # rpm -q filesystem package filesystem is not
2002 Aug 19
1
force duplex mode for Apple LW8500 printer
Hello. We have an Apple LaserWriter8500 printer that has a duplex printing unit. The printer is configured to print on both sides of a sheet by default (e.g. if I print a document with unix lpr command, they print on both sides). However, I couldn't manage to make my Win2k desktop to print dual-sided output on that printer although I am sending the jobs to the same LPRng queue (routed through
2007 Jan 15
1
Conflict in .Rprofile documentation FAQ vs. Help?
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
2013 Jul 15
2
suppress startup messages from default packages
Hi all, several packages print messages during loading. How do I avoid to see them when the packages are in the defaultPackages? Here is an example. With this in ~/.Rprofile ,----[ ~/.Rprofile ] | old <- getOption("defaultPackages") | options(defaultPackages = c(old, "filehash")) | rm(old) `---- I get as last line when starting R: ,---- | filehash: Simple key-value
2006 Jan 04
1
R newbie configuration
I think I did enough reading on my Own about startup ( part of the morning And most of this afternoon ) to not feel uncomfortable asking for confirmation of my understanding of this startup stuff. Obviously, the startup process is more complicated Than below but, for my R newbie purposes, It seems like I can think of the startup process as follows : Suppose my home directory =
2004 Apr 21
1
Error with 1.9.0 - winMenuAdd not usable in .Rprofile
I had this problem too. The documentation for the winMenus says that these functions are part of the utils package. R must be loading this library after it sources in Rprofile. If you add library(utils) to the beginning of your .First function, it should take care of the problem. Brian Gregor, P.E. Transportation Planning Analysis Unit Oregon Department of Transportation Brian.J.GREGOR at
2004 Apr 21
2
Assigning functions in Rprofile
I use the ugly hack shown below as my .Rprofile (mainly because I couldn't find any other way to spawn a new mozilla window on starting R or calling help.start(), but then send all the help html documents to that new window). With a recent change from a cvs checkout to the released 1.9.0 I find that the new hs() appears if there is nothing of that name in .RData, but if there is the old hs()
2006 Jan 05
0
.Rprofile files (was R newbie configuration)
Thanks a lot. setHook is Currently not in my knowledge set But it's great to save these Thing so I can look them up When I feel more comfortable. Just to add to that Stata versus R discussion : I believe, anyone who uses any other package than R, is probably missing out in the long run. It's truly unbelievable what has been done here. I feel like I fell asleep for 5 years ( by not using
2013 Oct 03
1
When to use RProfile.site or .Rprofile
I would appreciate some advice on what the preferred contents of RProfile.site vs. .Rprofile should be. A .First() function can reside in either one, but is it preferred to place it in .Rprofile? I currently use .First() in .Rprofile files placed in separate directories used for different RStudio projects. Thank you [[alternative HTML version deleted]]
2008 May 02
2
.Rprofile is being executed twice
Hi, After updating to R 2.7, my .Rprofile executes twice on startup. I confirmed this by putting in the following line: print("starting .Rprofile...") When I start R, I see: [1] "starting .Rprofile..." [1] "starting .Rprofile..." This seems like the obverse of the following FAQ: