search for: isome

Displaying 19 results from an estimated 19 matches for "isome".

Did you mean: some
2013 Sep 06
2
Problema con filtros de datos en un data.frame
Estimados, tengo el siguiente problema: estoy trabajando con un data.frame que tiene 892 filas y 9 columnas, el cual adjunto para que puedan probar. Cuando consulto por las filas que cumplen una cierta condicion, por ejemplo, ... graph[graph$NCar==c("160s"),] obtengo el siguiente conjunto de datos: sol con dia NCar NIns isom area rep tipo 1 con 0.001 1 160s 0 s
2013 Sep 06
3
Problema con filtros de datos en un data.frame
Me funciono perfecto, muchas gracias Carlos ... si no es mucha la molestia, alguien podria explicarme la diferencia tecnica entre ambos signos, y porque == produce el resultado que produce ? en que casos deberia usar == y en que casos %in% ... cual es el significado de cada uno ? Disculpen que no me conforme solo con obtener el resultado adecuado, es solo que no me suena logico que == no
2013 Sep 10
1
Problema con filtros de datos en un data.frame
Muchas gracias por la explicación Isidro! El 10 de septiembre de 2013 08:19, Isidro Hidalgo <ihidalgo@jccm.es>escribió: > Cuando utilizas "==" estás comparando el vector "graph$NCar" (longitud 892) > con otro de longitud 2: c("160s","180s"). > Es decir, comparas el primer valor de "graph$NCar" con el primer valor de >
2013 Sep 06
0
Problema con filtros de datos en un data.frame
Hola, ¿qué tal? No uses == sino %in%. Un saludo, Carlos J. Gil Bellosta http://www.datanalytics.com El día 7 de septiembre de 2013 00:57, neo <ericconchamunoz en gmail.com> escribió: > Estimados, tengo el siguiente problema: estoy trabajando con un > data.frame que tiene 892 filas y 9 columnas, el cual adjunto para que > puedan probar. > > Cuando consulto por las filas que
2013 Jul 12
3
Eliminar filas que cumplen con mas de un criterios simultaneamente ...
Estimada comunidad, tengo el siguiente problema: Un data.frame con muchas filas de las que debo eliminar aquellas que cumplen varios criterios al mismo tiempo. Por ejemplo este data.frame: sol con dia NCar NIns isom area rep tipo 1 con 0.001 1 160s 0 s 6.083543e-01 1 2 con 0.001 1 161c 1 c 1.391274e-03 1 <NA> 3 con 0.001 1 161c 1 c
2013 Jul 12
2
Eliminar filas que cumplen con mas de un criterios simultaneamente ...
Hola de nuevo. Leí mal. Si vas a eliminar esas filas, entonces usa: sqldf("select * from graph where sol!='lim' and dia!=2") En el correo anterior seleccioné precisamente a esas descartando a las demás. Culpa de mis anteojos... jeje. On Fri, Jul 12, 2013 at 5:20 PM, Freddy Omar López Quintero < freddy.vate01@gmail.com> wrote: > ​Hola.​ > > >> Tengo que
2013 Sep 10
0
Problema con filtros de datos en un data.frame
Cuando utilizas "==" estás comparando el vector "graph$NCar" (longitud 892) con otro de longitud 2: c("160s","180s"). Es decir, comparas el primer valor de "graph$NCar" con el primer valor de c("160s","180s"), el segundo valor de "graph$NCar" con el segundo valor de c("160s","180s"), el tercer valor
2006 May 07
0
[LLVMdev] Configuring for the cfrontend build on Mingw
...(srcdir)/$(@D) \ -I$(srcdir)/../include @INCINTL@ 4. It is worth mentioning that there is a subtle interaction with (my particular version of) make. In some cases make should be replacing $(@D) with '.', but instead replaces it with '' (nothing). You end up with ... -I. -I -Isome/src/path -I/some/src/path/ ... then the -I -Isome/src/path is interpreted as a single '-I' with argument '-Isome/src/path'. To work around this, I make the following the adjustment (hack) to INCLUDES: INCLUDES = -I. -I$(@D) -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ -I$(srcdir)/...
2010 Aug 11
3
Bad results, encoding keynote presentation videos
Hello, hope you can help me. I want to encode a video, which I have exported from Keynote (a program for presentation like MS Power Point) using ffmpeg2theora for html5 web delivery. The result only plays very buggy - frames are dropped, the video hangs and vlc can not output the correct length of the ogv video. Here is the source and the result for download, if you want to reproduce it: the
2014 Aug 28
2
problema al copiar datos de tipo caracter de un archivo a otro
Estimada comunidad, tengo un problema que no puedo resolver. Tengo muchos archivos (los llamaremos "TMP") con los que debo construir un archivo resumen que llamare "DAT". A partir de los nombres de los archivos TMP construyo las primeras 4 columnas de DAT, luego, con datos del interior del archivo TMP construyo las columnas 5 a 9 de DAT. El problema insoluble que tengo es que
2007 Jan 17
1
sleep data
When reading the documentation for the "sleep" data set in R, the impression is clear, this is an "independent groups" kind of design (two groups of 10 subjects each). However, when browsing the original article (referred to in the help file), my impression is quite clear, this is really a "repeated measures" kind of data (one group of 10 subjects, two
2008 Jun 20
1
utorremt systray
Hi I have found that utorrent doesn't display its systray icon unless I switch from dual screen to single screen. When I login to twinview the systray icon is missing but if I use nvidia-settings I can switch to a single screen. and back and have a systray icon. However if I restart utorrent it will be as before and no systray icon. Should I file a bug report here(bugzilla) or with
2013 Jul 12
0
Eliminar filas que cumplen con mas de un criterios simultaneamente ...
​Hola.​ > Tengo que eliminar las filas cuya columna SOL dice LIM y cuya columna > DIA dice 2. > ​​Prueba con: >library(sqldf)​​ >graph<-sqldf("select * from graph where sol='lim' and dia=2") ​ sol con dia NCar NIns isom area rep tipo 1 lim 0.003 2 160s 0 s 0.572323700 1 <NA> 2 lim 0.003 2 161t 1 t 0.010960770 1 <NA>
2013 Jul 12
0
Eliminar filas que cumplen con mas de un criterios simultaneamente ...
Hola, En vez de utilizar "&" (que es "and") utiliza "|" (que es el "or"): graph <- graph[graph$sol=="lim" *|* graph$dia==2,] Saludos, Carlos Ortega www.qualityexcellence.es El 12 de julio de 2013 23:22, Freddy Omar López Quintero < freddy.vate01@gmail.com> escribió: > Hola de nuevo. Leí mal. Si vas a eliminar esas filas,
2006 May 08
0
[LLVMdev] Configuring for the cfrontend build on Mingw
...script should find them. GP> 4. It is worth mentioning that there is a subtle interaction with (my GP> particular version of) make. In some cases make should be replacing $(@D) GP> with '.', but instead replaces it with '' (nothing). You end up with GP> ... -I. -I -Isome/src/path -I/some/src/path/ ... Yes. This is one of the biggest problem with make taken from msys. -- With best regards, Anton mailto:asl at math.spbu.ru Monday, May 8, 2006 9:44:56 PM Faculty of Mathematics & Mechanics, Saint-Petersburg State University
2009 Mar 26
1
Extreme AIC in glm(), perfect separation, svm() tuning
Dear List, With regard to the question I previously raised, here is the result I obtained right now, brglm() does help, but there are two situations: 1) Classifiers with extremely high AIC (over 200), no perfect separation, coefficients converge. in this case, using brglm() does help! It stabilize the AIC, and the classification power is better. Code and output: (need to install package:
2016 Jan 25
2
How to make performance test in samba4
Hi everybody, I have several VMs running on Xenserver 6.5 I have 2 samba servers (1 DC & 1 Fileserver). They are both running Debian Linux 8.2 Jessie. I'm using the samba debian package (4.1.17) My VM has 8G RAM and 4 vCPU How can i test if the performances are quite good or not? with reading/writing Could I have better performance with the latest samba release? thanks Pierre --
2020 Mar 27
0
Wine release 5.5
The Wine development release 5.5 is now available. What's new in this release (see below for details): - Builtin libraries use the new UCRTBase C runtime. - Compatibility mode used when reporting Windows version. - Better support for debug information in PE files. - Support for linguistic case mappings. - More attributes supported in WebServices. - Various bug fixes. The source
2008 Feb 15
38
Performance with Sun StorageTek 2540
Under Solaris 10 on a 4 core Sun Ultra 40 with 20GB RAM, I am setting up a Sun StorageTek 2540 with 12 300GB 15K RPM SAS drives and connected via load-shared 4Gbit FC links. This week I have tried many different configurations, using firmware managed RAID, ZFS managed RAID, and with the controller cache enabled or disabled. My objective is to obtain the best single-file write performance.