search for: leve

Displaying 20 results from an estimated 52 matches for "leve".

Did you mean: level
2007 Aug 04
2
multiple nls - next fit even after convergence problem
...them I encounter conversion problems. I'd like for my function to keep going to the next curve and store the fact that for curve number X I had a convergence problem. This is my original function : comp.fit.2<-function(tab) { fit.log<-nls(surf.vert.tot ~ 100/(1+exp(((log(81))/a)*(sum.T.levee-b))), start=list( a=ifelse(sum(tab$surf.vert.tot>76)<1 | sum(tab$surf.vert.tot<15)<1,400,-max(tab$sum.T.levee[tab$surf.vert.tot>76],na.rm=T)+min(tab$sum.T.levee[tab$surf.vert.tot<15],na.rm=T)), b=tab$sum.T.levee[abs(tab$surf.vert.tot-50)==min(abs(tab$surf.vert.tot-50),na.rm=T)]),...
2009 Jul 04
1
De que otra forma se puede hacer
...4 5 <2 A A-B B E F 2-3 A-B B C E F 3-5 B B-C C D E 5-6 C C-D D D D >6 C D D D D clasatm<- function(nivel, velviento) { if (velviento < 2) { { switch(nivel, fuerte = "A", moderado = "B", leve = "B", nubes= "E", claro = "F" ) } } else if ((velviento >= 2)&(velviento<3)) { { switch(nivel, fuerte = "B", moderado = "B", leve = "C",...
2011 Aug 25
2
within-groups variance and between-groups variance
...ction if one exists. Kind Regards, Avril Within-Groups Variance: ======================= calcWithinGroupsVariance <- function(variable,groupvariable) { # find out how many values the group variable can take groupvariable2 <- as.factor(groupvariable[[1]]) levels <- levels(groupvariable2) numlevels <- length(levels) # get the mean and standard deviation for each group: numtotal <- 0 denomtotal <- 0 for (i in 1:numlevels) { leveli <- levels[i] levelidata <- vari...
2010 Jun 09
1
counting across leves of factors
I have dataframe with 17factors variables (for example every factor have 3levels) I have maybe 5000 observation. And i need to do table where is in every raw 1 of possible combination of this factors and the numbur how many time is this combination in my dataset. I wrote one code, but this is very slow and dumb. it looks like this: i<-0 for(i1 in levels(hivdat$pohl)){...
2006 Oct 30
1
nlme Error: Subscript out of bounds
...-Plus. I have a simple non-linear growth model, with no nesting. I have attempted to simplify the call as much as possible (by creating another grouped object, instead of using subset= and compacting the fixed and random expressions.) This is a what the grouped data object looks like: levelI.data[1:2,] Grouped Data: GMAE ~ AGE | STUDYID STUDYID TIME SCORE INCURVES MOST FIRST AGE 19 1005 1 ACTUAL (unaided) in JAMA curves Level I Level I 49.11301 20 1005 2 ACTUAL (unaided) in JAMA curves Level I Level I 56.53745 GMFM GMF...
2016 Mar 16
2
no puedo instalar knitr y Rmarkdown en ubuntu
...s/stringr_1.0.0.tar.gz? had non-zero >> exit status >> >> Alguien me podria ayudar, porq estoy dejando definitivamente windows, pero >> si no me anda R al 100% no puedo mudarme a ubuntu. >> >> Gracias, saludos >> -- >> "*?Que tudo pesado se torne leve, todo corpo, dançarino, e todo espírito, >> pássaro.? * >> *Nietzsche, "Assim Falou Zaratustra?.* >> >> [[alternative HTML version deleted]] >> >> _______________________________________________ >> R-help-es mailing list >> R-help-es en r...
2016 Mar 15
2
no puedo instalar knitr y Rmarkdown en ubuntu
...kages : installation of package ?/tmp/RtmpavyTWw/downloaded_packages/stringr_1.0.0.tar.gz? had non-zero exit status Alguien me podria ayudar, porq estoy dejando definitivamente windows, pero si no me anda R al 100% no puedo mudarme a ubuntu. Gracias, saludos -- "*?Que tudo pesado se torne leve, todo corpo, dançarino, e todo espírito, pássaro.? * *Nietzsche, "Assim Falou Zaratustra?.* [[alternative HTML version deleted]]
2016 Aug 22
4
Samba4 Centos 7 - CPU 100%
Hi, i changed the options but the problem it's the same. I removed the dns forward, schema and smb2 leases = yes, but after 5 minutes the process smbd groes up for 100%. Follow the error (log leve = 3). http://pasted.co/6f36cf12 2016-08-21 5:54 GMT-03:00 Marc Muehlfeld <mmuehlfeld at samba.org>: > Hi Maiquel, > > Am 20.08.2016 um 21:03 schrieb Maiquel Consalter via samba: > > I need remove some line in smb.conf for sysvol ? or just is bug in gedit > > for view ?...
2017 Jul 13
2
consulta por varTypes de sqlSave en RODBC
...ribiria algo asi: > > [ACTA] int, > > [APENAC] varchar(25), > > [PESONAC] numeric(4,0), > > > > Alguien uso vartypes de esta forma? > > > > Desde ya gracias por el tiempo y un abrazo a todxs. > > > > -- > > "*?Que tudo pesado se torne leve, todo corpo, dançarino, e todo espírito, > > pássaro.? * > > *Nietzsche, "Assim Falou Zaratustra?.* > > > > [[alternative HTML version deleted]] > > > > _______________________________________________ > > R-help-es mailing list > &gt...
2017 Jul 13
2
consulta por varTypes de sqlSave en RODBC
...ribiria algo asi: > > [ACTA] int, > > [APENAC] varchar(25), > > [PESONAC] numeric(4,0), > > > > Alguien uso vartypes de esta forma? > > > > Desde ya gracias por el tiempo y un abrazo a todxs. > > > > -- > > "*?Que tudo pesado se torne leve, todo corpo, dançarino, e todo espírito, > > pássaro.? * > > *Nietzsche, "Assim Falou Zaratustra?.* > > > > [[alternative HTML version deleted]] > > > > _______________________________________________ > > R-help-es mailing list > &gt...
2015 Jun 05
3
usar Selenium para web scraping
Hola. Tengo que bajarme varias tablas del INE y necesito interactuar con el navegador. Ví el fantástico post que escribió Gregorio Serrano (que la tierra le sea leve), en http://www.grserrano.net/wp/2014/01/relenium-el-siguiente-nivel-de-web-scraping-con-r/ y estoy intentando reproducirlo para aprender como funciona relenium Pero relenium me da error después de if(!require(relenium)) install.packages("relenium") precios <- "http://www.in...
2009 Jul 22
1
Archicad
Hi, I'm trying to start using Linux. I'm just trying to leve away Windows. But cause I'm architect there's only one program I'have to use and I can't install in Linux; Archicad. I'm using Archicad v.10. Anybody can tell me if there is a solution? Thanks! FDF
2017 Jul 12
2
consulta por varTypes de sqlSave en RODBC
..., int, o numeric) pero no he podido indicarle el ancho q tiene cad variable. Esto en SQL se escribiria algo asi: [ACTA] int, [APENAC] varchar(25), [PESONAC] numeric(4,0), Alguien uso vartypes de esta forma? Desde ya gracias por el tiempo y un abrazo a todxs. -- "*?Que tudo pesado se torne leve, todo corpo, dançarino, e todo espírito, pássaro.? * *Nietzsche, "Assim Falou Zaratustra?.* [[alternative HTML version deleted]]
2007 Oct 10
2
display variable from a relationship
Hello, I have the following scenario: Models: provider (has_and_belongs_to_many) level (has_and_belongs_to_many) levels_providers At the moment, I''m attempting a page that will list all of the providers. I have this working perfectly, but I want each provider that is listed to also list the levels that are associated with it. I haven''t been able to get my head aro...
2004 Jan 26
1
Domain + Workgroup with same name: problem?
...work know who is the master of the universe and who is just an impostor? Especially the PDC itself should not get confused about this! The relevant entries (I think) in my smb.conf are: domain master = Yes domain logons = Yes preferred master = Yes wins support = Yes os leve = 64 greetings Alexander -- ------------------------------------------- agoeres _at_ lieblinx.net tel.: +49 (0)30 / 61 20 26 87 fax: +49 (0)30 / 61 20 26 89 ------------------------------------------- lieblinxNET we do software a Marwood & Thiele GbR ------------------------------------...
2019 Mar 12
3
sometimes users fails to login
Hello, I have Samba 4.6 as AD domain member and sometime the users fails to login, the issue disappear after some minutes. I have enabled log leve 10 and I can see the following errors: 2019/03/12 09:20:32.280799,  5, pid=15466, effective(0, 0), real(0, 0)] ../source3/lib/username.c:181(Get_Pwnam_alloc)   Finding user BITINTRA\U002489 [2019/03/12 09:20:32.281111,  5, pid=15466, effective(0, 0), real(0, 0)] ../source3/lib/username.c:128(Ge...
2009 Jul 08
5
Análisis de imágenes en R
...es("ReadImages") require(ReadImages) data(logo) par(mfrow = c(1,2) ) plot(logo, main = ''R-logo, formato original'') plot(logo^2, main = ''R-logo modificado'') El gráfico resultante corresponde a dos logos de R, uno en el formato original y otro, una "leve" modificación. Para este caso particular, me gustaria poder determinar cuáles son las similitudes / diferencias de ambas imágenes. Existe alguna manera de hacerlo? Si no es via R, podria alguien sugerirme alguna fuente de información? Muchas gracias, Jorge Ivan Velez [[alternative HTML ve...
2016 Nov 29
2
[RFC] Supporting ARM's SVE in LLVM
...g up on this thread, but I think starting to review patches is going to make it substantially harder to have a productive conversation. We haven't yet really gotten to any kind of consensus around the design, and until then I think it would be very helpful to keep discussion focused on the high-level threads on llvm-dev rather than fragmenting it into the commits list threads for the patches. I'm happy to have patches as FYI examples, but they shouldn't be the focus of the discussion. Also, up the thread and even in this email there is significant talk about a substantial change of de...
2007 Aug 24
3
traffic shaping stranges
...1514b flows 128/1024 perturb 10sec Sent 6106252 bytes 4038 pkt (dropped 0, overlimits 0 requeues 0) rate 0bit 0pps backlog 0b 0p requeues 0 class htb 2:132 parent 2:1 leaf 132: prio 3 quantum 1500 rate 50000bit ceil 500000bit burst 1662b/8 mpu 0b overhead 0b cburst 2225b/8 mpu 0b overhead 0b leve Sent 0 bytes 0 pkt (dropped 0, overlimits 0 requeues 0) rate 0bit 0pps backlog 0b 0p requeues 0 lended: 0 borrowed: 0 giants: 0 tokens: 265920 ctokens: 35600 class htb 2:1 root rate 500000Kbit ceil 500000Kbit burst 626562b/8 mpu 0b overhead 0b cburst 626562b/8 mpu 0b overhead 0b level 7...
2015 Jun 05
2
usar Selenium para web scraping
...ellence.es El 5 de junio de 2015, 13:28, José Luis Cañadas Reche < canadasreche en gmail.com> escribió: > Hola. > > Tengo que bajarme varias tablas del INE y necesito interactuar con el > navegador. Ví el fantástico post que escribió Gregorio Serrano (que la > tierra le sea leve), en > http://www.grserrano.net/wp/2014/01/relenium-el-siguiente-nivel-de-web-scraping-con-r/ > y estoy intentando reproducirlo para aprender como funciona relenium > > Pero relenium me da error después de > > if(!require(relenium)) install.packages("relenium") > >...