search for: gaussfact

Displaying 17 results from an estimated 17 matches for "gaussfact".

Did you mean: gaussfacts
2011 Jul 30
1
R checks links broken
...4 error. Spot checking for other package yields the same. Looking at http://cran.r-project.org/web/ shows that no checks/ diretory can be found. Did an NFS mount go down? Cheers, Dirk -- Gauss once played himself in a zero-sum game and won $50. -- #11 at http://www.gaussfacts.com
2011 May 10
1
Time-machine typo
...for printing the R manual %%% Part of the R package, http://www.R-project.org %%% Copyright (C) 2003-20010 The R Foundation ^^^^^ Very forward-looking ... Dirk -- Gauss once played himself in a zero-sum game and won $50. -- #11 at http://www.gaussfacts.com
2011 Jun 06
1
Lapack or Blas crashing R when using "large" matrices (Ubuntu 11.04)
Hello, This simple SVD calculation (commands are copied immediately below) crashes on my Ubuntu machine (R 2.13.0). However it worked fine with R.12 and Ubuntu 10.04, and it also works fine on my Windows 7 machine with R 2.13, so I suspect there's a problem with (my?) Ubuntu and / or R. I'm using the R distribution that is accessible with Ubuntu's repositories manager, I am not
2011 Jul 28
1
download/install R in Ubuntu for new users
For someone who is transitioning away from Windows to Ubuntu for the sake of R, can anyone point me to fail-safe, step-by-step instructions on how to install/upgrade R? I've followed the instructions from other threads here but still get 2.12.1 when I launch R. [[alternative HTML version deleted]]
2011 May 17
1
Rscript hangs on exit with ubuntu 11.04
Hi, I have run into a strange issue with Rscript and plyr. When running the following Rscript: #!/usr/bin/Rscript library(plyr) d = ddply(data.frame(a=1:101,b=1:101), .(a,b), nrow) head(d) the script does not terminate. It prints out the results from head(d), but does not return to the shell. By changing the a and b to 1:100, the script returns. The same code running within the R shell works
2011 Jun 21
2
Error using RcppGSL
Hi, I get an error using RcppGSL: fatal error: gsl/gsl_vector.h:No such file or directory. What is the best way to install these files as they seem to be missing? Thanks, Oyvind -- View this message in context: http://r.789695.n4.nabble.com/Error-using-RcppGSL-tp3613535p3613535.html Sent from the R devel mailing list archive at Nabble.com.
2011 Jun 02
2
Export a function from RCPP in R of type double
Hello to everyone I have written a small c++ function of type double function(double,double); and i want to export it in R using RCPP. After some trials i have realized that the only way i could do it working is to declare the function as void function (double x, double y, double result) and pass the result with RCPP Can you please tell me if this is the only way out? And if this is the case how
2011 Jun 16
2
cannot install Rcmdr on ubuntu 11.4
Hello, For one reason or another, I cannot install Rcmdr on my R 2.12.2 ubuntu 11.4 system. I run R as root When I try to install Rcmdr, then whatever mirror I select, I get the message: install.packages('Rcmdr',dependencies=TRUE) Installing package(s) into ‘/usr/local/lib/R/site-library’ (as ‘lib’ is unspecified) --- Please select a CRAN mirror for use in this session --- Loading Tcl/Tk
2011 Jul 13
1
A question on the GCC toolchain compiled for ARM
Hello, We are security researchers at Vrije Universiteit Amsterdam. We have a scenario where we need to be able to compile a C source on the Android device itself. Hence, I came upon the R project's Android port: http://rwiki.sciviews.org/doku.php?id=getting-started:installation:android I could not find who created the "android gcc", so I guess R porting for Debian is the closest
2011 Apr 25
2
Problem installing XML in Ubuntu 10.10
Hello folks, Here's is info on what system I'm working on. > sessionInfo() R version 2.13.0 (2011-04-13) Platform: i686-pc-linux-gnu (32-bit) I'm trying to install the XML package. However, I end up with the following error message. > install.packages("XML") .... checking for xml2-config... no Cannot find xml2-config ERROR: configuration failed for package ‘XML’ *
2011 Apr 23
2
Could I use R function lm or nlm in C code?
Dear R, I'm doing some simulation work and it takes me a lot of time to do it in R. So I try to implement it in C code, but I want to use some R functions directly for my lazy and the robustness of code. For example, I will use lm and nlm in my program. How could I use R's lm and nlm function directly? I thinks these functions are not included in the R's include directory. Do I need
2011 May 06
1
cerr and cout not working calling c++ from R
Hi, Sorry, I just tried posting this but I had it in the wrong format of text, so this is a cleared format repost: I?m trying to call some of my c++ code from R and seem to be having an issue with streams, although that?s just one obvious sign of something different in performance between calling the same function from main in c++ vs. calling the same function from R. I?m not getting any signs
2011 Aug 06
3
rJava on Debian squeeze (or other versions of Linux)?
Has anyone successfully installed rJava on Debian squeeze (or any other version of linux)? I keep getting the ... (JDK) is missing or not registered in R error message when installing the package. I've tried running 'R CMD javareconf', setting JAVA_HOME and editing /etc/R/ldpaths by hand, but to no avail. The problem might be related to the R_JAVA_LD_LIBRARY_PATH that's
2011 Jul 21
2
revolution-mkl package not functioning correctly with R 2.13
It appears that the revoluton-mkl package, available via the multiverse Ubuntu repository with the purpose of adding multi-threaded numeric libraries to R, is not function correctly with R 2.13 (at least the version found on CRAN). Testing with "R-benchmark-25.R" (found at http://r.research.att.com/benchmarks/), I get the following error, after installing the revolution-mkl package
2011 Jun 16
4
Controlling stdin and stdout in an embedded R instance
Hello, I am very new to R but my question is with respect to the C API for working with an embedded R console. I have been able to start and stop an embedded R console from within a C program as well as use the API to execute commands in it. I am seeking a mechanism to individually send native R commands to an embedded console and then consume the output of these commands. Specifically, I
2011 May 06
1
Create and access several instances of a C++ class from R
Hello We have a C++ class with several methods that manipulate an object. How is it possible to create several instances of that class *from R* in the C++ realm, which can then be accessed via a given name character? Symbolic example (we hope this illustrates our problem): // C++ side: class Foo{ ... } // perhaps: void my_new_instance_wrapper("the_character") // plain to see that I am
2011 Jul 24
4
inline/Rcpp: Problem with space in path under Windows
I am trying to run inline/Rcpp under Windows 64. The RTools are installed on a spaceless path D:\rtools. Inlining pure c-code works perfectly. When I try the sample code for cpp in the cxx Documentation, I get: x86_64-w64-mingw32-g++.exe: C:/Program: No such file or directory The path to the compiler is correct. Obviously there is some problem with the space in C:/Program (Files). Any ideas