search for: jane

Displaying 20 results from an estimated 397 matches for "jane".

Did you mean: jan
2011 May 04
2
split character vector by multiple keywords simultaneously
Hi. I have a character vector that looks like this: > temp <- c("Company name: The first company General Manager: John Doe I > Managers: John Doe II, John Doe III","Company name: The second company > General Manager: Jane Doe I","Company name: The third company Managers: > Jane Doe II, Jane Doe III") > temp [1] "Company name: The first company General Manager: John Doe I Managers: John Doe II, John Doe III" [2] "Company name: The second company General Manager: Jane Doe I"...
2009 Jul 02
3
Testing for membership in an array of strings
As an R beginner, I feel brain dead today as I can not find the answer to a relatively simple question. Given a array of string values, for example lets say "mary", "bob", "danny", "sue", and "jane". I am trying to determine how to perform a logical test to determine if a variable is an exact match for one of the string values in the array when the number of strings in the array is variable and without using a for loop and without comparing each value. Considering the power of...
2007 Feb 26
1
Add-up duplicates and merge
Hello, a have two matrices of data as below. I would like to add-up the duplicate in terms of pair of names in rows, and then merge the values in the second matrix to the pairs as two new variables x3 and x4. Input ,x1,x2 jane.mike,31,43 jane.steve,32,2 jane.steve,5,3 jim.mike,76,5 jane.steve,4,4 mike.steve,54,7 mike.steve,5,7 jane.mike,7,8 and ,y jane,0.3 jim,0.4 mike,0.1 carl,0.5 john,0.9 steve,0.4 dirk,0.2 Output: ,x1,x2,x3,x4 jane.mike,38,51,0.3,0.1 jane.steve,41,9,0.3,0.4 jim.mike,76,5,0.4,0.1 mike.steve,59,14,0...
2004 Oct 18
2
default_mail_env %d var problem
Hello, I am new to Dovecot and trying to setup on my Fedora Core 1 mail servers (actually migrating from uw to dovecot ;-) ). In my setup I use pam to authenticate virtual users. All the usernames include @domainname in their usernames like 'jane at somevhost.com'. Now path to user's home and INBOX includes /home/vhosts/<domainname>/home/<username>. I have added following to dovecot.conf. ------------------------ auth_passdb = pam auth_verbose = yes auth_username_chars = default_mail_env = mbox:/home/vhosts/%d/%h/:INBOX...
2007 Feb 06
1
Questions on counts by case
...ile, 2. compute the frequency of "1"'s in "x" for each person by group "gr". So, "mike" will have freq=2/3, as he has two "1" and one "0" in 3 groups. Thanks a lot, Serguei Kaniovski The data looks like: person;gr;x mike;gr1;1 jane;gr1;0 bill;gr1;0 jack;gr2;1 mike;gr2;1 jane;gr2;0 bill;gr2;0 alex;gr2;1 james;gr2;1 mike;gr3;0 bill;gr3;1 jane;gr3;1 ___________________________________________________________________ Austrian Institute of Economic Research (WIFO) Name: Serguei Kaniovski P.O.Box 91 Tel.: +43-1-79...
2015 Sep 28
2
doveadm fetch line wrapping
The manual at http://wiki2.dovecot.org/Tools/Doveadm/Deduplicate tells how to estimate what will be expunged: > doveadm -f table fetch -u jane 'guid uid' mailbox a_Box | sort I wanted to learn the subjects: > doveadm -f table fetch -u jane 'guid hdr.Subject' mailbox a_Box In the output, long lines will be broken up, continuation lines starting with a blank (mostly), disabling the sort > doveadm -f table fetch -u...
2010 Oct 06
3
tapply output
Hello, I am having trouble getting the output from the tapply function formatted so that it can be made into a nice table. Below is my question written in R code. Does anyone have any suggestions? Thank you. Geoff #Input the data; name <- c('Tom', 'Tom', 'Jane', 'Jane', 'Enzo', 'Enzo', 'Mary', 'Mary'); year <- c(2008, 2009, 2008, 2009, 2008, 2009, 2008, 2009); group <- c('A', 'A', 'B', 'B', 'A', 'A', 'B', 'B'); class <- c(0, 0, 0, 0, 1, 1,...
2011 May 05
1
Looping over graphs in igraph
...automate igraph looking at multiple graphs described in a single csv file. My data look like something in ncol format, but with an additional column that has an ID for which graph the edge belongs in: Graph ID | Vertex1 | Vertex2 | weight 1 | Alice | Bob | 2 1 | Alice | Chris | 1 1 | Alice | Jane | 2 1 | Bob | Jane | 2 1 | Chris | Jane | 3 2 | Alice | Tom | 2 2 | Alice | Kate | 1 2 | Kate | Tom | 3 2 | Tom | Mike | 2 so on and so forth for about 2000 graph IDs, each with about 20-40 vertices. I've tried using the "split" command but it doesn't recognize my graph...
2003 Aug 06
2
leverage
Hi Can anyone help with the technique of obtaining leverages from a conditional logistic regression model? The code lm.influence does not seem to work for this data. Thanks Jane Murray
2020 May 18
2
Menu rotation
.... Could a similar functionality be implemented in the video driver (VBE?) that is used by Syslinux? Is it legal to copy that code from the FBCon portion into the Syslinux video driver portion? If so, where should I start looking? Thanks for all your help. SS On Fri, May 15, 2020 at 7:15 AM Jane Todoroski <jane.todoroski at gmail.com> wrote: > Nope, not possible as far as I know. > > On Sat, May 9, 2020 at 6:23 PM Sandip Shah via Syslinux < > syslinux at syslinux.org> wrote: > >> Hi, >> >> Is it possible to rotate the syslinux.cfg file that is...
2009 Oct 05
1
How to get NA's into the output of xtabs?
...format='%Y-%m-%d')) > df2 <- data.frame(Show=c('Star Trek', 'Dr Who', 'Torchwood'), Size=c(0.8, 0.85, 0.8), Date=as.Date(c('2007-08-04', '2007-08-04', '2007-08-04'), format='%Y-%m-%d')) > df3 <- data.frame(Show=c('Sarah Jane Adventures', 'Torchwood', 'Dr Who'), Size=c(0.2, 0.9, 0.85), Date=as.Date(c('2007-08-05', '2007-08-05', '2007-08-05'), format='%Y-%m-%d')) > df.list <- list(df1, df2, df3) > my.df <- Reduce(function(x, y) merge(x, y, all=TRUE), df.list...
2006 Aug 29
1
First elements of a list.
Suppose I have the following list: a <- strsplit(c("John;Smith", "Jane;Doe", "koda", "gunner"), ";") I want to get to these two vectors without looping... firstNames: c("John", "Jane", "koda", "gunner") lastNames: c("Jane", "Doe", NA, NA) Thanks cn [[alternative...
2010 Mar 29
1
Dovecot 2.0 zlib and dbox
Hello, As per wiki instructions, I tried to enable zlib compression of mails by adding/modifying the following snippets of configuration: plugin { zlib_save_level = 6 zlib_save = gz } and protocol imap { mail_plugins = fts fts_squat autocreate zlib imap_zlib imap_id_log = * } I am using dbox format and delivering the mails via dovecot deliver, however mails don't seem
2015 Jun 13
3
idmap & migration to rfc2307
...-D --option=server role check:inhibit=yes --foreground If I check a couple of users, one with a uidNumber & gidNumber, the other without: root at testdc1:~# getent passwd user1 user1:*:10003:10000::/home/SAMBADOM/user1:/bin/false root at testdc1:~# getent passwd user2 user2:*:3000016:10000:Jane Doe:/home/SAMBADOM/user2:/bin/false Do the same on the other DC: root at testdc2:~# getent passwd user1 user1:*:10003:10000::/home/SAMBADOM/user1:/bin/false root at testdc2:~# getent passwd user2 user2:*:3000015:10000:Jane Doe:/home/SAMBADOM/user2:/bin/false root at testdc2:~# cat /etc/samba/smb....
2005 Jan 14
1
problems with auto mounted share from Macintosh server on SuSE Linux
I recently switched from using Redhat Linux 9 to SuSE 9.2 Pro and am having problems with an auto mounted share served from a Macintosh running Mac OS 10.3.6. I can read from the share without problems. However, writing to it is a different story. All the files/folders on the share are owned by janee in the group janee and have rw owner and group permissions. I've tried playing with the automount settings without much success. The SuSE smbfstab file currently contains: //softweave-1/shared /smb smbfs credentials=/root/.smbpw,uid=awpe,gid=janee,fmask=664,dmask=775 I created a janee gr...
2017 Jun 19
2
New AD user cannot access file share from member server
...39;dc=samdom,dc=example,dc=ch' -s sub > "(&(objectclass=person)(samaccountname=jd))" > # record 1 > dn: CN=First Last,OU=OFFICE,DC=samdom,DC=example,DC=ch > objectClass: top > objectClass: person > objectClass: organizationalPerson > objectClass: user > cn: Jane Doe > sn: Doe > givenName: Jane > instanceType: 4 > whenCreated: 20170618195208.0Z > displayName: Jane Doe > uSNCreated: 26951 > name: Jane Doe > objectGUID: e2df5086-fa25-4a25-93f2-d8f5e85a47e7 > badPwdCount: 0 > codePage: 0 > countryCode: 0 > badPasswordTime: 0...
2010 Aug 24
3
generate random numbers from a multivariate distribution with specified correlation matrix
...he correlation matrix instead of covariance matrix for the multivariate normal distribution. Does anybody know how to generate the random numbers from a multivariate normal distribution with specified correlation matrix? What about other non-normal distribution? Thanks a lot. -- ----------------- Jane Chang Queen's [[alternative HTML version deleted]]
2007 Mar 13
4
selecting rows with more than x occurrences in a given column (data type is names)
Despite a long search on the archives, I couldn't find how to do this. Thanks in advance for what is likely a simple issue. I have a data set where the first column is name (i.e., 'Joe Smith', 'Jane Doe', etc). The following columns are data associated with that person. I have many people with multiple rows. What I want is to get a new data frame out with only the people who have more than x occurrences in the first column. Here's what I've done, that's not working: Let's...
2013 Mar 11
2
[LLVMdev] How to detect all free() calls
...l i32 bitcast (i32 (...)* @free to i32 (i8*)*)(i8* %call1) nounwind, !dbg !16 I don't understand why this is happen. Could you explain it for me? ------------------ Original ------------------ From: "Xi Wang"<xi.wang at gmail.com>; Date: Mon, Mar 11, 2013 12:24 PM To: "Jane"<270611649 at qq.com>; Cc: "llvmdev"<llvmdev at cs.uiuc.edu>; Subject: Re: [LLVMdev] How to detect all free() calls Try isFreeCall() defined in "llvm/Analysis/MemoryBuiltins.h". On Mon, Mar 11, 2013 at 12:17 AM, Jane <270611649 at qq.com> wrote: &g...
2006 Jun 29
0
Ron & Jane
Tim: Are Ron & Jane of Santa Barbara your parents? We are good friends from Santa Barbara and my wife wants to send her a birthday card in Kansas City but we don''t have your address. Allan & Joyce Anderson -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrat...