Displaying 20 results from an estimated 600 matches similar to: "rapache memory problem"
2012 Feb 06
2
R-RApache to develop Knowledge Base
Hi all,
I need your opinion about using R-Rapache to build a knowlegde base to
bioinformatics field.
I have copious amount of genotype information (some few million records)
and would like to store it in MySQL database. Then, using RMySQL connector
I would like to use it for further analysis using R over a web interface.
The web interface which I am thnking off, just does not serve the purose of
2016 Jun 30
3
integration of R and php in Fedora 24
Dear All,
I am writing a project that will involve me writing code in R and php. i
would appreciate if someone guide me on how to integrate R to php
i wish to write an upload system in php that R will use and process and
post back the result on php.
thanks in advance
================
Worthy agent of Light
================
Jules Irenge
MSc Student
University of Liverpool
[[alternative HTML
2011 Jul 06
1
problem loading rgdal with Rapache, problem solved due to libexpat with apache.
Has anyone had problems with Rapache that don't show up on command line
execution of R? I just ran into this loading rgdal in Rapache page and having
a problem with loading shared object. The final complaint was that Stop_XMLParser
was undefined- this was surprising since grep -l showed it in expat lib and it worked
fine from command line. Finally, I noted the search path had apache/lib ahead
2007 Apr 16
2
Question for install Rapache package.
Hi, this is Charlie and I am trying to embed R in my apache server. However, I am having problem with installation. The R projet says that we can install add-on package with command $R CMD (rapache.0.1.4.tar.gz). However, I try to use it in command windows (windows xp) and an error shows. Please tell me when I can use the command (in c?? or in the same folder with the file). thx.
[[alternative
2012 Mar 12
2
erasing "[1]"
hi,
is there any way to erase the term "[1]"?
for example,
> a<-3+2
> a
*[1]* 5
the term [1] in front of number 5.
is there any way?
--
View this message in context: http://r.789695.n4.nabble.com/erasing-1-tp4467628p4467628.html
Sent from the R help mailing list archive at Nabble.com.
2012 Apr 13
2
How to define format of number
hi all,
What I want to do is show a number with thousand expression.
I dont know exactly the expression name but here is example.
1,000
10,000,000
is there a way to express a number like that?
--
View this message in context: http://r.789695.n4.nabble.com/How-to-define-format-of-number-tp4555778p4555778.html
Sent from the R help mailing list archive at Nabble.com.
2010 Dec 11
1
Rapache on windows
Hello all,
I searched on the www but could not find installation instructution for
rapache on windows. The page says that the release runs on UNIX/Linux and
Mac OS X operating systems.
Has anyone been able to configure it on windows? Any idea how to go about
it?
Thank you.
2012 Mar 31
3
clear console
hi,
I use R - 2.15(32bit), and want to make a code to clear a console.
Actually, I used to run following code to do that but after update the
version of R from 2.14 to 2.15, it doesn't work.
cls <- function (t) {
require(RDCOMClient)
wsh <- COMCreate("Wscript.Shell")
wsh$SendKeys("\f")
invisible(wsh)
}
cls()
or
cls <-
2012 Nov 03
3
to print system.time always
Hi all;
I want to print system.time whenever I execute any command.
It takes too much time to type "system.time()" function to all command.
is there any solution on it?
And,
apply(matrix,1,cumsum) command is too slow to some large matrix.
is there any function like rowCumSums ?
thank u!
--
View this message in context:
2012 Mar 16
2
how to speed up the inefficient code
hi,
i'm really in trouble to simulate some experiment.
that is, it takes too much time to process the following code.
following is short example,
-------------------------------------------------------------------------------------------------------
p<-data.frame(a=rnorm(10),b=rnorm(10),c=rnorm(10),d=rnorm(10))
test<-data.frame(a=rnorm(1),b=rnorm(1),c=rnorm(1),d=rnorm(1))
2012 Jan 19
1
RApache installation problems
Hi all
I was trying to isntall RApache last week but ran into strnge problems that no one else seems to be experiencing. At least I couldn't find anything after extensive googling.
First off, the machine I'm installing on looks like this:
Dell Optiplex 745
32 bit
2GB RAM
Fedora 15
httpd -v
Server version: Apache/2.2.21 (Unix)
Server built: Sep 13 2011 13:46:23
R:
R-2.14.0-3.fc15.i686
2012 Oct 22
3
Any good R server-with connection examples
I want to connect R with HTML/PHP pages to take input from user,do some
statistical processing on it & show results to HTML page again.
I search on net,i got Rserve package,but examples are mainly for java
langaure & not for PHP
i am wondering how to connect it to PHP-Apache-MySQL
Is there any good tutorial/video which will tell me how to do that ?
At least tell me logical way how to
2012 Mar 15
2
how to hide code of any function
hi
I'm making some program and it need to be hidden.
it's not commercial purpose but it is educational,
so i do want to hide the code of function.
for example,
if i made following function:
a<-function(x){
y<-x^2
print(y)
}
i do not want someone to type "a" and take the code of the function.
is there anyone who can help me?
--
View this message in context:
2008 May 27
1
error: C stack usage is too close to the limit.
I am trying to set up a RApache server on my Ubuntu 8.04. I have installed
apache2, R-2.7.0, and the RApache plugin. Both Apache and R seem to work
fine, but whenever i try to use the plugin i get this error: C stack usage
is too close to the limit.
I have tried to recompile apache2, R, and RApache, but i keep getting the
error. The weird thing is, i had exactly the same problem when i installed
2008 Jul 24
0
ANNOUNCE: rapache 1.1.0 release
Hello,
First presented at DSC2005, rapache is a project supporting web
application development using the R statistical language and environment
and the Apache web server. The current release runs on UNIX/Linux and
Mac OS X operating systems.
http://biostat.mc.vanderbilt.edu/rapache/
rapache 1.1.0 now supports Apache threaded web servers, but the Apache
Prefork Multi-Processing Module is
2012 Feb 27
5
macro function
hi,
I know how to use the "for" loop function like:
for(i in 1:ncol(mat)){
mat[i]<-b[i,2]
}
but, in this case
r1<-b[1,1]
r2<-b[2,1]
r3<-b[3,1]
r4<-b[4,1]
*
*
*
r3002<-b[3002,1]
r3003<-b[3003,1]
- must make vectors
how should I make a efficient code for that?
Is there anything in R like SAS MACRO function?
Please help me.
--
View this message in context:
2007 May 01
1
Embedding R and registering routines
Hello,
The use of .Call and the like all depend on loading shared libraries and
registering routines from it. Also, .Primitive and .Internal depend on
routines being registered in the R binary. And applications that embed R
can override routines declared in Rinterfac.h, but is there a way for an
application embedding R to register other routines defined in the
application without loading a
2012 Oct 14
1
stop at error point in for-loop
hi all:
Following is simple example,
for(i in 1:10000000){
a<-function(i){
#some function that has an error
}
}
What I want to know is the way to find the error point in for-loop, What "i"
makes the error.
is there any way to solve it instead of debugging and finding an error
manually?
Thanks,
--
View this message in context:
2012 Mar 15
1
how to assign "writeLines" function
hi,
what I want to do is assigning following code to any object.
k<-paste("thank")
writeLines(strwrap(k, width = 80,indent = 7,exdent = 6))
To assign the "writeLines" code,
I try this
a<-writeLines(strwrap(k, width = 80,indent = 7,exdent = 6))
or
assign(a,writeLines(strwrap(k, width = 80,indent = 7,exdent = 6)))
but it doesn't work.
is there any way to solve
2012 Mar 16
1
how to speed up the process of R
hi
I'm simulating some experiment by "for" function.
The problem is that it takes too much time.
for example,
a<-list()
for(i in 1:100000000){
a[[i]]<-i*1000
}
is there anyway to speed up the process?
I heard there is solution but i don't have idea.
Can anyone help me?
--
View this message in context: