search for: chan1

Displaying 12 results from an estimated 12 matches for "chan1".

Did you mean: chan
2003 Mar 13
2
RODBC and Excel in Widows
Hello, I have some problems with RODBC and Excel in Win98 I am using R 1.6.2 and just upgraded RODBC to the last version on CRAN. I have an Excel file with columns Number, Name, Sex, Age, FEV1 on Sheet 1 and Number, Age, FEV1, Name, Sex on Sheet 2. Now I open the channel to the file > chan1 <- odbcConnectExcel("c:/testOdbc.xls") > tables(chan1) and the list appears with the 2 tables > aa -> sqlFetch(chan1,"Sheet1") and aa has the Number, Name and Sex columns correct but Age and FEV1 are all NAs > bb -> sqlfetch(chan1,"Sheet2") and bb is...
2013 Sep 04
1
[PATCH] drm/nv84-: write fence value on exit, and restore value on init.
...be the global drm channel used for buffer moves, which would result in a hang. This may seem unlikely, but I believe that parallel piglit runs could trigger it. If not, simply creating an operation that takes a few seconds in channel 0 and then queuing a command that uses a bo from channel 1 while chan1 is still busy, then deleting/recreating chan1 could trigger it. ~Maarten
2008 Jan 23
8
Peak number of calls?
Is there any way to find-out the peak number of calls that an asterisk system has had? Not the total number of calls, but the maximum number of simultaneous calls. I know I can porobably go through the CDR logs and look for calls which have overlapped in time, but I'm wondering if there's some counter somewhere I could access... (I'm looking for evidence for an ISDN client who
2014 Sep 16
1
Disabling CDR for all dialed parties in Asterisk 12
...ent) and I can't find any way to disable it for the other ones (I think the CDR in question is written after the Dial completes). Is it by design? Is there any other known way? Here is my simple testing dialplan: ---- [test] exten => a,1,Set(CDR_PROP(disable)=true) same => n,Dial(Local/chan1 at loc&Local/chan2 at loc) same => n,Hangup() [loc] exten => chan1,1,Set(CDR_PROP(disable)=true) same => n,Answer() same => n,Wait(2) same => n,Hangup() exten => chan2,1,Set(CDR_PROP(disable)=true) same => n,Answer() same => n,Wait(3) same => n,Hangup() ---...
2004 Dec 20
2
problems with limma
I try to send this message To Gordon Smyth at smyth at vehi,edu.au but it bounced back, so here it is to r-help I am trying to use limma, just downloaded it from CRAN. I use R 2.0.1 on Win XP see the following: > library(RODBC) > chan1 <- odbcConnectExcel("D:/Data/mgc/Chips/Chips4.xls") > dd <- sqlFetch(chan1,"Raw") # all data 12000 > # > nzw <- cbind(dd$NZW1C,dd$NZW2C,dd$NZW3C,dd$NZW1T,dd$NZW2T,dd$NZW3T) > akr <- cbind(dd$AKR1C,dd$AKR2C,dd$AKR3C,dd$AKR1T,dd$AKR2T,dd$AKR3T) > bas...
2003 Jun 24
8
excel files and R
Greetings everyone, I am new at R. My questions is rather basic. Looking R manuals looks like there should be a way to read MS excel files into R. Could somebody tell me which library should I use for that? Thanks in advance Victor H. Marín Laboratorio de Modelación Ecológica Depto. de Ciencias Ecológicas, Fac. de Ciencias, Universidad de Chile Casilla 653 Santiago, Chile
2004 Apr 01
15
ANNOUNCE: Flash Operator Panel
http://sip.house.com.ar/operator Its a server/client combo that displays the status of your Asterisk PBX in a web browser in real time. You can also perform some actions. Hang-up channels and Transfers via drag and drop. The difference with other similar tools is that it displays status in real time (no refreshing necessary), and its graphically appealing. It's a work in progress... so
2013 Sep 02
2
[PATCH] drm/nv84-: write fence value on exit, and restore value on init.
This increases the chance slightly that recovery from lockup can happen succesfully. Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com> --- drivers/gpu/drm/nouveau/nv84_fence.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nv84_fence.c b/drivers/gpu/drm/nouveau/nv84_fence.c index 2cf0ade..daf4b18 100644 ---
2004 Dec 21
0
Fwd: problems with limma
...Questions about limma should be sent to the Bioconductor mailing list (the address is given in the introduction of the Limma User's Guide for example). > I am trying to use limma, just downloaded it from CRAN. I use R 2.0.1 on Win XP > see the following: >> library(RODBC) >> chan1 <- odbcConnectExcel("D:/Data/mgc/Chips/Chips4.xls") >> dd <- sqlFetch(chan1,"Raw") # all data 12000 >> # >> nzw <- cbind(dd$NZW1C,dd$NZW2C,dd$NZW3C,dd$NZW1T,dd$NZW2T,dd$NZW3T) >> akr <- cbind(dd$AKR1C,dd$AKR2C,dd$AKR3C,dd$AKR1T,dd$AKR2T,dd$...
2006 Dec 10
1
NAT and Dial to two channels at once
We all love Asterisk's ability to Dial(chan1&chan2) and take the first that answers. However, I have been encountering a problem when one of the channels is an external phone behind NAT and another is a local phone on the same net as the asterisk server. All have canreinvite=yes, and the phone behind NAT is correctly using Stun to give...
2005 Aug 28
1
monitoring with mrtg
Dear freinds, The pl script file which is available in the asterisk monitoring section of the voip-info.com expects username ,password and host parameters . Which one we should provied is the acconts we registered for asterisk or any thing else your help will be immensely appreciated . with regards rk _______________________________________________________ Too much spam in your inbox?
2006 Aug 18
7
Linux - Rails - PostgreSQL partitioning
I am getting some larger hard drives and will migrate my intranet application onto the new hard drives. I am using CentOS 4. The current setup uses one small boot volume (ext2) and the rest is partitioned into one big LVM. Does it make sense to partition /var/lib/pgsql separately? (thinking mostly in terms of performance) Craig