similar to: Package crashes R under Windows Vista

Displaying 20 results from an estimated 600 matches similar to: "Package crashes R under Windows Vista"

2008 Dec 30
0
pre-exec works in XP but not in Vista
I run a sshd as well as a rsyncd within cygwin in both, in WindowsXP as well as in Windows Vista. Strange to say, pre-xfer will work in XP perfectly but in Vista only after a previously login through sshd. Strange too, that sshd use bash.exe and pre-xfer use sh.exe which is a copy of bash.exe. Without a previously login through sshd the forked rsync process will hang. If I do remove sh.exe, rsync
2007 Jul 13
3
THANK YOU: Updating R version
Based on the feedback received, I did the following: a) moved my lib sub-directory from the existing installed R version to c:\myRLib b) installed the updated R version c) created .Renviron file in the home directory (C:\R-2.5.1) with the line R_LIBS=c:/myRLib d) used .libPaths() command to confirm that the new R installation was recognizing the myRLib sub-directory e) deleted my old R
2005 Apr 26
2
.libPaths()
Hello I use the function .libPaths() > .libPaths() [1] "/usr/local/lib/R/library" > .libPaths(c("/usr/local/lib/myRlib","/usr/local/lib/library")) > .libPaths() [1] "/usr/local/lib/R/library" but it simply does not pick up the new path. Can anybody help? (The problem originates from the inability to install packages into
2007 Feb 08
2
obscure error with subsetting as.list() of a function then assigning that a (PR#9500)
Hello. I was writing some code that computes on the language and came across this. I can work around it, but thought you might like to know about it. > f <- function(x) { NULL } > a <- as.list(f)[[1]] > a # ie print(a) Error: argument "a" is missing, with no default Note it says *argument* "a", which is strange. In fact, and unsurprisingly, the bug lies with
2006 Sep 04
1
RGui problem in Windows XP with demo() and help()
I just installed R-2.3.1pat under Windows XP as well as the associated RWinEdt. If I start RGui from its shortcut (but do _not_ also start RWinEdt) and then try to execute demo() or help(), I get a RWinEdt pop-up error window with message: File "D:\WP\WinEdtData\WinEdt\D:/WP/WinEdtData/WinEdt/R.ini" does not exist! Qualifier -e/-E does not specify an existing file! First
2008 Dec 11
5
package development
I'm making the move of the survival package from my own environment to, and have stumbled into a vacuum. The R Extensions manual has really nice instructions about how to lay out the directories, order the files, and run tests for DISTRIBUTION of a product, but I can't find anything on how to set up a reasonable DEVELOPMENT environment. In my local world, I had the .c and .s files in
2007 Mar 06
2
bug: sticky symbol refs? (PR#9555)
Hello. What happens in the following is that I create two simple functions, f and g, on the workspace. Then I replace g. When I then call f, it uses the old version of g. Now clearly, the circumstances for this to happen must be quite special and rare. But I'd say they're not pathological. It seems to require two things: 1) masked versions of f and g on a search position lower down the
2008 Dec 05
2
Error in R CMD INSTALL on Windows XP using Rtools28
Dear all When trying to install my package on Windows XP on my Mac, I get the following error: ---------- Making package xps ------------ ... ... xpsDict.cxx "C:\Programme\Microsoft Visual Studio 9.0\VC\bin/link" /dll /def:xps.def /out:xps.dll fp10.obj -opt:noref -nologo -include:_G__cpp_setupG__Hist -include:_G__cpp_setupG__Graf1 -include:_G__cpp_setupG__G3D
2010 Sep 15
2
lapack in R 2.11.1 (Ubuntu 10.04.1)
Hi there, I'm trying to install the package RcppArmadillo in my R 2.11.1 which I installed and regularly update via Ubuntu's repositories. When I try to install RcppArmadillo from CRAN I get: > install.packages('RcppArmadillo', lib='~/myRlibs') [...] g++ -shared -o RcppArmadillo.so RcppArmadillo.o fastLm.o -L/home/matias/myRlibs/Rcpp/lib -lRcpp
2008 Oct 31
1
set the language
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20081031/1dad1061/attachment.pl>
2009 Sep 18
1
Unable to install lme4
I am unable to install package lme4, after several attempts to do so using various repository URLs. Just to make sure everything works fine with proxy, connection, etc, I installed ggplot2 and it worked fine. I am using command install.packages("lme4", lib="/myRlibs"), optionally using contrib argument with different URLs. Error message the I get is Warning message; In
2010 Nov 27
0
Problem with installing RWinEdt on Win 7
I am having problems installing RWinEdt on a Windows 7 machine after upgrading to R 2.12 and running R as an administrator. I have WinEdt 5.x installed on my machine (no WinEdt 6). Please see the r session as below. Would appreciate any feedback. Thx. ______________________________________________________________________________________ > library(RWinEdt) Error in library(RWinEdt) :
2009 Dec 07
0
install.packages error
Dear listeRs, I am trying to install a package from the command line, using install.packages(). Specifying all the parameters, I simply get this error: > r <- getOption("repos") > install.packages("rJava", dependencies=T, repos=r, lib="/home/adi/myRlib") Error: subscript out of bounds Additional info about my system (Kubuntu 9.10): > sessionInfo()
2004 Mar 10
2
Rcmd BATCH command line arguments
I want to run Rcmd BATCH with R_DEFAULT_PACKAGE=base so it doesn't load any packages, but it seems to reject this argument because it does not start with a '-' or '--'. Is there a different argument that will work? Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104
2007 Feb 08
0
obscure error with subsetting as.list() of a function then (PR#9504)
peter-m.schumacher at db.com writes: > Hello. I was writing some code that computes on the language and came acr= oss > this. I can work around it, but thought you might like to know about it. > >> f <- function(x) { NULL } >> a <- as.list(f)[[1]] >> a # ie print(a) > Error: argument "a" is missing, with no default > > Note it says *argument*
2007 Feb 09
0
obscure error with subsetting as.list() of a function then (PR#9506)
Ok, thanks for clearing it up. But: > It's not a bug things work in ways that confuse users when they pry > into things they were not expected to pry into.... Do you have a good= > reason to call this a bug? Well if it's intended to work that way then it's not a bug. As I said, I was computing on the language, in particular writing code = that processes the parse tree of a
2010 Feb 07
0
Somewhat off topic: Building Android on CentOS 5.4
I asked this question on android-platform at googlegroups.com but never received a response. I suspect most (if not all) people compiling the Android platform are using some version of Ubuntu ... hence the lack of response. I would not normally cross post but am hopeful that another CentOS 5.4 user (not on the android-platform forum) might have successfully built the Android platform. I would
2015 Aug 22
2
SSE return w/ elf64 ABI
Hi, LLVM made a change a few months ago and starting erroring out when a float is returned in x64 and SSE is disabled. This makes sense, really, since it's specified by the ABI that the return value must be put in a register you were told to disable, but it's breaking soft floats in Rust on x64. It seems there are two options: LLVM could break the ABI spec and have working soft floats on
2004 Mar 17
1
Cupsprinter over samba won't work for w2k clients
Hallo! I installed Samba 3.0.1 on Deb Woody 3.0 with Cups 1.1.19 and joined to an NT4 Domain without problems, after solving the "Umlaut" problem. Unfortunately the System was installed in german... I read a lot in the Samba HowtoCollection and installed the printer following to it step by step. Added the printer driver via APW, then connected from the Client and changed some
2002 Mar 13
2
\\[server] is not accessible
hi I configured samba-2.2 on RH7.2 when I open the Network Neighborhood I can see the samba server. but when I try to open it, I get an error dialogbox: "\\[server] is not accessible" then :computer or sharename could not be found ..." what's reason? TNX -- AGHELI --