similar to: memory.limit function not found

Displaying 20 results from an estimated 10000 matches similar to: "memory.limit function not found"

2018 Jul 12
2
loop para repetir valores de un vector
Hola a todos! Estoy intentando crear un vector (alt) a partir de la repetición de valores provenientes de otro vector (altitud). A cada valor de altitud lo quiero repetir 1247 veces, y de ahi continuar con el siguiente valor de altitud. Probé varias cosas, pero esto me pareció lo más coherente: altitud=read.csv("C:/Users/IER/Dropbox/Pasantia Castelar/YungasLigustroTS/altitud44.csv")
2014 Feb 26
2
error en ifelse
Hola No es lo mismo pero en mi caso personal la forma que utilizo se basa en el ejemplo de http://cran.r-project.org/doc/contrib/grafi3.pdf página 49, no usa el if pero también hay una condición para todos los verdaderos. No intenté en este caso en particular, habría que ver si también da problemas, pero como Carlos Ortega que sabe mucho dio una solución y como vos estas empezando no quiero
2014 Feb 26
2
error en ifelse
El problema puede estar en el no uso de suficientes paréntesis. Por ejemplo, con: > a=1 > b=0 > c=0 la instrucción ifelse(((a>1) | (b=0) | (c=1) | (d=1)), 11, 22) da el resultado esperado: [1] 11 Pero si se omiten los paréntesis se llega a un error de interpretación: destino de la asignación se expande a un objeto fuera del lenguaje Espero que sirva Jorge El 26/2/14, daniel
2015 Apr 23
2
cálculo de distancias
¡Hola! Estoy tratando de hacer una matriz que contenga los valores de distancias entre distintos elementos (con sus respectivas coordenadas x e y), pero salta un error, y no sé como corregirlo. ¿alguna idea? muchas gracias! saludos!! Priscila -- Dra. Priscila Ana Powell Instituto de Ecología Regional Facultad de Ciencias Naturales e Instituto Miguel Lillo Universidad Nacional de Tucumán
2003 May 20
3
a quick Q about memory limit in R
Hello, there, I got this error when i tried to run " data.kr <- surf.gls(2, expcov, data, d=0.7);" "Error: cannot allocate vector of size 382890 Kb Execution halted" My data is 100x100 grid. the following is the summary of "data": > summary(data); x y z Min. : 1.00 Min. : 1.00 Min. :-1.0172 1st Qu.: 26.00
2009 Aug 17
2
memory limit in R
Hi, all, I'm doing a discrete choice model in R and kept getting this error: Error: cannot allocate vector of size 198.6 Mb. Does this mean the memory limit in R has been reached? > memory.size() [1] 1326.89 > memory.size(TRUE) [1] 1336 > memory.limit() [1] 1535 My laptop has a 4G memory with Windows Vista (32 bit). I increased the memory limit to 2500 M. But still getting the same
2014 Feb 26
3
error en ifelse
Hola gente!! Estoy empezando a trabajar con R, y no puedo resolver lo siguiente: Quiero crear una nueva variable (datmatriz) que toma el valor de 1 si: -la variable sp es igual a L.lucidum -alguna de las variables pap11, pap06, pap01, pap96 es igual a muerto. El script que utilicé es : guaran$datmatriz<-ifelse (guaran$sp=="L.lucidum"|guaran$pap11 ==
2013 May 29
0
Relação de aprovados Mar Vermelho
Rela??o de aprovados Mar Vermelho: ?gua Clara: ANA PAULA RODRIGUES DA SILVA, LUCAS ARAUJO GOMES FROTA, GABRIEL VICTOR BARROS FORTE DA SILVA, QUIT?RIA DA SILVA G?IS, JO?O CARLOS MOREIRA DE CARVALHO, DAYANA MARIA DE SOUSA TAVARES, MARIA JULIENE CORDEIRO, JO?O PAULO DA SILVA. TALITA FERNANDES GONCALVES, BRUNO RAMOS FERNANDES, LUIZ HENRIQUE ALVES DAMASCENO, IAGO DA SILVA NOBRE, RITA ANGELA DA SILVA.
2013 May 29
0
Lista dos aprovados em vestibular Junqueiro
Lista dos aprovados em vestibular Junqueiro: Vale de S?o Domingos: ANA L?CIA MENDES DOS SANTOS, LUANA FELIX BIE, FRANCISCO PAULO DE OLIVEIRA MESQUITA, POLLIANA BRASILIANA DE SIQUEIRA, JO?O CARLOS MOREIRA DE CARVALHO, DANIELE SILVA OLIVEIRA, MARIA JOS? BATISTA LEITE, J?SSICA MAYARA P. PAULINO. SOLANGE FERREIRA ANDRADE, BRENA RODRIGUES MACIEL, LUIS FABRICIO DE FREITAS SOUZA, H?LIO BARROS FERREIRA,
2010 Jan 25
9
memory not released to dom0
after shutdown many domu, the memory is not release to dom0, before:  host: 8g phy memory 16g swap (4g used) dom0: 600m domu: consumed all memory, no new domu could be created after shutdown many domu:  host: 8g phy memory 16g swap (4g used) dom0: 600m domu: 2g why memory of dom0 is still 600m? how to release more to dom0? pls advise. Yahoo!香港提供網上安全攻略,教你如何防範黑客! 請前往
2015 Nov 21
5
CPU Limit in Centos
A few years ago, I vaguely recall some issue with RHEL needing a special license or something like that, if you had more than a certain amount of CPU's or a certain amount of RAM. Does Centos work fine for 2 CPU's, 16 cores, 32 threads, and 256 G of ram? Centos6 specifically.
2009 Jul 15
2
"limit -n XXX" does NOT allow on CENTOS 4.X???
We have CENTOS 4.7 on DELL server. our /etc/security/limits.conf already setup as: * soft nproc 2047 * hard nproc 16384 * soft nofile 4096 * hard nofile 65536 oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 8192
2015 May 16
4
How do I fix this: master: Warning: fd limit (ulimit -n) is lower than required
I get this when I reload dovecot after any changes. How can I fix it? I can?t find any reference to it anywhere. master: Warning: fd limit (ulimit -n) is lower than required under max. load (256 < 1000), because of default_client_limit thanks Robert
2006 Oct 26
2
What has been swapped out?
I have a SunRay server that I am looking at to determine some sizing requirements in my department. The machine has 16G of ram and 10G of swap. Currently, I have about 4G of swap used. I am wondering if dtrace/mdb can be used to find out what lwp/processes have been swapped out? Any hints? This message posted from opensolaris.org
2009 Jul 20
3
Limit RAM used by a perl script
I have a perl script which runs from a cron job. How would you limit the amount of RAM that this script is allowed to consume? Is there a ulimit setting that will accomplish this? If so does ulimit have to be run each time the script is run, or is there a way to set it permanently?
2006 Jun 20
1
changes to terms.formula in 2.3.x
Hi, all, I just recently noticed a change in terms.formula from 2.2.1 to 2.3.1 (possibly 2.3.0, but I didn't check). Here's the problem: ## 2.2.1 > update(~ x | y, z ~ .) z ~ x | y ## 2.3.1 > update(~ x | y, z ~ .) z ~ (x | y) and in the NEWS for 2.3.1 o terms.formula needed to add parentheses to formulae with terms containing '|'. (PR#8462) So, there must be
2006 Jun 14
6
memory limit?
I've got a simple (32bit) windows application (compiled in Borland c++ builder): int *p; while(1) { p = new int[10000000]; //allocates 40 MB of memory } on Windows XP it crashes after 50 iterations (i.e. 2 GB allocated) but on wine it crashes after 30 iterations (1200 MB allocated) is it impossible to use 2gb of memory in wine? why only 1.2GB is available? I've got wine 0.9.13,
2006 Jul 22
1
Possible Minor bug found in current 2.3.1 release of icecast2
I am new to your lists but I have found something in icecast 2.3.1 that may need further review. there is a segfault when you have a failover mount point and the failover mount is using ezstream and you restart ices-2.x and the clients fail back. found via gdb. Very short diff to format.c line 104 below. diff -urNab icecast-2.3.1.orig/src/format.c icecast-2.3.1/src/format.c ---
2006 Aug 11
1
more on date conversion differences in 2.2.1 vs 2.3.1
With dates I get different results with 2.2.1 and 2.3.1. From my somewhat naive point point of view, the 2.2.1 behaviour seems more sensible. Running the code below in 2.2.1: V1 2006-08-01 2006-08-01 1 1 With 2.3.1 I get: V1 1154354400 1154440800 1 1 # testdate.R t <- read.csv2('testdate.csv', header=FALSE) t$V1 <- as.POSIXct(t$V1)
2015 Jun 23
3
installing Centos Question
Hi just partition my harddrive to 2GB was not sure how many Mb or Gb centos runs can someone help me please that?s all I need to know mike