Displaying 20 results from an estimated 300 matches similar to: "vorbis & open music"
2001 Feb 23
0
(no subject)
hiho,
i'm quite new to this list , and maybe this is a little
out of topic, but i want to announce something
related to vorbis. i'm the maintainer of the music_site
http://www.killerfish.de and we hardly discuss
to use vorbis for our releases. i attached a mail
i sended to monty earlier, and he asked me to post
it here. here we go.
> we use ra / mp3 on our site, BUT we're about to
2000 Dec 17
1
multiframe in postscript
I was hoping that the following specification
postscript(file="fig.ps",height=2,width=4)
par(mar=c(5,5,2,2)+.1,mfrow=c(1,2),mex=.6)
would yield the same scaling effect as
postscript(file="fig.ps",height=2,width=6)
par(mar=c(5,5,2,2)+.1,mfrow=c(1,3),mex=.6)
but the fact is that the 'mfrow=c(1,2)' yields smaller plotting frame
and bigger font size.
2010 May 31
1
Matlab Speex library
Hello,
How to decode speex encoded audio in Matlab if Google doesn't find a
library in Matlab that does that? Do you know one? Can anyone tell me if
Matlab can use a Speex implementation in another language? Maybe binaries?
Thanks
Jader Dias
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Jul 11
1
small first graph of par(3,2), other 5 are correct
Hi,
I'm trying to produce 6 graphs on a single page using code I've borrowed
from an example by Paul Murrell:
(http://www.stat.auckland.ac.nz/~paul/RGraphics/custombase-xmastree.R).
It involves placing 6 horizontal barplots on one page and adding common
labels.
The problem is the first graph in my figure (the one in the (1,1)
position) is smaller than the other 5. A toy example is
2002 Jun 14
1
data.frame - transform
Hi there,
I have a data.frame (pwt6) which I would like to transform:
country year gdp
MEX 1950 2
MEX 1951 5
BOL 1950 4
BOL 1951 12
ITA 1950 45
ITA 1951 2
This should be the result:
year MEX.gdp BOL.gdp ITA.gdp
1950 2 4 45
1951 5 12 2
Right now I have this code (better - no code):
country.label<-names(table(pwt6$country))
result<-data.frame(year=NULL)
for(i in country.label)
?
2012 Oct 31
10
Gráfico von varias variables
Estimados amigos,
Tengo el siguiente set de datos:
caps <- datos[datos$NombreDepartamento=="LANUS", c("CAPS", "personas",
"PersonasRCVG", "Con12Meses")]
caps$prevalencia <- round(caps$PersonasRCVG/caps$personas*100,1)
caps
CAPS personas PersonasRCVG Con12Meses prevalencia
2345 2345 1347 132 211 9.8
2363
2010 Nov 05
1
__Legend_para_varios_gr�ficos
Hola a todos, en efecto, lo crucial es el new, he utilizado estas líneas
para mi código:
par(new=T, mfrow=c(1,1), mar=c(0,4,2,2), oma=c(1,1,0,1))
plot(-1,type="n",axes=F,xlab='',ylab='')
2010 Nov 05
2
Legend para varios gr�ficos
Hola a todos,
Mi pregunta es si hay alguna manera (sencilla/rápida o no) de colocar
una leyenda común para dos gráficos colocados en paralelo con
par(mfrow=c(1,2)).
He probado con par(xpd=NA) y con par("usr") pero no encuentro la solución.
Está claro que podría poner la misma leyenda para cada gráfica, pero
quedaría mejor con una global para ambos.
Muchas gracias de antemano por la
2003 Mar 06
3
multiple plots and postscript()
Kia Ora everybody.
There must be an obvious answer to this, but I can't see it....
I want four square plots in one postscript file. The canonical answer
would be:
postscript(file="~/f.ps",width=5,height=5)
par(pty="s",mfrow=c(2,2))
plot(1:19,xlab="")
plot(1:19,xlab="")
plot(1:19,xlab="")
plot(1:19,xlab="")
dev.off()
But this
2013 Jan 09
5
vCPUs and Weight/Caps
Hello Everyone,
I am hoping I can get some help with how vCPUs work with weights and caps
1. If I have a domU with 2 vCPUs and a weight of 256, does the weight double (512) or is this 256 time slice across both vCPUs. If the weight does not double, how is it beneficial to have multiple vCPUs?
2. If the domU has 2vCPUs and a cap of 100% how does this work since 100% is a mex of one physical
1999 Nov 10
1
plot() bugs (PR#317)
Full_Name: Bill Simpson
Version: 65.1
OS: Linux Redhat 6.1
Submission from: (NULL) (193.62.250.209)
Try this:
#default plot symbols and lettering are too small, need to scale up
par(cex=2,mex=.7)
par(mar=c(5,5,1,1))
spdiff<-c(1,2,3,4,5)
dpdet<-c(1,2,3,4,5)/10
dpsp<-c(2,3,4,5,6)/10
dpdir<-c(2,4,6,8,10)/10
plot(spdiff,dpdet,pch=15,ylim=c(0,max(dpdet,dpsp,dpdir)),xlab="Speed
2003 Dec 24
1
par(mgp) - unexpected behaviour (PR#6046)
Full_Name: Nicholas Boers
Version: 1.8.1
OS: Windows XP Home Edition, Debian GNU/Linux 3.0
Submission from: (NULL) (24.68.84.10)
mgp[2] specifies the axis labels' margin line relative to that of the axis line
(mgp[3]). The `par' help does not document this behaviour.
The following code demonstrates my observation:
plot.new();
par(mgp = c(3, 2, 1));
box();
title(xlab =
2011 Aug 19
1
Build a package - check error
Dear R-users
I am slowly migrating my mex files (MATLAB - Fortran and C) to R. To get my
own functions available on R section I have decided to learn how to build a
R package. I choose a simple example with a few Fortran and R functions
(wrapper).
The fortran sources are located at src and the R functions at R (as
recommended). The building process went ok but R CMD check did not. The
error
2002 Aug 14
3
Out of memory
During a R session (Version 1.4.1 under Windows) I ended up getting the following error message:
Error: vector memory exhausted (limit reached?)
independently of the command like rm(something), q(), ls(), gc(), memory.size(), memory.limit(300000000), ...
What could I do now to save my data? How could I prevent this situation?
Thanks for any hint,
Nikolaus Hansen
2009 Aug 19
1
Fw: Hist & kernel density estimates
For the hist estimate
>par(mex=1.3)
>dens<-density(q)
>options(scipen=4)
> ylim<-range(dens$y)
> h<-hist(q,breaks="scott",freq=FALSE,probability=TRUE,
+? right=FALSE,xlim=c(9000,16000),ylim=ylim,main="Histogram of q(scott)")
> lines(dens)
>box()
?
For the kernel estimate>options(scipen=4)
> d <- density(q, bw =
2003 Dec 24
1
par(mgp) - unexpected behaviour (PR#6045)
Full_Name: Nicholas Boers
Version: 1.8.1
OS: Windows XP Home Edition, Debian GNU/Linux 3.0
Submission from: (NULL) (24.68.84.10)
mgp[2] specifies the axis labels' margin line relative to that of the axis line
(mgp[3]). The `par' help does not document this behaviour.
The following code demonstrates my observation:
plot.new();
par(mgp = c(3, 2, 1));
box();
title(xlab =
2006 Jan 11
1
InstallShield Setup.exe hang
Hi
InstallShield(setup.exe) seems to be hang up just after extracting
files with fresh maked & installed wine 0.9.5 from source on fedora
core 4. Could you tell me work around or hint ?
I have to put the ole32.dll from MS WinXP original
into drive_c/windows/system32 ?
InstallShield output are as follows. I think Setup.exe extract
files(OK) and folk co-process(iKernel.exe;OK), then try to
2009 Sep 25
1
error while plotting
I am getting the following errors when I am trying to plot the data below. I cannot figure out the error.
Error in plot.window(...) : need finite 'xlim' values
In addition: Warning messages:
1: In min(x) : no non-missing arguments to min; returning Inf
2: In max(x) : no non-missing arguments to max; returning -Inf
3: In min(x) : no non-missing arguments to min; returning Inf
4: In max(x) :
2007 Sep 04
2
multiphasic growth curve analysis
Greetings R Help Group,
How does one effect a multiphasic logistic growth model with 4 phases (e.g. Koops 1986; Weigel, Craig, Bidwell and Bates 1992; Grossman and Koops 2003) with R.
Before writing to the group, the R help archives were searched, the web was searched with Google, Venables and Ripley 2002 was consulted, Pinheiro and Bates 2000 was consulted, Bates and Watts 2007 was bought and
2008 Nov 03
3
[rsync -avz] total size/disk usage difference between source and destination
Hi folks
We migrated storage from local disk to SAN with:
# rsync -avz /mnt/lvol00045/* /lvol00045
Why there is a difference in size? How to explain this? Do we have
inconsistency? What we did wrong?
[...]
/dev/mapper/vg01-lvol00045_old
10321208 3930336 6286016 39% /mnt/lvol00045
[...]
/dev/mapper/vg01-lvol00045
10321208 3163852 6633068 33%