search for: ana

Displaying 20 results from an estimated 419 matches for "ana".

Did you mean: an
2010 May 02
2
Sendmail Configuration Problem - 550 5.1.1 - User unknown Problem
...in 'SMART_HOST' in the sendmail.mc file and have also recompiled it to produce the sendmail.cf. I also restarted the sendmail service. ---------------------------------------------------------------------------------------------------------------------------------------------------- telnet ana.boeing.com 25 Trying 134.51.151.114... Connected to ana.boeing.com (134.51.151.114). Escape character is '^]'. 220 ana.boeing.com ESMTP Sendmail 8.12.11.20060308/8.12.11; Sat, 1 May 2010 16:39:06 -0700 helo ana.boeing.com 250 ana.boeing.com Hello ana.boeing.com [134.51.151.114], pleased to...
2003 May 17
5
how to construct tree under R
...ent a tree structure in R, without using rpart library... I don't have any clue about appropriate approach... Anyway, I can't use pointers under R...so how to to it? lists, vectors... Anyway, does anybody knows how the regression tree in rpart was implemented... Someone please help! Thanks, ana
2006 Mar 10
6
Linux editor like WinEdt?
Hi to all, I initiate in R - Linux and I've some problems to find an editor with R interface as like RWinEdt for WinEdt. Anyone know one? Thanks in advance for your kind cooperation. Best regards Atenciosamente Ana Patricia Martins ------------------------------------------- Serviço Métodos Estatísticos Departamento de Metodologia Estatística Telef: 218 426 100 - Ext: 3210 E-mail: <mailto:ana.pmartins@ine.pt> ana.pmartins@ine.pt [[alternative HTML version deleted]]
2008 May 01
2
zero variance in part of a glm (PR#11355)
...ck Cry1Ab 2 4 4 20 24 24 19 bcock Cry1Ab 3 1 1 23 24 24 20 bcock Cry1Ab 4 2 2 22 24 24 21 bcock Vip3A 1 11 4 13 17 24 22 bcock Vip3A 2 15 5 9 14 24 23 bcock Vip3A 3 5 3 19 22 24 24 bcock Vip3A 4 10 6 14 20 24 25 ana control 1 23 0 1 1 24 26 ana control 2 23 0 1 1 24 27 ana control 3 22 0 2 2 24 28 ana control 4 23 0 1 1 24 29 ana Cry1Ab 1 18 1 6 7 24 30 ana Cry1Ab 2 17 4 7 11 24 31 ana Cry1Ab 3 13 4 11 15 24 32 an...
2015 Jan 13
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...-cflaa.s -mllvm -use-cfl-aa -mllvm -debug-only=licm LICM hoisting to for.body.lr.ph: %2 = ptrtoint i32* %Index to i64 Why CFL AA cannot allow hoisting this out: %21 = load double** %arrayidx8, align 8, !tbaa !5 Which leads to this extra load in assembly code: ldr x14, [x4, x9, lsl #3] Thanks! Ana. -----Original Message----- From: Hal Finkel [mailto:hfinkel at anl.gov] Sent: Tuesday, January 13, 2015 12:51 AM To: Chandler Carruth Cc: Jiangning Liu; Pazos, Ana; Ana Pazos; Daniel Berlin; George Burgess IV Subject: Re: question about enabling cfl-aa and collecting a57 numbers ----- Original...
2015 Jan 14
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...wrote: > Anything other than noalias or mustalias should be getting passed down the > stack, so either that is not happening or CFL aa is giving better answers > and something does worse with those better answers. I'll take a look this > evening > On Jan 13, 2015 3:58 PM, "Ana Pazos" <apazos at codeaurora.org> wrote: > >> Hi folks, >> >> Moving the discussion to llvm.dev. >> >> None of the changes we talked earlier help. >> >> Find attached the C source code that you can use to reproduce the issue. >> >>...
2015 Jan 14
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
Oh, sorry, i didn't rebase it when i changed the fix, you would have had to apply the first on top of the second. Here is one against HEAD On Wed, Jan 14, 2015 at 12:32 PM, Ana Pazos <apazos at codeaurora.org> wrote: > Daniel, your patch does not apply cleanly. Are you on the tip? > > The code I see there is no line if (QueryResult == MayAlias|| QueryResult == PartialAlias) to be removed. > > Thanks, > > Ana. > > > > *From:* Geor...
2012 Feb 27
4
Duda lapply
Hola a todos/as: Tengo la siguiente duda: Construyo una lista de tamaño 2, del siguiente modo: miLista<-list() miLista[[1]]<-list(nombre="Ana", apellido1="Pérez", apellido2="Sánchez") miLista[[2]]<-list(nombre="Carlos", apellido1="Núñez", apellido2="Sierra") Le aplico la función turnoLaboratorio: miResul<-lapply(miLista, turnoLaboratorio) Sobre el resultado (miResul) quiero...
2015 Jan 14
4
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...ould let you pass along the result you've gotten so far, so that you don't have CFLAA get PartialAlias, chain, and have BasicAA get MayAlias. >>> >>> (IE it should let it work strictly down the hierarchy). >>> >>> Note that this patch breaks the CFLAliasAnalysis tests because it no longer returns PartialAlias in some cases it is expecting it. >>> >>> I don't have time ATM to fix chaining completely, so if someone wants to shepherd this patch through, that would be appreciated. >>> >>> >>> >>&g...
2015 Jan 14
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...esigned IMHO. > > It should let you pass along the result you've gotten so far, so that you > don't have CFLAA get PartialAlias, chain, and have BasicAA get MayAlias. > > (IE it should let it work strictly down the hierarchy). > > Note that this patch breaks the CFLAliasAnalysis tests because it no > longer returns PartialAlias in some cases it is expecting it. > > I don't have time ATM to fix chaining completely, so if someone wants to > shepherd this patch through, that would be appreciated. > > > > > > On Tue, Jan 13, 2015 at 8:58...
2015 Jan 15
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...ion does not need to be processed :P). This was causing unnecessary aliasing. 4. Adds a regression test to must-and-partial 5. Fixes the pass ordering 6. Does not alias non-pointer arguments to random things :) 7. Fixes the CFL test cases that break with above. On Thu, Jan 15, 2015 at 11:33 AM, Ana Pazos <apazos at codeaurora.org> wrote: > Daniel, don’t we need to fix the order of invoking alias analyses in > lib/Transforms/IPO/PassManagerBuilder.cpp as well? > > > > Your patch fixed the order in lib/CodeGen/Passes.cpp and the delegation > code in lib/Analysis/CFLA...
2010 Jan 23
8
The directory that I am trying to clean up is huge
The directory that I am trying to clean up is huge . every time get this error msg -bash: /usr/bin/find: Argument list too long Please advise Anas -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20100123/f6534851/attachment-0001.html>
2013 Jul 06
2
Duda trabajando con nombres de objetos que se reciben como parámetros
Eva, ¿Algo asi o te entiendo mal? l <- list()l$nombre <- "Ana"l$apellido <- "Pérez"parametro <- "nombre"if (exists(paste('nombre', 'OnValidate', sep=''))) nombreOnValidate(1:5) # cuidado con el enviroment nombreOnValidateif (exists(paste('s', 'um', sep=''))) sum(1:5) # esto lo agre...
2015 May 11
3
POSIXct en la version 3.1.3 (2015-03-09) -- "Smooth Sidewalk"
...tengo un script para usar la función POSIXct y lo corro en otras computadoras con otras versiones de R y no tengo problemas ahora cuando lo corro en mi maquina donde tengo la versión 3.1.3 no me da ningun error pero genera una nueva columna con NA puede ser sólo problema de la versión de R? gracias ana -- Ana Marina Srur Departamento de Dendrocronología e Historia Ambiental IANIGLA-CONICET-CCT Mendoza cc. 330, 5500, Mendoza, Argentina Telefax: (54261) 5244275-5244200 http://personal.mendoza-conicet.gov.ar/asrur
2010 Jul 27
2
Glm
...y variables are given and I have to estimate y. The point is if I estimate it, let¹s say algebraically, I get high variances that do not decrease as sample sizes increases... Is the any other way to do this?... It is not compulsory to use these alphas but my Y is unknown... Any ideas?... Thanks, Ana [[alternative HTML version deleted]]
2013 Jul 17
3
consulta xml para ubuntu 32bits
...intalaron la plataforma Platform: i686-pc-linux-gnu (32-bit). He intentado instalar el paquete dplR tanto desde el cran como desde un archivo y me da el siguiente error: ERROR: dependency ?XML? is not available for package ?dplR? Esto se debe a la versión de Linux que tengo instalada? gracias -- Ana Marina Srur Departamento de Dendrocronología e Historia Ambiental IANIGLA-CONICET-CCT Mendoza cc. 330, 5500, Mendoza, Argentina Telefax: (54261) 5244275-5244200 http://personal.mendoza-conicet.gov.ar/asrur
2023 Mar 14
2
Resultado operación entre dataframes
Buen día estimados, Tengo el siguiente código: df_1 <- data.frame(ana = c(15, 20, 30), maria = c(15,20,30), jose = c(15, 20, 30)) df_2 <- data.frame(nombre = c("jose", "ana", "maria"), valor = c(1,2,3)) # Find the corresponding columns in df_1 based on the values in df_2$nombre cols <- match(df_2$nombre, names(df_1)) # Subtract...
2003 May 17
2
Regression tree
...ression tree... I found function "tree()" written by a certain Mr. Ripley, and seems to be just what i'm looking for, but when i try to use it in R replies me:"Object not found". So I was wandering if I should include one special library or something like that? Thanks a lot, ana
2013 Jul 06
1
Duda trabajando con nombres de objetos que se reciben como parámetros
Algo asi? l <- list()l$nombre <- "Ana"l$apellido <- "Pérez"parametro <- "nombre"paste(l[ parametro][[1]], 'OnValidate', sep='')[1] "AnaOnValidate"l[ parametro][[1]][1] "Ana"x <- 1:5AnaOnValidate <- function(x) print(x)if (exists(paste(l[ parametro][[1]], 'OnVa...
2010 May 16
1
improvement
Hi, if i just want a vector filled with names which has length(index) > 0. For example if nombreC <- c("Juan", "Carlos", "Ana", "Mar?a") nombreL <- c("Juan Campo", "Carlos Gallardo", "Ana Iglesias", "Mar?a Bacaldi", "Juan Grondona", "Dario Grandineti", "Jaime Acosta", "Lourdes Serrano") I would like to obtain a matrix called...