Displaying 20 results from an estimated 47 matches for "8029".
Did you mean:
802
2011 Aug 25
3
Selections in lists
Hi,
I have produced a list g and I would like to reduce the amount of
information contained in each object in g.
For each matrix I would like to keep the values where the column name equals
g[year][[1]][[x]] and the row names equals g[year][[1]][[-x]]. So in
g$`1999`$`8029`, year = 1999 and x = 8029. I have been experimenting with
the subset function, but have been unsuccesful. Thanks for your help!
The result for g$`1999`$`8029` should be:
$`1999`$`8029`
B
B 8029
8026 1
8027 1
8028 1
The result for g$`1999`$`8028` should be:
$`1999`$`80...
2011 Jun 02
2
Counting occurrences in a moving window
Hi list, based on the following data.frame I would like to create a variable
that indicates the number of occurrences of A in the 3 years prior to the
current year:
DF = data.frame(read.table(textConnection(" A B
8025 1995
8026 1995
8029 1995
8026 1996
8025 1997
8026 1997
8025 1997
8027 1997
8026 1999
8027 1999
8028 1995
8029 1998
8025 1997
8027 1997
8026 1999
8027 1999
8028 1995
8029 1998"),head=TRUE,stringsAsFactors=FALSE))
becomes:
A B C
8025 1995 0
8026 1995 0
8029 1995 0
8026 199...
2011 Jun 14
1
Multiply list objects
Hi,
I am trying to use the objects from the list below to create more objects.
For each year in h I am trying to create as many objects as there are B's
keeping only the values of B. Example for 1999:
$`1999`$`8025`
B
B 8025 8026 8027 8028 8029
8025 1 1 1 0 0
8026 1 0 0 0 0
8027 1 0 0 0 0
8028 0 0 0 0 0
8029 0 0 0 0 0
$`1999`$`8026`
B
B 8025 8026 8027 8028 8029
8025 0 1 0 0 0
8026 1 1 1 0 1
8027 0 1...
2011 Aug 22
1
Selecting cases from matrices stored in lists
...,]>0])
}
Now that I have created list h (with split matrices), I would like to use
these selections to make similar selections in list c. List c needs to get
the exact same shape as h, so that `8026`in 1997 (c$`1997`$`8026`) looks
like this:
$`1997`$`8026`
B
B 8025 8026 8029
8025 1.0000000 0.7739527 0.9656091
8026 0.7739527 1.0000000 0.7202771
8029 0.9656091 0.7202771 1.0000000
Can anyone help me doing this? I have no idea how I can get it to work.
Thank you very much for your help!
library(zoo)
DF1 = data.frame(read.table(textConnection("...
2011 Aug 15
1
Selecting section of matrix
...st h created below, I would like to select a section of the 1999 matrix.
For a case (rownames and colnames) I would like to select the cells that
have a value > 0. So for case 8025
8025 8026 8027
8025 1 1 1
8026 1 1 1
8027 1 1 1
And for case 8028
8028 8029
8028 1 1
8029 1 1
DF2 = data.frame(read.table(textConnection(" A B C
80 8025 1995
80 8026 1995
80 8029 1995
81 8026 1996
82 8025 1997
82 8026 1997
83 8025 1997
83 8027 1997
90 8026 1998
90 8027 1998
90 8029 1998
84 8026 1999
84 8027 1999
85 8028 19...
2011 Apr 29
4
For loop and sqldf
...able(textConnection(" B C D E F G
8025 1995 0 4 1 2
8025 1997 1 1 3 4
8026 1995 0 7 0 0
8026 1996 1 2 3 0
8026 1997 1 2 3 1
8026 1998 6 0 0 4
8026 1999 3 7 0 3
8027 1997 1 2 3 9
8027 1998 1 2 3 1
8027 1999 6 0 0 2
8028 1999 3 7 0 0
8029 1995 0 2 3 3
8029 1998 1 2 3 2
8029 1999 6 0 0 1"),head=TRUE,stringsAsFactors=FALSE))
list<-sort(unique(DF$C))
for (t in 1:length(list))
{
year = as.character(list[t])
data[year]<-sqldf('select * from DF where C = [year]')
}
I am trying to split up the data.f...
2010 Apr 29
2
Code in extensions.conf to leave a voice mail in another PBX ?!
...t (since i love how dialplan is written)
but i decided to ask for your help guys.
i have two asterisk servers one is 1.2 the other is 1.4, from 1.4 (pbx1) to
1.2 (pbx2) i can leave a voice mail without any pb, but from pbx2 to pbx1 it
just hang up.
in pbx2 extensions.conf:
i am using: exten => 8029,1,Dial(IAX2/pbx1/${EXTEN},20,tTWwr)
in pbx1, i have:
exten => 8029,1,Macro(stdexten,8029)
and in stdexten macro:
exten => s,n,Goto(s-${DIALSTATUS},1)
exten => s-NOANSWER,1,Voicemail(u${ARG1})
exten => s-NOANSWER,2,Goto(default,s,1)
exten => s-BUSY,1,Voicemail(b${ARG1})
exten =>...
2011 Apr 14
1
Create matrices for time series
Hi list, I would like to use the following data.frame to generate matrices
over a 3 year moving window:
DF = data.frame(read.table(textConnection(" A B C
80 8025 1995
80 8026 1995
80 8029 1995
81 8026 1996
82 8025 1997
82 8026 1997
83 8025 1997
83 8027 1997
84 8026 1999
84 8027 1999
85 8028 1995
85 8029 1998"),head=TRUE,stringsAsFactors=FALSE))
Function to be applied: t(as.matrix(table(DF[,1:2]))) %*%
as.matrix(table(DF[,1:2]))
I tried this without success:...
2010 Mar 04
1
InterPBX communication using SIP
...=> pbx2:endopass at 172.16.200.176 <pbx2%3Aendopass at 172.16.200.176>
[pbx1]
type=friend
host=dynamic
trunk=yes
sercret=password
context=[default]
deny=0.0.0.0/0.0.0.0
permit=172.16.200.176/255.255.255.128
and i get the following in pbx1:
-- Executing [18021 at default:1] Dial("SIP/8029-b7413678",
"SIP/pbx2/8021||TWw") in new stack
-- Called pbx2/8021
[Mar 4 16:49:13] WARNING[3392]: chan_sip.c:12679 handle_response_invite:
Received response: "Forbidden" from '"Khalid Touati" <
sip:8029 at 172.16.200.176 <sip%3A8029 at 172.16.200.17...
2011 May 26
1
Divide matrix into multiple smaller matrices
...able(textConnection(" B C D E F G
8025 1995 0 4 1 2
8025 1997 1 1 3 4
8026 1995 0 7 0 0
8026 1996 1 2 3 0
8026 1997 1 2 3 1
8026 1998 6 0 0 4
8026 1999 3 7 0 3
8027 1997 1 2 3 9
8027 1998 1 2 3 1
8027 1999 6 0 0 2
8028 1999 3 7 0 0
8029 1995 0 2 3 3
8029 1998 1 2 3 2
8029 1999 6 0 0 1"),head=TRUE,stringsAsFactors=FALSE)) # Where Column B
represents the cases, C is the year and D-G are the types of knowledge units
covered
a <- read.zoo(DF1, split = 1, index = 2, FUN = identity)
sum.na <- function(x) if (a...
2008 Jun 03
1
Network problems on new CentOS 5 install on P35, ICH9R mobo
...on, if I boot into old IDE drive, I get proper network
connection to internet, but lose my swap!
Particulars:
mobo=Gigabyte P35-DS3R
SATA Controller=AHCI
PATA Controller=JMicron 20360
new drive=ATA WDC WD1600AAJS-2
old drive=WDC WD400JB-00JJA0
DVD-RW=Pioneer DVR-112D (PATA)
NICs=eth0=Realtek RTL-8029(AS) (DHCP)
eth1=Realtek RTL-8029(AS) (Static)
Has anyone seen this? Will 5.2 help with this situation? Been working
on this for days!
Thanks,
Dick
--
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."...
2006 Aug 29
1
Repost: System crash on loading gdm revisited
...> Thanks,
> Debbie
> --
> | Debbie Tropiano | debbiet at arlut.utexas.edu |
> | Environmental Sciences Laboratory | +1 512 835 3367 w |
> | Applied Research Laboratories of UT Austin | +1 512 835 3544 fax |
> | P.O. Box 8029, Austin, TX 78713-8029 | home email: debbie at icus.com |
> _______________________________________________
> CentOS mailing list
> CentOS at centos.org
> http://lists.centos.org/mailman/listinfo/centos
----- End forwarded message -----
--
| Debbie Tropiano...
2009 Jun 14
3
Trouble (?) reformatting flash drive to include former U3 partition
...U3 part
of the drive. I've tried WinXP's format command, disk management and
CentOS's fdisk, and nothing will give me more than 7,872,512 bytes per
cylinder, times 1019 cylinders yields 8,022,089,728 bytes. Is that
right, or should there be more? fdisk also reports that the drive has
8029 "MB", or 8029470208 bytes, which is 7,380,480 bytes difference
(until it gets allocated into the 8,022,089,728 bytes of the
partition) - I'm thinking this is a standard formatting loss.
My 4GB flash drive has 4,096,189,440 bytes on it, and twice that would
be 8,192,378,880, which is...
2006 Jul 25
0
System crash on loading gdm revisited
...ce before looking at other things.
Thanks,
Debbie
--
| Debbie Tropiano | debbiet at arlut.utexas.edu |
| Environmental Sciences Laboratory | +1 512 835 3367 w |
| Applied Research Laboratories of UT Austin | +1 512 835 3544 fax |
| P.O. Box 8029, Austin, TX 78713-8029 | home email: debbie at icus.com |
2002 Jun 29
1
Bug in Samba 2.2.4
Hi, The Samba Team!
Sorry for my poor English (I am russian).
I have 4 PC's in my home net:
1: Athlon 1.2GHz MB ABIT KT7 NetCard:PCI Realtec 8029 (Thin Ethernet)
Win2k Rus(ver 5.00.2195)
2: P233MMX MB Phoenix Net:ISA NE2000 compatible
Win 95 Rus (ver 4.00.950)
3: Server & router - P166 MB Tomato(?) Net: ISA NE2000 compatible, ISA
Genius GE2000 Linux Red Hat 7.2 Kernel 2.4.18
Samba, PDC, Master browser (OS Level = 65)
4: My neighbour'...
2000 May 25
2
grace logins on solaris
We just started using NDS for Solaris to authenticate users on our SOlaris
2.6 boxes. Works great with OpenSSH except for one thing. When a user's
password is expired, sshd won't allow them access, while telnetd reports
the number of grace logins left, and asks to change the user's password.
Seems to be an interaction with the PAM account module, but I'm not
familiar enough
2006 Oct 17
2
Changing kernel params in CentOS 4.2
...it CentOS 4.2?
Thanks for any assistance,
Debbie
--
| Debbie Tropiano | debbiet at arlut.utexas.edu |
| Environmental Sciences Laboratory | +1 512 835 3367 w |
| Applied Research Laboratories of UT Austin | +1 512 835 3544 fax |
| P.O. Box 8029, Austin, TX 78713-8029 | home email: debbie at icus.com |
2006 Aug 30
6
CentOS needs some love at DistroRankings.com
Guys,
CentOS is not doing very well at this ranking site:
http://www.distrorankings.com/
We need some good foo there, so if you like CentOS, go there and rank
us ...
{If you don't like CentOS then you are getting sleepy .... sleepy .....
You will not remember anything you read in this message}
Thanks,
Johnny Hughes
-------------- next part --------------
A non-text attachment was
2015 Jun 15
1
Samba4 with RSAT on windows 8 - problem create user
...lock.c:873(init_oplocks)
init_oplocks: initializing messages.
[2015/06/15 12:04:34.553106, 3]
../source3/smbd/process.c:1802(process_smb)
Transaction 0 of length 159 (0 toread)
[2015/06/15 12:04:34.553218, 3]
../source3/smbd/process.c:1405(switch_message)
switch message SMBnegprot (pid 8029) conn 0x0
[2015/06/15 12:04:34.561873, 3]
../source3/smbd/negprot.c:564(reply_negprot)
Requested protocol [PC NETWORK PROGRAM 1.0]
[2015/06/15 12:04:34.562047, 3]
../source3/smbd/negprot.c:564(reply_negprot)
Requested protocol [LANMAN1.0]
[2015/06/15 12:04:34.562116, 3]
../source3/smbd/...
1999 May 11
3
Samba's movin' SLOW! (fwd)
Can anyone shed some light on this subject? I don't have a clue where to
begin looking. It's RHL 6.0, Samba 2.0.3, stock kernel.
Kevin
---
|\ _,,,---,,_
ZZZzz /,`.-'`' -. ;-;;,_
|,4- ) )-,_. ,\ ( `'-' Kevin Alan Pieckiel
'---''(_/--' `-'_) kapieckiel@harding.edu
(This message was written with