search for: delia

Displaying 15 results from an estimated 15 matches for "delia".

Did you mean: delim
2011 Mar 22
2
R_HOME path getting munged in inst/doc/Makefile on Windows
...es, the path to R_HOME gets munged in such a way that commands that include R_HOME fail on Windows: For example, one Makefile, for the xmapcore package ( https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/xmapcore/username/password: readonly) has this: R=${R_HOME}/bin/R SUITE=../cookbook/delia.R [...] ${R} --vanilla --verbose < ${SUITE} the output of trying to build this package includes: * creating vignettes ... ERROR E:\biocbld\BBS-2~1.8-B\R/bin/R --vanilla --verbose < ../cookbook/delia.R E:biocbldBBS-2~1.8-BR/bin/R: not found make: *** [pdf] Error 127 Error in tools::buildVign...
2012 Apr 09
1
binned tabulation
...problem seems to occur when '1' is the last entry. For Sample 2, the total time appeared is 53  (hand calculation), however, using the R code below yields 55. If you have any suggestions for solving the problem, please let me know.  Thank you in advance for any assistance you may provide. Delia Sample 1 0.0 1 40 2 45 1 55 2 Sample 2 0.0 1 40 2 45 1 55 2 57 1 name = read.table(file.choose(),header=F) # opening a data file colnames(name)<-c("Time", "Behavior") name = data.frame(name$Behavior, name$Time) colnames(name)<-c("Behavior", "Time&qu...
2011 Feb 22
0
Statistical Programmer
...y, Denmark, Norway, Dubai, and Saudi Arabia. We have U.S. offices in Palo Alto, CA, New York, NY, Waterbury, CT, Lawrenceville, NJ, and Washington, DC. Compensation: depends on experience and qualifications Interested candidates should submit a cover letter and resume. Contact with any questions: delia.bailey at yougov.com or doug.rivers at yougov.com --------- Delia Bailey Director of Analytics YouGov 285 Hamilton Avenue Suite 200 Palo Alto, CA 94301 T: 650-462-8010 | F: 650-462-8422 delia.bailey at yougov.com http://www.yougov.com/
2015 Aug 03
0
Analytics Jobs at YouGov
...ends on experience and qualifications Interested candidates should submit a cover letter and resume to vacancies-us at yougov.com YouGov is the North American unit of YouGov PLC, with operations in the US, UK, Germany, Denmark, Norway, France, Dubai, Saudi Arabia, China, and South East Asia.? Delia Bailey Vice President of Analytics YouGov What the world thinks 285 Hamilton Ave., Ste #200 Palo Alto, CA 94301 T: +1 650-462-8000 delia.bailey at yougov.com http://www.yougov.com
2007 Mar 15
1
Bug in dovecot 1.0 rc27
...Adrian -- Adrian P. van Bloois Postbus 2575 email: adrian at accu.uu.nl 3500 GN Utrecht voice: +31-(0)-30-68-94649 The Netherlands fax: +31-30-68-94649 The whole point of cooking is to get as much flavour out of the ingredients as possible. -- Delia Smith
2012 Jun 07
2
Postfix not reading main.cf
...-- Adri P. van Bloois Antonlaan 104 email: adrian at pa0rda.nl 3701 VG Zeist voice: +31-(0)-30-6912741 The Netherlands fax: NONE 52 05'15.77"N 5 4'44.56"E QTH-locater JO 22 OC The whole point of cooking is to get as much flavour out of the ingredients as possible. -- Delia Smith -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
2013 Aug 24
2
Looking for a tutorial or manpage describing sysctl params
...-- Adri P. van Bloois Antonlaan 104 email: adrian at pa0rda.nl 3701 VG Zeist voice: +31-(0)-30-6912741 The Netherlands fax: NONE 52 05'15.77"N 5 4'44.56"E QTH-locater JO 22 OC The whole point of cooking is to get as much flavour out of the ingredients as possible. -- Delia Smith
2013 Aug 25
1
Missing terminal bell
...-- Adri P. van Bloois Antonlaan 104 email: adrian at pa0rda.nl 3701 VG Zeist voice: +31-(0)-30-6912741 The Netherlands fax: NONE 52 05'15.77"N 5 4'44.56"E QTH-locater JO 22 OC The whole point of cooking is to get as much flavour out of the ingredients as possible. -- Delia Smith
2013 Sep 01
3
MIssing bell
...-- Adri P. van Bloois Antonlaan 104 email: adrian at pa0rda.nl 3701 VG Zeist voice: +31-(0)-30-6912741 The Netherlands fax: NONE 52 05'15.77"N 5 4'44.56"E QTH-locater JO 22 OC The whole point of cooking is to get as much flavour out of the ingredients as possible. -- Delia Smith
2008 Oct 06
0
New verision 0.95 of package 'memisc' released to CRAN
...ni-mannheim.de/sowi/elff http://www.sowi.uni-mannheim.de/lspwivs/ ------------------------------------------------- ********************************************************** Political Methodology E-Mail List Editors: Melanie Goodrich, <melaniegoodrich at nyu.edu> Delia Bailey, <dbailey at wustl.edu> ********************************************************** Send messages to polmeth at artsci.wustl.edu To join the list, cancel your subscription, or modify your subscription settings visit: http://polmeth.wustl.edu/polmeth.php...
2008 Oct 06
0
New verision 0.95 of package 'memisc' released to CRAN
...ni-mannheim.de/sowi/elff http://www.sowi.uni-mannheim.de/lspwivs/ ------------------------------------------------- ********************************************************** Political Methodology E-Mail List Editors: Melanie Goodrich, <melaniegoodrich at nyu.edu> Delia Bailey, <dbailey at wustl.edu> ********************************************************** Send messages to polmeth at artsci.wustl.edu To join the list, cancel your subscription, or modify your subscription settings visit: http://polmeth.wustl.edu/polmeth.php...
2013 Jul 02
2
what's wrong with dag.wieers?
...-- Adri P. van Bloois Antonlaan 104 email: adrian at pa0rda.nl 3701 VG Zeist voice: +31-(0)-30-6912741 The Netherlands fax: NONE 52 05'15.77"N 5 4'44.56"E QTH-locater JO 22 OC The whole point of cooking is to get as much flavour out of the ingredients as possible. -- Delia Smith
2011 Oct 25
2
R for loop nested?
...<-c(q, (c(name$Time[y]:name$Time[y +1])))} } b<-table(cut(q,x)) sum(b) So, I tried to nest a for loop within another(code below). It solved the problem of selecting each data file. However, a problem was incurred with the second loop. It gave back a crazy matrix. setwd("/Users/deliashelton/Documents/Shelton back-up 11:21/labs/ABL meetings/DS7 Flow/DS7.5/Observers/AA 7.5/AA PND2/AA PND 2 22C") a<- list.files() xx<- c() t<-seq(0,3600, by = 60) for (i in a){         name<- read.table(i,header=F)         colnames(name)=c("Time", "Behavior&...
2011 Mar 07
0
[Announce] Samba 3.5.8 Available for Download
=================================================================== "Food is for eating, and good food is to be enjoyed... I think food is, actually, very beautiful in itself." Delia Smith ================================================================== Release Announcements ===================== This is the latest stable release of Samba 3.5. Major enhancements in Samba 3.5.8 include: o Fix Winbind crash bug when no DC is available (bug #7730). o Fix finding users on...
2011 Mar 07
0
[Announce] Samba 3.5.8 Available for Download
=================================================================== "Food is for eating, and good food is to be enjoyed... I think food is, actually, very beautiful in itself." Delia Smith ================================================================== Release Announcements ===================== This is the latest stable release of Samba 3.5. Major enhancements in Samba 3.5.8 include: o Fix Winbind crash bug when no DC is available (bug #7730). o Fix finding users on...