Displaying 20 results from an estimated 11000 matches similar to: "is.numeric (PR#8067)"
2003 Mar 30
1
(no subject)
it is possible to use musiconhold. i added
exten => s,5,SetMusicOnHold,default
exten => s,7,dial,SIP/michael&SIP/frank|15|m
to the extension conf.
the logfile looks good, i think
-- Called michael
-- Called joern
-- Started music on hold, class 'default', on CAPI[contr1/9999]
-- SIP/192.168.100.150:5060 is ringing
-- Stopped music on hold on CAPI[contr1/9999]
--
2007 Jan 19
1
Error in heatmap()
Hi,
I run into following error when using heatmap() for data matrix "xx".
Any help is appreciated? "xx" contains many "NA"s.
> hv <- heatmap(data.matrix(xx))
Error in hclustfun(distfun(if (symm) x else t(x))) :
NA/NaN/Inf in foreign function call (arg 11)
Thanks a lot.
Yuhong
2005 Apr 15
3
AW: Complete list about possible options for the config file???
Hey Joern,
the Problem is that I installed an Debian package and how can I find out
which version was included?
But I guess it is the standart version and I will have a look at the C code
but it's been a while...
But thanks anyway
-----Urspr?ngliche Nachricht-----
Von: Joern Nettingsmeier [mailto:nettings@folkwang-hochschule.de]
Gesendet: Freitag, 15. April 2005 13:17
An: Tobias Grunow
Cc:
2003 May 21
2
Office 97 dont open .doc files
Hi,
I have the following problem:
(I'm not sure if have to send this message to you, or to Microsoft. ;-)
Samba 2.2.3a or 2.2.8a (not restarted yet)
Network of Windows NT 4.0 PCs and
one Windows 2000 Server.
The Windows NT Workingsations are working fine, but now I have to
integrate an Windows 2000 Server and with this Server I have the
following problem.
When I open an XXXXX.doc-file
2004 Aug 06
1
test load for icecast2 ?
On Wed, 5 Mar 2003, Michael Smith wrote:
> On Wednesday 05 March 2003 19:13, Joern Nettingsmeier wrote:
> > i'm test-driving an icecast2 relay on a rather crappy network
> > connection. to hammer on it, i was listening to the stream with xmms
> > while doing a couple of parallel wget -O - http://..mystream 2&>1
> >
> > >/dev/null from another
2009 Dec 31
2
Benefit of treating NA and NaN differently for numerics
Hello,
I notice in main/arithmetic.c, that NA and NaN are encoded
differently(since every numeric NA comes from R_NaReal which is
defined via ValueOfNA)
. What is the benefit of treating these two differently? Why can't NA
be a synonym for NaN?
Thank you
Saptarshi
(R-2.9)
2004 Aug 23
3
nmbd logging in 3.0.6 ?
Due to a config typo, I could not find any log.nmbd og log.smbd.
When I realized my own error, I was able to establish
the log.smbd when starting the daemon with the -l (or --logfile)
parameter. This, however, works only for smbd - nmbd seems
to ignore the mentioned parameter totally.
Anyone else having a similar experience ?
Cheers, Joern.
2002 Mar 01
3
Power of t-test in R vs. S-PLUS
Dear all,
I found a discrepancy while performing a power calculation for a two sample
t-test in R and S-PLUS, respectively.
For given values of sample number (5 each), sd (0.2) , significance level
(0.01), and a desired power (80%) I looked for the difference in means.
These values differ: 0.5488882 in R and 0.4322771 in S-PLUS (see dump
below).
Did I overlook any detail or confuse some
2010 Jan 25
1
Web-Meetme 4.0 and Asterisk 1.6.2
Hi,
I'm trying to setup Web-Meetme 4.0 and I always get the following
warning when I open the default page http://localhost/web-meetme
Warning: session_start() [function.session-start]: Cannot send session
cache limiter - headers already sent (output started at
/var/www/web-meetme/locale.php:36) in
/var/www/web-meetme/meetme_control.php on line 34
Has anyone a solution to this?
Cheers
2004 Aug 06
1
Questions
On Sun, 11 Apr 2004, Joern Nettingsmeier wrote:
> karl, any chance of an alpha release of ices/icecast with speex
> support in the next two weeks? (hint: huuge testbed :-D)
and if so, is there anything that can already play it (e.g. ogg123)? I
know ogg123 can play static speex files, it's the streaming bit that gets
me.
Geoff.
<p>--- >8 ----
List archives:
2004 Sep 19
1
Ices2 and Jack
On Sun, Sep 19, 2004 at 09:21:26AM +0200, Joern Nettingsmeier wrote:
> talk about coincidene: here's a short ices-jack-pico howto i posted
> to linux-audio-user today:
Excellent!
> i forgot: you need to do ./autogen before the configure step.
I don't know if you included this, but the autogen part probably implies a
dependency on some (newer) versions of
2003 Apr 08
1
truncated poisson in glm / glmmPQL
Hi
I'm a postgrad in ecology, and have recently started to use R. I'm planning
to model various sets of animal abundance (i.e. count) data in relation to
habitat data using glm's and/or glmmPQL's. However, some of my potential
response variables have many zeros. From what I gather the "family = ..."
option in the command line does not allow for the direct
2005 Feb 21
2
theora streaming problem...
[oddsock, this concerns your theora guide, so i'm cc:ing you]
Karl Heyes wrote:
> On Mon, 2005-02-21 at 22:04, Joern Nettingsmeier wrote:
>
>>hi everyone!
>>
>>
>>i'm playing around with theora streaming for the linux audio conference
>>2005 (http://lac.zkm.de).
>
>
> nice,
>
>
>>i checked out svn.xiph.org/trunk, built all
2008 Apr 24
3
how to delete all document from the DB (without deleting the DB itself)
Hello,
I'm still testing PHP5 bindings and I could'nt find a way to delete
all documents from a DB without deleting other informations stored in
the DB such as synonyms.
Since the process of adding synonyms is time consuming, I would like
to use the same DB but restart my test without any document in the DB,
is this possibile?
I could'nt find a delete_all or a method like that, nor
2008 Jul 11
1
Subsetting an array by a vector of dimensions
Hi
Is it possible to subset an n-dimensional array by a vector of n dimensions? E.g. assume I have
> x <- array(1:24, dim=2:4)
> x[1,1,2]
[1] 7
> dims <- c(1,1,2)
I would like a function that I can supply x and dims as parameters to, and have it return 7. Also, I would like to do something like:
> x[1,1,]
[1] 1 7 13 19
> dims2<- c(1,1,NA)
And have a function of x and
2006 Jun 12
1
strange behaviour with rotated viewports in grid
Dear all,
I am having a problem using grid when rotating a viewport. It seems
to plot everything on a grey background colour which I am not able to
get rid of. Even book examples such as that that plot figure 5.10 in
P. Murrell's R Graphics book show the same behaviour.
The following example illustrates this issue. I would appreciate if
anyone has a way to solve this.
Best regards,
2006 Mar 23
11
ActiveRecord: Oracle metadata loading slow on large database
All,
While attempting to use ActiveRecord against a large database, approx.
1700 tables and 4 million rows, I discovered an inefficiency in
oci_adapter.rb. The problem seems to be the SQL being generated to
lazy-load the columns metadata. "def columns(table_name, name = nil)"
method generates the following SQL:
select column_name, data_type, data_default, nullable,
2000 Oct 11
0
RE: CBQ and load balancing -> solved
Hi there,
I got the solution for my problem, and thought may at someday somebody
could use it. Julian Anastasov and some people from the LVS mailing list
helped me with it.
---
Subject: Re: LVS and CBQ
Date: Tue, 10 Oct 2000 22:53:01 +0000 (GMT)
From: Julian Anastasov <ja@ssi.bg>
To: joern maier <joern.maier@informatik.uni-ulm.de>
CC:
2004 Aug 06
0
Linux Audio Conference #2 live streams, cams and chat available tomorrow (fwd)
hi everyone!
thought you might be interested.
huge kudos to all authors of and contributors to icecast2, ices2,
libshout, libogg, libvorbis for making this happen!
best,
joern
<p>---------- Forwarded message ----------
Date: Wed, 28 Apr 2004 14:44:46 +0200 (CEST)
From: Joern Nettingsmeier <nettings@folkwang-hochschule.de>
To: linux-audio-dev@music.columbia.edu,
2016 Jan 05
2
synonym expansion for boolean prefixes.
Olly Betts <olly at survex.com> writes:
> A better option for this is probably a FieldProcessor - you set one for
> a prefix and the it gets passed the value and returns a Query object
> for it. E.g. in lua (where you can just pass an anon function for the
> FieldProcessor - we ought to support C++11 lambdas for such things):
[snip]
> To achieve this with synonyms in a