search for: 400

Displaying 20 results from an estimated 4441 matches for "400".

Did you mean: 40
2012 Oct 05
2
Help understanding btrfsck output...
...repair" ? (Last time I tried this one, it completely b0rked a filesystem, beyond repair, and my wife would kill me ifever I trash this one, for that''s her machine, so please help ! ;-)) root@PartedMagic:~# btrfsck /dev/sda6 checking extents checking fs roots root 258 inode 772 errors 400 root 258 inode 1025 errors 400 root 258 inode 1029 errors 400 root 258 inode 1056 errors 400 root 258 inode 1057 errors 400 root 258 inode 1125 errors 400 root 258 inode 1126 errors 400 root 258 inode 1548 errors 400 root 258 inode 3845 errors 400 root 258 inode 48006 errors 400 root 258 inode 4801...
2015 Nov 17
2
Borrar cada fila 400
Gracuas a todos!!! Por cierto, esta ya es de nota. Si quiero agregar una columna, y que cada 400 piezsa el valor se incremente en una unidad, es decir las 400 primeras, tendrian cada fila el valor 1. Las siguientes 400, 2, .... Lo he hecho con un for, pero va bastante lento: k<-1 for(i in 1:length(datos[,1])){ if(i%%400 == 0){k = k +1} datos[i,9] <- k; } > From: josea.bartolome...
2015 Nov 17
2
Borrar cada fila 400
Entiendo la logica pero no veo el como hacerlo. No se como implementar el 1+floor(1:nrow(datos)/400)) Gracias Jesús > Date: Tue, 17 Nov 2015 15:31:39 +0100 > Subject: Re: [R-es] Borrar cada fila 400 > From: cgb en datanalytics.com > To: j.para.fernandez en hotmail.com > CC: josea.bartolome en mineco.es; r-help-es en r-project.org > > 1 + floor(1:nrow(datos) / 400) > &...
2018 Apr 23
4
Alias for country in indications.conf
...also I couldn't find any ticket saying this parameter was deprecated.... Anyway when trying to use it, it doesn't work..... Anyone aware of some change related to this? I am using Asterisk 13.6.0 and have this in indications.conf: [uk] *alias = gb* description = United Kingdom ringcadence = 400,200,400,2000 ; These are the official tones taken from BT SIN350. The actual tones ; used by BT include some volume differences so sound slightly different ; from Asterisk-generated ones. dial = 350+440 ; Special dial is the intermittent dial tone heard when, for example, ; you have a divert active...
2015 Nov 17
2
Borrar cada fila 400
La verad es que es un asolución sencilla pero muy eficaz. Ya con esta siguiente duda termino: La matriz de cada csv es de 400x500, es decir, 400 filas y 500 columnas. Si quiero calcular la media de diferentes regiones del csv, por ejemplo la media de las 20 primeras filas y 20 primreas columnas, pero del que tiene los 50.000 registros, tomando el valor 1, como pued hacerlo?? He probado con tapply(datos,new,mean,na.rm=T)...
2005 Mar 22
1
List of tables rather than an extra dimension in the table or (l)apply(xtabs)
...value of Class. I would be wanting to drop.unused.levels, so that the last part of the table is just Sex Age Male Female Adult 862 23 or in my case each item in the list has the same number of rows as there are subregions for that region. List of 9 $ 1:`data.frame': 4009 obs. of 7 variables: ..$ sex : Factor w/ 2 levels "Females","Males": 2 2 2 2 2 2 2 2 2 2 ... ..$ age : Factor w/ 18 levels "0-4","5-9","10-14",..: 1 1 1 1 1 1 1 1 1 1 ... ..$ lga : Factor w/ 23 levels "Carnamah (S)",...
2013 May 11
1
How to repeat 2 functions in succession for 400 times? (microarray data)
Hi, May be this helps: ?set.seed(24) ?mydata4<- as.data.frame(matrix(sample(1:100,10*38,replace=TRUE),ncol=38)) ?dim(mydata4) #[1] 10 38 ?library(matrixStats) res<-do.call(cbind,lapply(1:400, function(i) {permutation<-sample(mydata4); (rowMeans(permutation[,1:27])-rowMeans(permutation[,28:38]))/(rowSds(permutation[,1:27])+rowSds(permutation[,28:38]))} )) ?dim(res) #[1]? 10 400 A.K. >I want to do permutation test and then get a PGC score 400 times on mydata4 (microarray data)...
2015 Nov 17
4
Borrar cada fila 400
Buenas, tengo un csv [csv final] con 50000 filas, que es unión de varios csv [csv particular]. Cada csv [csv particular] tiene en la última fila, la 400, una serie de valores que quiero eliminar, por lo que del [csv filan] quiero borrar la linea 400,800,1200,.... Lo he intentado con un bucle for: for(i in 1:50000){ if(i%%400 == 0) {datos[-i,]} } Pero no me funciona. Además me han dicho que con apply puede ser mucho más eficiente el algoritmo....
2012 Mar 12
3
lapply to change variable names and variable values
Hi: I'm sure this is a very easy problem. I've consulted Data Manipulation With R and the R Book and can't find an answer. Sample list of data frames looks as follows: .xx<-list(df<-data.frame(Var1=rep('Alabama', 400), Var2=rep(c(2004, 2005, 2006, 2007), 400)), df2<-data.frame(Var1=rep('Tennessee', 400), Var2=rep(c(2004,2005,2006,2007), 400)), df3<-data.frame(Var1=rep('Alaska', 400), Var2=rep(c(2004,2005,2006,2007), 400)) ) I would like to accomplish the following two tasks. First, I'...
2015 Nov 17
2
Borrar cada fila 400
...yo quiero que calcule asi: mean(datos[1:20,1:20]), pero claro, para toda la secuencia. mean(datos[1:20,1:20]) me devuelve el error-> Error in datos[1:2, 1:2] : object of type 'closure' is not subsettable Date: Tue, 17 Nov 2015 18:34:59 +0100 Subject: Re: [R-es] Borrar cada fila 400 From: cof en qualityexcellence.es To: j.para.fernandez en hotmail.com CC: cgb en datanalytics.com; r-help-es en r-project.org Hola, Esta es una forma. Indicas con unos indices el trozo que quieres, lo seleccionas (df_df_reg) y sobre él calculas medias por fila o por columna. R tiene funciones esp...
2020 Feb 11
1
R with Squid proxy - invalid requests ??
dear devel, I thought you guys would know best - I have an R which fails to get communicate outside via a proxy, and Squid's logs show: ... 1581432434.501????? 0 10.5.8.17 TAG_NONE/400 4064? %C5/%B6* - HIER_NONE/- text/html 1581432497.231????? 0 10.5.8.17 TAG_NONE/400 4570 NONE error:invalid-request - HIER_NONE/- text/html 1581432497.338????? 0 10.5.8.17 TAG_NONE/400 4300? %AC%9E%D0Rj%84%19%8D%23O%F9%E5%D4%E9%DBj%8D%F9x%C3:%FB-%02f%FBE%E5O%92c%9A - HIER_NONE/- text/html 158143249...
2014 Dec 04
0
CESA-2014:1959 Moderate CentOS 5 kernel Security Update
...isory 2014:1959 Moderate Upstream details at : https://rhn.redhat.com/errata/RHSA-2014-1959.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 571e827d7dbab6fe3597c0829b9305c53799be25559f1da4cf7f9ee8734cfee2 kernel-2.6.18-400.el5.i686.rpm 30ac09c18f82823a59cc15190e2122c68b118d6b22cd21dcb7b42b02c8a2ac47 kernel-debug-2.6.18-400.el5.i686.rpm a3ffa5d52b54b9d0fcc7b93aa0468466aff00785baddb2480b7e721daca13fe3 kernel-debug-devel-2.6.18-400.el5.i686.rpm dab96c2095b6d8af0440dbce169fa7f12d4959b20f257445aba655bfef15f0ec kernel-d...
2006 Jun 04
2
TDM-400 doesn't detect far-end hangup
Hi: I'm using a TDM-400 to terminate PSTN lines at my Asterisk server with kewlstart signalling. When an outside caller calls the server, the TDM-400 goes off-hook and provides a ringing tone to the caller. If the caller hangs up before the receiving party answers the phone, Asterisk fails to detect the hang-up. The TDM-...
2006 Aug 28
7
Time plots
Hello all and thank you, I will try to make this as clear as I can. I have a matrix, at the top of the matrix are 4 time points, the first col describes the sample, then under each time point I have the intensity values of that sample. So : Samples 0 10 30 120 <- time A 200 300 400 1000 <- data B 100 400 200 100 C 500 400 200 1000 ^ | samples I would like to plot these however, all I get is a very messed up plot. It may be due to the size of the matrix, it is 7746 rows long. But I thought for R that shouldn't make a difference. Cheers, Paul Research Technicia...
2008 Oct 01
1
Please help me to produce smoothed contour plots
...hing as the data generation process is stochastic and produces small variations which I'd rather 'smooth' away. I cannot spot what is different about my data from the examples in (akima) which prevents this working. here is an example of my data: > x 0 50 100 150 200 250 300 350 400 450 500 0 50 100 150 200 250 300 350 400 [21] 450 500 0 50 100 150 200 250 300 350 400 450 500 0 50 100 150 200 250 300 [41] 350 400 450 500 0 50 100 150 200 250 300 350 400 450 500 0 50 100 150 200 [61] 250 300 350 400 450 500 0 50 100 150 200 250 300 350 400 450 500 0 50 100...
2015 Nov 17
2
Borrar cada fila 400
...ue quiera, isn usar un > bucle for, sino un apply, o un tapply... > > > From: j.para.fernandez en hotmail.com > > To: cof en qualityexcellence.es > > Date: Tue, 17 Nov 2015 19:17:30 +0100 > > CC: r-help-es en r-project.org > > Subject: Re: [R-es] Borrar cada fila 400 > > > > Gracias Carlos una vez más, pero no es exactamente lo que quiero > > > > Con colMeans estas calculando por columnas, pero yo quiero que calcule > asi: > > > > mean(datos[1:20,1:20]), pero claro, para toda la secuencia. > > > > > > mea...
2018 Sep 05
2
AddressSanitizer on SPECCPU2006
...rCoverage feature supported by clang to get the basicblock coverage. my tested binaries are spec cpu2006. I compiled the binary with the option COPTIMIZE = -O0 -fsanitize=address -fsanitize-coverage=bb -flto -fno-strict-aliasing -std=gnu89 -gdwarf-3 After the compiling process is end. I run the 400.perlbench. with the command ASAN_OPTIONS=coverage=1 ./perlbench. However, the AddressSanitizer detect the global buffer overflow and I could not run the perlbench properly. Is there anything wrong or I missed some configurations? I just want to compile the binaries with instrumented coverage info...
2005 Dec 21
4
How can I taalk to our AS/400?
Hello, I can do this in java, but want to use Rails. How can I connect to our AS/400? Thanks Frank _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2005 Sep 12
2
Hang up not hanging up (New Zealand Indications??)
...problem and i have made sure that i have the latest info in the indications.conf as follows: [general] country=nz [nz] description = New Zealand ;NOTE - the ITU has different tonesets for NZ, but according to some residents there, ; this is, indeed, the correct way to do it. ringcadence = 400,200,400,2000 dial = 400 busy = 400/250,0/250 ring = 400+450/400,0/200,400+450/400,0/2000 congestion = 400/375,0/375 callwaiting = !400/200,!0/3000,!400/200,!0/3000,!400/200,!0/3000,!400/200 dialrecall = !400/100!0/100,!400/100,!0/100,!400/100,!0/100,400 record = 1400/425,0/15000 info = 400/750,0/10...
2009 Mar 23
2
[LLVMdev] Problem Compiling Test-suite
Hello, I am new in using llvm so I would like to get some help on how to compile test-suite. Assumptions: llvm is in /llvm directory llvm-gcc is in /llvm-4.2-2.4-x86-linux-RHEL4/bin I have tried compiling test-suite and I get the following error: $make make[1]: Entering directory '/llvm/projects/test-suite/SingleSource' make[2]: Entering directory