Displaying 20 results from an estimated 1034 matches for "wb".
Did you mean:
wmb
2009 Jan 14
3
Precision in R
Dear All,
I'm preparing a simple algorithm for matrix multiplication for a
specific purpose, but I'm getting some unexpected results.
If anyone could give a clue, I would really appreciate.
Basically what I want to do is a simple matrix multiplication:
(WB) %*% t(WB).
The WB is in the disk so I compared to approaches:
- Load 'WB' using 'read.table' (put it in WB.tmp) and then to the
simple matrix multiplication
WB.tmp%*%t(WB.tmp)
- Scan each row of WB and do the cross products 'sum(WB.i*WB.i)'
and 'sum(WB.i*WB.j)',...
2004 Oct 01
3
Reading multiple files into R
I want to read data from a number of files into R.
Reading individual files one by one requires writing enormous amount of
code that will look something like the following.
****************
maptools:::dbf.read("wb-01vc.dbf")->dist1
maptools:::dbf.read("wb-02vc.dbf")->dist2
maptools:::dbf.read("wb-03vc.dbf")->dist3
maptools:::dbf.read("wb-04vc.dbf")->dist4
maptools:::dbf.read("wb-05vc.dbf")->dist5
maptools:::dbf.read("wb-06vc.dbf")->dist...
2015 Nov 05
4
Duda respecto a la dimensión de la división de dos columnas de una tabla
Muchas gracias a tod en s por las respuetas!
tengo en una variable wb una tabla con 145 filas y 17 columnas.
dim(wb) 145 17
Creo una variable Serie16, la cual resulta de dividir la columna 3 y la 12.
Serie16 <- c(wb[3]/wb[12])
Serie16
Aquí viene el problema. La dimensión de la nueva columna, pensaba que seria
145 filas y 1 columna.
Le doy a dim, y me devuelve el...
2016 May 02
1
Closing a fifo() on Windows core dumps R (3.2.5, 3.3.0 RC and devel)
...g core dumps R 3.2.5, R 3.3.0 RC and R devel on Windows.
I have tried to use a minimal setup (for all versions tested), i.e.
C:\> cd C:\
C:\> set PATH=C:\PROGRA~1\R\R-33~1.0RC\bin
C:\> set R_DEFAULT_PACKAGES=base
C:\> R --quiet --vanilla
> close(fifo("foo.tmp", open="wb"))
[core dump]
C:\> R --quiet --vanilla
> con <- fifo('foo.tmp', open='wb')
> print(con)
description class mode text opened can read
"\v" "fifo" "wb" "text" "opened...
2008 Jan 25
2
How to get size of WB frame in bits/bytes?
Hi,
Is there any way to determine frame size in bits or bytes of
encoded frame in WB mode for given quality? That is I need
to know how many bits encoded frame will occupy in RTP
packet. I see SPEEX_SUBMODE_BITS_PER_FRAME request,
but it works like this only for NB mode, and for WB mode
it return size of WB "subframe" (?) only.
--
Regards,
Alexander Chemeris.
SIPez LL...
2006 Sep 21
2
AEC in WB mode fixed yet ?
> Today's Topics:
>
> 1. AEC with WB mode (Jean-Christophe.Berge@etu.enseeiht.fr)
> 2. Multiple frame encode and decode (Reza Fatahillah)
> 3. cant link speex_echo.h (jesus)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 20 Sep 2006 08:46:03 +0200...
2006 Oct 24
1
[Xen-ia64-devel] [PATCH] xenctx shows more registers for ia64
...00100c18f10
r26: ffffffffffff0030 r27: 0000000000000000
r28: 000000000000001d r29: 0000000000000000
r30: 0000000000000000 r31: 0000000000000000
itr: P rid va pa ps ed pl ar a d ma key
[0] 1 000005 a000000100000000 0000004000000 1a 64M 1 2 3 1 1 0 WB 000000
[1] 1 000007 e000000000000000 0000000000000 18 16M 1 2 3 1 1 0 WB 000000
[2] 0 000000 0000000000000000 0000000000000 00 0 0 0 0 0 0 WB 000000
[3] 0 000000 0000000000000000 0000000000000 00 0 0 0 0 0 0 WB 000000
[4] 0 000000 0000000000000000 0000000000000 00...
2015 Sep 17
2
Fwd: Creación fichero excel con loadWorkbook
...entando crear un archivo de Excel pero no hay manera. Sigo los pasos del documento de ayuda siguiente:
>
> http://altons.github.io/r/2015/02/13/quick-intro-to-xlconnect/#load
>
> los pasos que hago son:
>
> install.packages("XLConnect")
> require(XLConnect)
> wb <- loadWorkbook("C:/Users/r2753/Desktop/R/test1.xlsx",create=T)
>
> y la info de mi ordenador es:
>
> Tipo de sistema: Windows7, 64Bit
> Java (32-Bit)
> RGui (32-Bit)
>
> Cuando entro wb <- la primera vez se queda como pensando, acaba de pensar, pero no...
2008 Feb 12
2
Determine number of 20ms frames in packet - without decoding
...> Here is first attempt. I'm sending it here for review - am I understand
> you correctly? If general approach is correct, I'll change code to use
> modes from modes.c.
I haven't tested, but it looks sane. Just a few comments:
- printf("\tERROR not enough bits left after wb\n"); this is actually
now an error. It just means you got to the end of the frame
- I suggest speex_get_num_frames() instead. That works for both
narrowband and wideband. Number of samples could be misleading because
of nb vs wb frame size.
- You can change it to use the nb mode info in mode...
2012 Aug 08
4
Saving Splitted Series to Excel via XLConnect
...433,433,433,433,2005,2005,2005,2005,
2005,2005,3939,3939,3939,3939,3939,3939),nrow=18,
ncol=3,byrow=FALSE,dimnames=list(c(1,2,3,4,5,6,7,8,9,
10,11,12,13,14,15,16,17,18),c("date","value","code"))))
dados2 <- split(dados, dados$code)
dados2
library(XLConnect)
wb <- loadWorkbook("Teste.xlsx", create = TRUE)
createSheet(wb, name = "Teste1")
writeWorksheet(wb, dados2, sheet = "Teste1")
saveWorkbook(wb)
With this code I only get the "433" series. How could I
fix my code? How could I include the other series?
Many th...
2013 Nov 04
3
Reading data from Excel file in r
Hi experts,
I want to read data from an excel data like this:
for the fifth column, from first row until 140 but only 1,3,5,7,.....139
(only 70 values),
How can I do it in R?
thanks
[[alternative HTML version deleted]]
2005 Oct 26
2
Noisy sound quality with Blackfin in WB-mode
...Jean-Marc,
> Can you confirm I'm understanding everything correctly? You encode
> with
> the same encoder and then decode with either A) blackfin assembly and
> fixed-point or B) fixed-point only on Blackfin. Then A) sounds bad and
> B) sounds good. If you do the same in narrowband, it sounds OK. Is
> that
> correct? If that's the case, it's *probably* some kind of bug and/or
Yes, that's right, except one thing: I always use the blackfin
+fixedpoint optimized encoder *and* decoder or the fixedpoint-only
optimized encoder *and* decoder at one time....
2005 Feb 19
1
Comment on loadURL: should default to mode="wb"
...'loadURL' is a convenience wrapper which downloads a file, loads
it and deletes the downloaded copy.
Trying to load an rda file on Windows (XP, R-devel) I was surprised
when I received an error about input being corrupted with LF
replaced by CR.
The fix was to specify mode="wb" to loadURL. This gets passed to
download.file and the right thing happens...
On unix platforms it doesn't matter whether mode="w" or mode="wb".
Will loadURL ever do anything useful on Windows without passing
mode="wb"? If not, I think changing the defaul...
2017 Apr 07
3
problema con wb del paquete wbstats
...mpo tendría datos, hoy no y daría vacío.
>
>
>
> Javier Rubén Marcuzzi
>
>
>
> *De: *Sebastian Kruk <residuo.solow en gmail.com>
> *Enviado: *viernes, 7 de abril de 2017 11:56
> *Para: *Lista R <r-help-es en r-project.org>
> *Asunto: *[R-es] problema con wb del paquete wbstats
>
>
>
> Estimados Usuarios-R:
>
>
>
> Muy buenos días.
>
>
>
> Tengo un problema con la librería wbstats.
>
>
>
> Corro el siguiente programa:
>
>
>
> >wb_cache_7_4_17 <- wbcache(lang="es")
>
> >...
2015 Jan 23
0
issue with update.packages()
.../3.1/bioc
Update (y/N/c)? y
also installing the dependencies ?IRanges?, ?BiocGenerics?, ?Biobase?, ?GenomeInfoDb?, ?DBI?, ?RSQLite?, ?S4Vectors?
trying URL 'http://bioconductor.org/packages/3.1/bioc/src/contrib/IRanges_2.1.35.tgz'
Error in download.file(url, destfile, method, mode = "wb", ...) :
cannot open URL 'http://bioconductor.org/packages/3.1/bioc/src/contrib/IRanges_2.1.35.tgz'
In addition: Warning message:
In download.file(url, destfile, method, mode = "wb", ...) :
cannot open: HTTP status was '404 Not Found'
Warning in download.packages...
2005 Oct 26
1
Noisy sound quality with Blackfin in WB-mode
...> encoder, the
> decoder or both.
I tested that,and the results are: The fixedpoint+blackfin encoder
used together with the fixedpoint-only decoder produces an bad
sounding file (for all the combinations for quality and complexity I
mentioned in my previous postings, and also for both WB and UWB mode).
The combination fixedpoint-only encoder together with the fixedpoint
+blackfin decoder results in good sounding files.
> A couple things worth checking: try with WB quality 5 and 8. Do
> both of
> these have a problem (they use a different scheme). Also, with Speex,
>...
2012 Nov 29
2
Deleting certain observations (and their imprint?)
...aks)
breaks wool tension
Min. :10.00 A:27 L:18
1st Qu.:18.25 B:27 M:18
Median :26.00 H:18
Mean :28.15
3rd Qu.:34.00
Max. :70.00
## Subset the dataset and keep only those observations with "L"
> wb.subset <- warpbreaks[which(warpbreaks$tension=="L"),]
##Summary of the subsetted data shows: L=18, M=0, H=0, Why is M and H still included?
> summary(wb.subset)
breaks wool tension
Min. :14.00 A:9 L:18
1st Qu.:26.00 B:9 M: 0
Median :29.50 H...
2017 Apr 07
2
problema con wb del paquete wbstats
Estimados Usuarios-R:
Muy buenos días.
Tengo un problema con la librería wbstats.
Corro el siguiente programa:
>wb_cache_7_4_17 <- wbcache(lang="es")
>ed_search <- wbsearch("educacion", cache = wb_cache_7_4_17)
>ed_search <- ed_search[grepl("secundario", ed_search$indicator)==T,]
>country_list <-
wb_cache_7_4_17$count...
2012 Jun 15
1
Does Asterisk support AMR and AMR-WB
Hi all, I have a project for the 3G related, AMR and AMR-WB support.
I'm using the client develop suite from the PortSIP(http://www.portsip.com),
as their said
support the AMR, AMR-WB with RFC4867.
Now I have to setup a SIP server/SIP PBX in our Lab for test, does the
Asterisk
support these codecs and RFC4867 ? If no, there has any plugin to support...
2012 Aug 29
1
Suggestion: Change default to download.file(..., mode="wb") ...instead of mode="w" with some bells and whistles
...corrupted due to (what I think is)
translated newlines. Search the r-help mailing list and you'll find
other examples of this. This may or may not only be a problem for
Windows users.
I'd like to suggest to change the default of argument 'mode' of
download.file() to be mode="wb". The "default" is current mode="w"
except when argument 'mode' is missing (not explicitly given),
download.file() tries to be helpful by forcing 'mode' to be "wb" for
certain filename extensions. NB: help("download.file",
package="...