search for: caitlyn

Displaying 6 results from an estimated 6 matches for "caitlyn".

Did you mean: caitlin
2013 May 08
4
Correctly Setting New Seed
...:10){ print(runif(1)) } When I compare the sequence of numbers from the single run to the sequence from the chunked code they don't match. Is the .Random.seed argument in the wrong position or is there another way to accomplish this? ------------------------------------------------------- Caitlyn Ellerbe Division of Biostatistics Department of Public Health Medical University of South Carolina [[alternative HTML version deleted]]
2009 Jan 16
2
dummy ethernet interfaces
...h other. The only issue I have with this is that the interface is not >=100MB, but is 10MB. Is there a way I can increase the speed of these interfaces (I've tried looking at the kernel docs and google'ing) or another dummy style interface driver I can use to create these? Thanks! --Caitlyn
2013 Dec 03
0
RESOLVED: HELP: smb 3.6.20 and 3.6.21 broken with Win 8.1
...ning = yes We are now able to delay our implementation of samba 4.1 for the short term. Many thanks, Helen -----Original Message----- From: Marc Muehlfeld [mailto:samba at marc-muehlfeld.de] Sent: Monday, December 02, 2013 2:42 PM To: Nulty, Helen P; samba at lists.samba.org Cc: Hill, Jennifer Caitlyn Subject: Re: [Samba] HELP: smb 3.6.20 and 3.6.21 broken with Win 8.1 Hello Helen, Am 02.12.2013 19:33, schrieb Nulty, Helen P: > # smbd -V > Version 3.6.20 > We have tried 3.6.21 on another server with same result. Can you try 4.0 or 4.1? The 3.6 series is meanwhile out of maintainance...
2009 Jul 20
1
a complicated merging task
I would like to merge two dataframes, but i have a condition that needs to used for the merge as well. the rows (observations) in each dataframe are identified by each person's ID and by the date of the observation. Basically I would like it to be merged based on both ID (exact match) and date (a condition where one dataframe's date must be after the other dataframe's date).
2009 Jul 09
2
How to Populate List
...does a few passes through the data, usually this is good enough, but in some cases you may need to increase the number of passes. Hope this helps,     [[alternative HTML version deleted]] ------------------------------ Message: 61 Date: Wed, 8 Jul 2009 08:09:33 -0700 (PDT) From: tathta <caitlyn.paget@gmail.com> Subject: [R]  matching each row To: r-help@r-project.org Message-ID: <24393051.post@talk.nabble.com> Content-Type: text/plain; charset=us-ascii I have two dataframes, the first column of each dataframe is a unique id number (the rest of the columns are data variables). ...
2009 Jul 08
3
matching each row
I have two dataframes, the first column of each dataframe is a unique id number (the rest of the columns are data variables). I would like to figure out how many times each id number appears in each dataframe. So far I can use: length( match (dataframeA$unique.id[1], dataframeB$unique.id) ) but this only works on each row of dataframe A one-at-a-time. I would like to do this for all of