similar to: Memory in R.

Displaying 20 results from an estimated 400 matches similar to: "Memory in R."

2007 Oct 28
5
Help for Beginner!!
LĂ©andre BASSOLE PhD Student CNRS-CERDI 65 Bd Francois Mitterrand Boite Postale 320 63009 Clermont-Ferrand CEDEX 1 FRANCE Tel : +33 4 73 17 74 45 Fax : +33 4 73 17 74 28 ----- Forwarded Message ---- From: Leandre Bassole <leandrebassole@yahoo.co.uk> To: r-help@r-project.org Sent: Saturday, 27 October, 2007 8:41:05 PM Subject: Hi all!! I am a new user of R. I am very familar to Stata, but
2006 Aug 16
3
problem with sieve implementation
Hello, I follow the instruction of this link (http://wiki.dovecot.org/LDA) to implement sieve with my dovecot installation (dovecot-1.0rc2) and i'm running the timsieve daemon of my cyrus-imapd installation but i got the following error message when the sieve daemon try to formward message : entered bc_action_emit with filelen: 16 Aug 13 14:53:27 ldap sieve[3870]: entered bc_action_emit with
2006 Sep 25
1
sieve problem unresolved
hello, I follow your suggestions : _cyrus timsieved installed on the two LDA server _the sieve script stored in the /var/home (which is the virtual home directory) and in /var/mail/user/ for testing purposes But nothing happened when the user receive a email. Below the sieve script. Regards #################################################### # This script has been automatically generated by
2006 Aug 16
5
ldap quota limitation problem
hello, We have configured the quota enforcement folowing the link (http://wiki.dovecot.org/Quota) but we note that the global quota limitation configuration in dovecot.conf works well but not the ldap users configuration limit. For example in the casee below, we have tried to limit quota usage for some users to 1Gb but only the global quota limitation appear in the user quota. please find below
2006 Sep 11
1
sieve unresolved problem
hello, I have submitted a few weeks ago problem on sieve implementantion but there not useful solution for me at this time. I think that it depend on my mail architecture : _One NFS server _two dovecot POP/IMAP server (for pop and webmail access) : the POP/IMAP don't run dovecot LDA _two delivery serveur with exim and dovecot LDA : they communicate with external relay servers and deliver mail
2008 Mar 03
2
handling big data set in R
Hello R users, I'm wondering whether it is possible to manage big data set in R? I have a data set with 3 million rows and 3 columns (X,Y,Z), where X is the group id. For each X, I need to run 2 regression on the submatrix. I used the function "split": datamatrix<-read.csv("datas.csv", header=F, sep=",") dim(datamatrix) # [1] 2980523 3
2004 Feb 08
1
Ultimate PDC Upgrade
Samba folks: The title maybe indulgent, but I wanted to get everyone's attention. I currently run mandrake 9.0 (FILESERVER) with samba 2.2.8 running as a PDC and file server for 20 WinXP workstations. We bought a new server to replace (FILESERVER). However, I want to install mandrake 9.2 and samba 3.0 on the new server -then I want the new server also to replace the PDC of the old
2005 Nov 23
2
[OT] Message-ID Threading w/Subject Append Example -- WAS: pine rpm for centos 4
On Tue, 22 Nov 2005 11:29:00 -0500 (EST), Joshua Baker-LePain <jlb17 at duke.edu> wrote: > I'm sorry, but making decisions based on Stupid User Tricks is about > the worst policy I can imagine. That way lies madness. No, where lies madness is in the self-centred way in which some people make demands of others to alter innocuous behaviour so that the data requirements of
2006 Feb 03
3
R-2.2.1-INSTALL Issue with TCLTK
Hi I am not able to have a working tcltk library in R-2.2.1 inspite of trying different options suggested in the FAQ's. I am using the following configure option and I do get the tcltk package installed but with a missing libs folder. ./configure -prefix= "~R-2.2.1" --enable-R-shlib --enable-linux-lfs --with-zlib --with-gnu-ld --with-tcltk
2004 Jun 25
7
circle / oval / semicircle ?
hi: where would I find facilities to draw circles, ovals, and semicircles? (or should I construct them myself using curve?) regards, /ivo
2004 Jun 20
4
if syntax
I ran into an interesting oddity of R, if (0) { print(1); } else { print(2); } is a syntax error, while if (0) { print(1); } else { print(2); } or if (0) { print(1); } else { print(2); } is not. I presume it has to do with the duality of the newline functioning as an end of command (;) character, though it still seems a bit odd, and it took me a while to figure out
2011 Feb 11
2
fitdistr question
Hello, I tried to fit a poisson distribution but looking at the function fitdistr() it does not optimize lambda but simply estimates the mean of the data and returns it as lambda. I'm a bit confused because I was expecting an optimization of this parameter to gain a good fit... If I would use mle() of stats4 package or mle2() of bbmle package, I would have to write the function by myself
2005 Jun 10
6
us zipcode data map
i've search the email archives, searched the documention of various map packages and done an R-site search, but have been unable to find direct resources for creating maps of the US that are colored or annotated or ... by zipcode data. For example, create a map of the US and color each zipcode region by its population using two vectors z,p containing the zipcode and population,
2008 Dec 05
6
levels update
Hello, I hope this question is not too stupid. I would like to know how to update levels after subsetting data from a data.frame. df <- data.frame(factor(c("a","a","c","b","b")), c(4,5,6,7,8), c(9,1,2,3,4)) names(df) <- c("X1","X2","X3") my.sub <- subset(df, X1 == "a" | X1 == "b")
2008 Jul 17
4
REvolution computing
Hi, everybody. Sorry to bring up the subject again but I have visited the revolution computing web page, but its not clear when or what will be the new release be. Does anybody have information about that?. Does anybody know if the version that will be released will be validated?. I have been reading the previous mails about validation and I work in a Pharma company and validation is a big
1998 Apr 18
1
R-beta: Read_Table?
Hello All ! Can anybody help me with simple question, please? I have tried to input some data to R and I use the read.table function. The exactly form that I type was: > test1 <- read.table("D:\Rstat\Work\Abt.data",header=T,sep=",") I've got the response from R: Error: "scan" can't open file The file that I specify above "Abt.data" is a
2006 Aug 23
5
two density curves in one plot?
Hello, I was wondering if I can plot two curves I get from "density(data)" into one plot. I want to compare both. With the following commad, I just get one curve plotted: plot( density(mydata) ) Sorry for this stupid question but I could not find a solution until now... Antje
2010 Mar 29
1
urgent
reetings List, I am a newbie in this list so please be indulgent. I am actually about running a samba (PDC) with OpenLDAP in Debian. I installed it (Samba) and configured it, but it didn't still work. Here are some outputs: from *net getlocalsid* csiidebian:~# net getlocalsid [2010/03/29 17:57:33, 0] lib/smbldap.c:1086(smbldap_connect_system) failed to bind to server ldap://127.0.0.1 with
2005 Jun 10
1
Redirect console to file
Hi, Is it possible to redirect the staff that normally goes to the R console window into a file. sink() does this for sdterr and stdout. But I need something that redirects "everything" that appear in the console window (including the top-level commands). I want to achieve the same effect as that of the following command under sh: R < foo.R &> foo.Rt only I want the
2011 Feb 21
2
Console output
Hi there, I though there has been a possibility to force the output on the console with one element per line. Instead of this: > 1:10 [1] 1 2 3 4 5 6 7 8 9 10 something like this > 1:10 [1] 1 [2] 2 [3] 3 [4] 4 [5] 5 [6] 6 [7] 7 [8] 8 [9] 9 [10] 10 Can anybody help? Antje