search for: venables

Displaying 20 results from an estimated 1241 matches for "venables".

Did you mean: enables
2012 Nov 02
2
Merge data frame with mispelling characters
...surname = I(c("Tukey", "Venable", "Terney", "Ripley", "McNeil")), nationality = c("US", "Australia", "US", "UK", "Australia"), deceased = c("yes", rep("no", 4))) "Venables" is without the final 's', and "Tierney, without "i". # Data for books: books <- data.frame( surname = I(c("Tukey", "Venables", "Tierney", "Ripley", "Rippley", "McNeil", "R Core"...
2012 Apr 11
0
R Programming Workshops with Bill Venables, June 18-19 at MU in Milwaukee, WI
...Milwaukee Chapter of the ASA (MILWASA) in cooperation with The Medical College of Wisconsin, Marquette University, The Children's Research Institute, The Clinical and Translational Science Institute (CTSI) and Quantitative Health Sciences are proud to announce R Programming Workshops with Bill Venables Senior Statistician with CSIRO http://www.csiro.au/Organisation-Structure/Divisions/Mathematics-Informatics-and-Statistics/BillVenables.aspx June 18-19, 2012 at Marquette University Registration due by June 11 Lunch will be provided $100 single day $150 both days $100 both days/students $10/day l...
2007 Jul 03
1
termplot - changes in defaults
...donald email: john.maindonald at anu.edu.au phone : +61 2 (6125)3473 fax : +61 2(6125)5549 Centre for Mathematics & Its Applications, Room 1194, John Dedman Mathematical Sciences Building (Building 27) Australian National University, Canberra ACT 0200. On Mon, 2 Jul 2007, Bill.Venables at csiro.au wrote: > Precisely. Thanks Brian. > > I did do something like this but not nearly so elegantly. > > I suggest this become the standard version in the next release. I can't Yes, that was the intention (to go into R-devel). (It was also my intention to attach as pla...
2008 Feb 13
2
apply on large arrays
I have a big contingency table, approximately of size 60*2*500*500, and I need to count the number of cells containing a count of 1 for each of the factors values defining the first dimension. Here is my attempt: tab1<-with(pisa1,table(CNT,GENDER,ISCOF,ISCOM)) tab2<-apply(tab1,1:4,function(x)ifelse(sum(x)==1,1,0)) tab3<-apply(tab2,1,sum) Computing tab2 is very slow. Is there a faster
2005 Dec 21
3
NextMethod causes R 2.2.0 to crash (PR#8416)
...uot;character" > julian(m) < R crashes> --please do not edit the information below-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 2 minor = 2.0 year = 2005 month = 10 day = 06 svn rev = 35749 language = R Bill Venables, CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile (rarely used): +61 4 1963 4642 Home Phone: +61 7 3286 7700 mailto:Bill.Venab...
2006 Dec 22
5
substitute creates an object which prints incorrectly (PR#9427)
...))) > m y <- function(x) sin(x + 1) > eval(m) > y function(x) FUN(x+1) However the story doesn't end there. The substitution appears to have been made, even though the printed version, this time, suggests otherwise. > y(pi) [1] -0.841471 > sin(pi+1) [1] -0.841471 > Bill Venables CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile (rarely used): +61 4 1963 4642 Home Phone: +61 7 3286 7700 mailto:Bill.Venabl...
2008 Feb 01
6
Accessing the elements of a list
Hi R, I wanted to know how do we access the elements of a list. In particular, v=list(c(1,2,3,4,5),c(1,2,33,4,5),c(1,2,333,4,5),c(1,2,3333,4,5)) I want to access all the thirds items of the elements of the list. i.e., I want to access the elements, 3,33,333,3333. This can be done through sapply as: sapply(v,function(x) x[3]) But I need to access this without using
1999 Jun 16
0
RE: Venables & Ripley 3rd edition
...t; FWIW. Amazon.com is accepting orders, but after having placed an order > last week, I received a note from Amazon.com (today, 6/5/99) telling me > that the order was cancelled because they have no estimated delivery > date > from the publisher. > > At 06:48 AM 6/6/1999 +1000, Venables, Bill (CMIS, Cleveland) wrote: > >(This is actually about something that arose in Guido's > >reply.) > > > > > >-----Original Message----- > > ...and perhaps to some of the suggested reading > > listed in the FAQ (the recommended one is > >...
2004 Mar 22
0
COURSE: Statistical Modelling - By Dr Bill Venables
Insightful are pleased to announce the following Course: Statistical Modelling - By Dr Bill Venables Dates: 17 - 19 May 2004 Place: Basingstoke, UK Hours: 09:00 - 17:00 Course Fees: Commercial - £1,400 + VAT, Academic - £800 + VAT Course Description: The course will cover both classical and modern modelling, with special attention on the classical side to linear models, gener...
2004 Nov 19
0
COURSE: Statistical Modelling - By Dr Bill Venables
Insightful are pleased to announce the following Course: Statistical Modelling - By Dr Bill Venables Dates: 9 - 11 February 2005 Place: Basingstoke, UK Hours: 09:00 - 17:00 Course Fees: Commercial - £1,400 + VAT, Academic - £800 + VAT Course Description: The course will cover both classical and modern modelling, with special attention on the classical side to linear models, g...
2005 Apr 30
3
as.numeric method for objects of class "difftime"
...that has blythely assumed that the difference will always be a number of days and others assume it is always seconds. At the very least I think the help information should carry a big red warning about this rather unusual feature. (It may, I suppose, but I couldn't find it.) Comments? Bill Venables, CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Phone: +61 7 3826 7251 Fax: +61 7 3826 7304 Mobile: +61 4 1963 4642 Home: +61 7 3286 7700 mailto:Bill.Venables@csiro.au http://www.cmis.csiro.au/bill.venables/
2009 Mar 31
4
Convert Character to Date
Hello, I have a date in the format Year-Month Name (e.g. 1990-January) and R classes it as a character. I want to convert this character into a date format, but when I try as.Date(1990-January, "%Y-%B"), I get back NA. The function strptime also gives me NA back. Thanks. [[alternative HTML version deleted]]
2000 Dec 31
3
The book: S Programming
Will the real book "S Programming" please stand up. As I searched for this book both on AMAZON.COM and AMAZON.CO.UK, I found two different versions. On AMAZON.COM my search reveals S Programming (Statistics and Computing) by Brian D. Ripley, William N. Venables. Our Price: $59.95. Availability: Usually ships within 24 hours. Hardcover - 264 pages 1st edition (May 15, 2000) Springer Verlag; ISBN: 0387989668. But on AMAZON.CO.UK I discover S Programming, W.N. Venables, B.D. Ripley. Our Price: ?44.50 Availability: Usually dispatched within 24 hours Hardcov...
2010 Feb 14
1
NextMethod() example from S Programming by Venables and Ripley (page 78)
S Programming by Venables and Ripley (page 78) has the example listed at the end of this email. However, I get the following error when I try the example. I don't understand the descriptions of NextMethod on its help page. Could somebody let me know how to fix the error of this example? > test(x) c1 c2 Error in Next...
2000 Oct 02
9
the underscore ("_") in variable name
...makes code just about unreadible. On the other hand if we don't give prominence to the fact but just hide it in an obscure footnote, then many people will get bitten first time (but only then) and come complaining to R-help and I will write more tetchy little notes like this one... :-) Bill Venables. -- Bill Venables, Statistician Tel. +61 7 3826 7251 CSIRO Marine Laboratories, Fax. +61 7 3826 7304 Cleveland, Qld, 4163 Email: Bill.Venables at cmis.csiro.au AUSTRALIA http://www.cmis.csiro.au/bill.venables/...
2007 Nov 15
3
generate combination set
I have a set data={A,B,C,D,E,F,G} I want to choose 2 letter from 8 letters, i.e. generate the combination set for choose 2 letters from 8 letters. I want to get the liking: combination set={AB,AC,AD,....} Does anyone konw how to do in R. thanks, Aimin
2001 May 06
1
deriv3 example on Venables/Ripley page 263
What does it require to run the example on page 263 of Venables/Ripley book using R 1.3.0? I got the following error and I have no clue how to correct it. Thank you very much. (If you reply to the list, please send a copy to me.) > lmix2 <- deriv3( + ~ -log(p*dnorm((x-u1)/s1)/s1 + (1-p)*dnorm((x-u2)/s2)/s2), + c("p", "u1", "s1&...
2007 Jul 02
2
termplot with uniform y-limits
...le. If you don't have the same y-axes you can easily misread the comparative contributions of the different components. Notes: the current version of termplot does not allow the user to specify ylim. I checked. the plot tools that come with mgcv do this by default. Thanks Simon. Bill Venables CSIRO Laboratories PO Box 120, Cleveland, 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile: +61 4 8819 4402 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.c...
2007 Jul 02
2
termplot with uniform y-limits
...le. If you don't have the same y-axes you can easily misread the comparative contributions of the different components. Notes: the current version of termplot does not allow the user to specify ylim. I checked. the plot tools that come with mgcv do this by default. Thanks Simon. Bill Venables CSIRO Laboratories PO Box 120, Cleveland, 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile: +61 4 8819 4402 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.c...
2006 Jan 14
2
initialize expression in 'quasi' (PR#8486)
...ical to what you get above when mustart is supplied. The changes cannot affect performance with any other variance functions and with this variance function should only make things better, but it just _might_ make things work worse in extreme and unusual cases. I have not found one, though. Bill Venables. --please do not edit the information below-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 2 minor = 2.1 year = 2005 month = 12 day = 20 svn rev = 36812 language = R Windows XP Professional (build 2600) Service Pack 2.0 Loc...