search for: 8027

Displaying 20 results from an estimated 24 matches for "8027".

Did you mean: 027
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 1996 1 8025 1997 1 8026 1997 2 8025 1997 1 8027 19...
2011 Aug 25
3
Selections in lists
...][[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`$`8028` B B 8028 8029 1 The result for g$`1999`$`8027` should be: $`1999`$`8027` B B 8027 8025 1 8026 2 8029 1 Example: DF = data.frame(read.table(textConnection(" A B C...
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...
2011 Aug 15
1
Selecting section of matrix
Hi, I have a question concerning the selection of data. Let's say that given list 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...
2011 Apr 29
4
For loop and sqldf
...ing does not work? Thanks a lot! Your help is very much appreciated. DF = data.frame(read.table(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]&lt...
2011 Aug 22
1
Selecting cases from matrices stored in lists
...to work. Thank you very much for your help! library(zoo) DF1 = data.frame(read.table(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)) a <- read.zoo(DF1, split = 1, index = 2, FUN = identity) sum.na <- function(x) if (a...
2011 May 26
1
Divide matrix into multiple smaller matrices
...atrices based on h. The number of matrices should be equal to: length(unique(DF1$B))*length(h). So each unique value in DF1$B get's a yearly matrix. Each matrix should contain all values from c where element cij is 1. An example for DF1$B = 8025 in 1999: 8025 8026 8027 8025 0.00000000 0.27547644 0.06905066 8026 0.27547644 0.00000000 0.10499739 8027 0.06905066 0.10499739 0.00000000 Any ideas on how to tackle this problem? Thanks a lot! library(zoo) DF1 = data.frame(read.table(textConnection(" B C D E F G 8025 1995 0 4 1 2 8025 1997 1 1 3...
2011 Mar 19
1
[Bug 8027] New: io throtling based on /proc/loadvg
https://bugzilla.samba.org/show_bug.cgi?id=8027 Summary: io throtling based on /proc/loadvg Product: rsync Version: 3.1.0 Platform: All OS/Version: IRIX Status: NEW Severity: enhancement Priority: P5 Component: core AssignedTo: wayned at samba.or...
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: n<-rollapply(DF, width = 3, FUN = t(as.matrix(table(DF[,1:2]))) %*% as....
2011 Jun 28
1
common error
...ntos 5.4 on a centos 5.2 xen host. Technically this is rocks cluster and thats axillary software but the avalanch installer may be the hiccup this is what shows up in the xen log any suggestions Watching /local/domain/13/logdirty/next-active xs_read(): vncpasswd get error. /vm/84384fb8-e6a6-3a84-8027-e79b841fdc7b/vncpasswd. char device redirected to /dev/pts/4 qemu_map_cache_init nr_buckets = 10000 shared page at pfn 1ffff buffered io page at pfn 1fffd xs_read(/vm/84384fb8-e6a6-3a84-8027-e79b841fdc7b/rtc/timeoffset): read error I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size:...
2004 Oct 11
1
File23525
...stian/ =========================================== Cristian Pattaro =========================================== Unit of Epidemiology & Medical Statistics Department of Medicine and Public Health University of Verona Istituti Biologici II, Strada Le Grazie 8 37134 Verona (Italy) Tel +39 045 8027 668 Fax +39 045 50 53 57 cristian@biometria.univr.it http://biometria.univr.it =========================================== [[alternative HTML version deleted]]
2007 Aug 26
0
PageMaker 7.0 start error
Greetings; I installed PageMaker 7.0 using Wine and that went smoothly. When I try to start PM I get an error "Cannot start PageMaker" "Unable to load icon DLL for this screen" and it has a number at the bottom right of the error window 8027-6623 Anybody have any hints on how to solve this problem? Many thanks! Dennis
2003 Jan 18
3
GeoIP support - DenyCountry
...script part of it. ideally it should either detect when GeoIP is installed or accept a --with-geoip parameter or both but I am not too familiar with configure testing. -------------- next part -------------- A non-text attachment was scrubbed... Name: openssh.geoip.patch Type: text/x-diff Size: 8027 bytes Desc: not available Url : http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20030118/98e3323b/attachment.bin
1999 Jul 31
0
Problem with SCO ODT 5.0.4 and samba
...ing wrong with Computer #3 or is there something about SCO 5.0.4 and Acer 9100 computer that SAMBA doesn't like. I added gcc to Computer #3 and recompiled samba only to get the very same results. +-----------------------------+ | Donald Bennett | | ARK Computer Services, Inc. | | 8027 Leesburg Pike, LL-150 | | Vienna, Virginia 22182 | | (Voice) 703-448-8833 | | (Fax) 703-448-9104 | +-----------------------------+
2007 Mar 21
1
How to bind a username to an ip address with squid
Hi ALL, I am running squid with ncsa support. Each user has a username and passowrd to access Internet. Now the probles is that user now can access Internet with his username and password from all the workstations. I do not need it. So, I think if I bind username to ip address, user can access Internet from that particular pc having that ip address. How to do it? -- Thank you Indunil
2020 Oct 06
2
Version controlled (git) Maildir generated by Dovecot
...7964,W=8174:2,S' add 'Maildir/.INBOX.years.2020.family/cur/1601986418.M889882P17113.mail1,S=7992,W=8202:2,S' add 'Maildir/.INBOX.years.2020.family/cur/1601986418.M912429P17113.mail1,S=8005,W=8215:2,S' add 'Maildir/.INBOX.years.2020.family/cur/1601986418.M935326P17113.mail1,S=8027,W=8237:2,S' add 'Maildir/.INBOX.years.2020.family/cur/1601986418.M959570P17113.mail1,S=8037,W=8247:2,S' add 'Maildir/.INBOX.years.2020.family/cur/1601986418.M987388P17113.mail1,S=8018,W=8228:2,S' add 'Maildir/.INBOX.years.2020.family/cur/1601986419.M112704P17113.mail1,S=8044...
2005 Oct 01
2
imq + htb
...class htb 10:22 parent 10:2 leaf 8026: prio 0 rate 128000bit ceil 512000bit burst 1615b cburst 1.625Kb Sent 0 bytes 0 pkt (dropped 0, overlimits 0 requeues 0) rate 0bit 0pps backlog 0b 0p requeues 0 lended: 0 borrowed: 0 giants: 0 tokens: 103424 ctokens: 26624 class htb 10:23 parent 10:2 leaf 8027: prio 0 rate 128000bit ceil 512000bit burst 1615b cburst 1.625Kb Sent 0 bytes 0 pkt (dropped 0, overlimits 0 requeues 0) rate 0bit 0pps backlog 0b 0p requeues 0 lended: 0 borrowed: 0 giants: 0 tokens: 103424 ctokens: 26624 \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ P...
2007 Dec 17
1
Adobe PageMaker 6.5
I installed PM65 today and the install went well. However when I attempt to run PM65 from the Wine menu I receive the following error message: Cannot start PageMaker. Unable to load icon DLL for this screen. Continue 8027:6623 However, if from a terminal I cd to the PM65 directory in .wine and issue: wine pm65.exe the program opens and runs - I have even edited, modified & saved several test PM65 files. Any idea what may be causing this? I have tried modifying the Gnome launcher command to: wine /home/myhomedi...
2020 Oct 07
0
Version controlled (git) Maildir generated by Dovecot
...> 'Maildir/.INBOX.years.2020.family/cur/1601986418.M889882P17113.mail1,S=7992,W=8202:2,S' > add > 'Maildir/.INBOX.years.2020.family/cur/1601986418.M912429P17113.mail1,S=8005,W=8215:2,S' > add > 'Maildir/.INBOX.years.2020.family/cur/1601986418.M935326P17113.mail1,S=8027,W=8237:2,S' > add > 'Maildir/.INBOX.years.2020.family/cur/1601986418.M959570P17113.mail1,S=8037,W=8247:2,S' > add > 'Maildir/.INBOX.years.2020.family/cur/1601986418.M987388P17113.mail1,S=8018,W=8228:2,S' > add > 'Maildir/.INBOX.years.2020.family/cur/1601986...
2007 Oct 24
28
random cpu spikes, EBADF errors
In May I had problem with mongrels suddenly consuming huge cpu resources for a minute or two and then returning to normal (load average spikes up to 3.8and then back down to a regular 0.2 over the course of 5 minutes, then again 1/2 hour later. or 4 hours later, no predictable rhythm). I posted to Litespeed forums because I thought the problem was there but didn''t get far. And a week