search for: sob

Displaying 20 results from an estimated 133 matches for "sob".

Did you mean: so
2013 May 28
6
Ocultar componentes de una lista
Saludos a todos, Quisiera saber como ocultar algunos componentes de una lista para que cuando crees una funcion solo se muestre una parte de esa lista, y que al resto tengas acceso cuando descompongas ese objeto, por ejemplo: Tengo la siguiente data: data=data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) Cuando uso la funcion nls: A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) El resultado que me arroja es : Nonlinear regression model model: Sobs ~ A * Samples/(1 + (B * Samples)) data: data...
2013 May 28
3
Ocultar componentes de una lista
...escribió: Saludos a todos, Quisiera saber como ocultar algunos componentes de una lista para que cuando crees una funcion solo se muestre una parte de esa lista, y que al resto tengas acceso cuando descompongas ese objeto, por ejemplo: Tengo la siguiente data: data=data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) Cuando uso la funcion nls: A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) El resultado que me arroja es : Nonlinear regression model model: Sobs ~ A * Samples/(1 + (B * Samples)) data: data A...
2013 May 28
0
Ocultar componentes de una lista
Hola, ¿qué tal? Si haces primero data <- data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) y luego escribes A lo que ves en pantalla es lo mismo que si hubieses escrito print(A). Tu objeto A es de la clase "nls". Por lo tanto, la función print a...
2013 May 28
3
Ocultar componentes de una lista
...13 18:25 Saludos a todos, Quisiera saber como ocultar algunos componentes de una lista para que cuando crees una funcion solo se muestre una parte de esa lista, y que al resto tengas acceso cuando descompongas ese objeto, por ejemplo: Tengo la siguiente data: data=data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) Cuando uso la funcion nls: A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) El resultado que me arroja es : Nonlinear regression model model: Sobs ~ A * Samples/(1 + (B * Samples)) data: data A...
2012 Jul 09
4
how to make plot lines thicker
I am trying to make the lines thicker in a graph (for a ppt presentation). Here is what I currently have: plot(x,y,type="l", ylab="Number of OTUs", xlab="Number of Samples Collected", col="Black", pch=1, ylim=c(0,6000)) points(x, Sobs$Chao_1_Mean, type="l", col="Gray", pch=1) (this is one of the added lines in the graph). I believe cex can help increase the size of the points. But I haven't been able to get it to work. -- View this message in context: http://r.789695.n4.nabble.com/how-to-make-plot-l...
2013 May 28
0
Ocultar componentes de una lista
...o ocultar algunos componentes de una lista para que > cuando crees una funcion solo se muestre una parte de esa lista, y que al > resto tengas acceso cuando descompongas ese objeto, por ejemplo: > > > > Tengo la siguiente data: > > > > > data=data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) > > > > Cuando uso la funcion nls: > > > > A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) > > > > El resultado que me arroja es : > > > > Nonlinear regression model &gt...
2013 May 28
0
Ocultar componentes de una lista
...18:25 Saludos a todos, Quisiera saber como ocultar algunos componentes de una lista para que cuando crees una funcion solo se muestre una parte de esa lista, y que al resto tengas acceso cuando descompongas ese objeto, por ejemplo: Tengo la siguiente data: data=data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) Cuando uso la funcion nls: A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) El resultado que me arroja es : Nonlinear regression model   model: Sobs ~ A * Samples/(1 + (B * Samples))    data: data      ...
2013 Sep 04
3
[PATCH] Add an entry in MAINTAINERS for VMware's hypervisor interface
...d be sent to the authors of the file as well. If you are thinking why do this now, off late we have seen quite a few changes that touched the "arch/x86/kernel/cpu/vmware.c" file but were not directed to me, someone else made me aware of those changes. It could be that my use of different SOB lines "Alok N Kataria" vs "Alok Kataria" confuses get_maintainer.pl, but adding this entry in MAINTAINERS should solve the problem at hand. For one of the changes [1], I did verify that get_maintainer.pl, now expectedly includes me in the cc list. Thanks, Alok [1] http://marc...
2013 Sep 04
3
[PATCH] Add an entry in MAINTAINERS for VMware's hypervisor interface
...d be sent to the authors of the file as well. If you are thinking why do this now, off late we have seen quite a few changes that touched the "arch/x86/kernel/cpu/vmware.c" file but were not directed to me, someone else made me aware of those changes. It could be that my use of different SOB lines "Alok N Kataria" vs "Alok Kataria" confuses get_maintainer.pl, but adding this entry in MAINTAINERS should solve the problem at hand. For one of the changes [1], I did verify that get_maintainer.pl, now expectedly includes me in the cc list. Thanks, Alok [1] http://marc...
2013 May 29
0
Ocultar componentes de una lista
...siera saber como ocultar algunos componentes de una lista para que cuando crees una funcion solo se muestre una parte de esa lista, y que al resto tengas acceso cuando descompongas ese objeto, por ejemplo: > > > > Tengo la siguiente data: > > > > data=data.frame(Samples=1:10,Sobs=c(12.6,22.4,27.4,30.5,32.5,34.3,36,37.4,38.9,39.9)) > > > > Cuando uso la funcion nls: > > > > A <- nls(Sobs~A*Samples/(1+(B*Samples)), start=list(A=5, B=1), data=data) > > > > El resultado que me arroja es : > > > > Nonlinear regression model &gt...
2010 Jun 29
3
merging/intersecting 2 data frames
...IENT_ID AGE SYNDROME 1 4/16/2009 F 23686 45 RASH ON BODY 2 4/16/2009 F 13840 35 CANT URINATE 3 4/16/2009 M 12895 30 BLURRED VISION 4 4/16/2009 M 18375 33 UNABLE TO VOID 5 4/16/2009 M 2237 44 SOB WEAKNESS 6 4/16/2009 F 21484 41 TOOTH PAINTOOTH PAIN 7 4/16/2009 M 10783 37 RT ARM PAIN 8 4/16/2009 M 12610 65 L FOOT INJURY 9 4/16/2009 F 3495 29 URINARY DIFFICULTIES 10 4/16/2009 F 351 36 PT STS MVA > b.df[...
2007 Dec 11
6
Mongrel install problem
Hi, I''m having difficulties getting mongrel running on my Debian Etch machine. It seems to install and is listed with my other gems, but things like... "mongrel_rails start ..." ... are not recognised. Perhaps this is something to do with the file "lib" not being found in the install process: ruby extconf.rb install mongrel --include-dependencies checking for main()
2020 May 09
2
Win7 clients problem after upgrading samba file server to 4.12 on Arch
sob., 9 maj 2020 o 10:34 Ralph Boehme <slow at samba.org> napisa?(a): > Hi Pawel, > Can you share a network trace and loglevel 10 debug log of a reproducer? > The links you posted earlier don't seem to work anymore. > > -slow > ...because I have treated them as not importan...
2009 Jul 10
2
[PATCH 1/1] a fix of logging return value.
in ocfs2_file_aio_write(), log_exit() could don't log the value which is really returned. this patch fixes it. Signed-off-by: Wengang Wang <wen.gang.wang at oracle.com> --- fs/ocfs2/file.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 62442e4..a49fa44 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -1918,8
2020 May 09
5
Win7 clients problem after upgrading samba file server to 4.12 on Arch
sob., 9 maj 2020 o 14:37 Ralph Boehme <slow at samba.org> napisa?(a): > To be clear: if you're running into this issue that I'm seeing in the > code, then this is *not* a client side bug. It's a server bug that only > gets triggered by a specific access pattern. Likely Win 7...
2006 Jul 17
2
Quantreg error
...m.br ********************************************************************************** As informa??es contidas nesta mensagem e no(s) arquivo(s) anexo(s) s?o endere?adas exclusivamente ?(s) pessoa(s) e/ou institui??o(?es) acima indicada(s), podendo conter dados confidenciais, os quais n?o podem, sob qualquer forma ou pretexto, ser utilizados, divulgados, alterados, impressos ou copiados, total ou parcialmente, por pessoas n?o autorizadas. Caso n?o seja o destinat?rio, favor providenciar sua exclus?o e notificar o remetente imediatamente. O uso impr?prio ser? tratado conforme as normas da empr...
2004 Jul 15
4
freenode #asterisk IRC channel identd problem
...s some identd server thing that needs to be configured so I didn't mess with this and used mIRC on Windows which has a identd server built into the program. I have my firewall forwarding port 113 to the computer running mIRC (which is apparently needed to listen for the identd requests) and the SOB still gives me the same message and I can't get into the #asterisk channel. Has anyone else had this problem and solved it? Thanks, Nate Alpert asterisk@demicrosystems.com
2006 Jul 26
3
Moving Average
....br ********************************************************************************** As informações contidas nesta mensagem e no(s) arquivo(s) anexo(s) são endereçadas exclusivamente à(s) pessoa(s) e/ou instituição(ões) acima indicada(s), podendo conter dados confidenciais, os quais não podem, sob qualquer forma ou pretexto, ser utilizados, divulgados, alterados, impressos ou copiados, total ou parcialmente, por pessoas não autorizadas. Caso não seja o destinatário, favor providenciar sua exclusão e notificar o remetente imediatamente. O uso impróprio será tratado conforme as normas da...
2011 Feb 28
1
Dovecot+Postfix+Mysql+quotas doesn't work
...ssoal. As informa??es nele contidas podem ser de car?ter confidencial e/ou privilegiada. Se voc? n?o for o destinat?rio e recebeu a mensagem por engano, avise imediatamente o remetente e em seguida apague o e-mail, ficando, expressamente vedado o uso, c?pia e/ou divulga??o das informa??es contidas, sob pena de responsabiliza??o. *SAFETY INFORMATION:* This e-mail is strictly personal use. The information contained here may be confidential and / or privileged. If you aren't the intended recipient and received the message in error, please notify the sender immediately and delete the email, bein...
2018 Aug 11
2
samba 4.5.12 DC and XP
In "domain group policy" I made same mappings of samba shares. On xp I only logged into domain. On win 10 shares are attached while logging in, but not on xp. Andrzej sob., 11 sie 2018 o 18:56 Rowland Penny via samba <samba at lists.samba.org> napisał(a): > On Sat, 11 Aug 2018 18:24:27 +0200 > Andrzej Gryko <andrzej.gryko at gmail.com> wrote: > > > I did, what you say, but xp still doesn't attach disks while logging > > in. Unfo...