similar to: useR! 2007 --- Call for papers and posters

Displaying 20 results from an estimated 8000 matches similar to: "useR! 2007 --- Call for papers and posters"

2007 Apr 20
0
useR! 2007 online registration is now available
R Users and Developers, Online registration for useR! 2007 is now available on the conference web site. The deadline for the early registration discount has been extended to May 15. We haven't had many contributed papers as yet, or requests for travel support from young researchers and graduate students. Please consider contributing a paper, and encouraging your students and young faculty to
2007 Apr 20
0
useR! 2007 online registration is now available
R Users and Developers, Online registration for useR! 2007 is now available on the conference web site. The deadline for the early registration discount has been extended to May 15. We haven't had many contributed papers as yet, or requests for travel support from young researchers and graduate students. Please consider contributing a paper, and encouraging your students and young faculty to
2007 Sep 04
1
UseR! 2007 presentations and posters - now available
Hi everyone, Many of the presentations and posters from UseR! 2007 are now available online: http://user2007.org/program/ If you presented and your slides or poster isn't up yet, please email a pdf version to me, h.wickham at gmail.com, and I'll put it up. Regards, Hadley (And check out http://user2007.org/ for some photos of the event and the R cake) -- http://had.co.nz/
2007 Feb 11
0
useR! 2007
R Users and Developers, Plans are being made to hold the first North American useR! will be held at Iowa State University, Ames, Iowa, August 8?10, 2007, which will be a week after JSM'07. This follows successful meetings in Vienna, Austria, in 2006 and 2004, and also Directions in Statistical Computing (DSC) meetings in Auckland, NZ (Feb 2007), Seattle (2005), and Vienna (1999, 2001, 2003).
2009 Sep 11
1
bar chart with means - using ggplot
Like this? # example using qplot library(ggplot2) meanprice <- tapply(diamonds$price, diamonds$cut, mean);meanprice cut <- factor(levels(diamonds$cut), levels = levels(diamonds$cut)) qplot(cut, meanprice, geom="bar", stat="identity", fill = I("grey50")) dev.new() # create a new graph to compare with qplot # Example using ggplot ggdata <-
2011 Mar 30
4
How to define new operator in R?
Hello, everyone! Does anyone know how make some symbols have special means in R? For example, we know that "+" in R means the sum of the two operand on its left and right. I want to define some operators in R by myself. Is this possible? Regards! -- Chuanlong Du Department of Statistcis Iowa State University Ames, IA, US 50011 [[alternative HTML version deleted]]
2010 Mar 11
1
parse an HTML page with verbose error message (using XML)
I'm using the function htmlParse() in the XML package, and I need a little bit help on error handling while parsing an HTML page. So far I can use either the default way: # error = xmlErrorCumulator(), by default library(XML) doc = htmlParse("http://www.public.iastate.edu/~pdixon/stat500/") # the error message is: # htmlParseStartTag: invalid element name or the tryCatch()
2002 May 09
3
read.table (PR#1535)
I downloaded the latest version of R (1.5.0) and issued a read.table() command that used to work with (1.3.1). Unfortunately I erased 1.3.1 from my hard drive after I downloaded R 1.5.0. Here's the command and the error message I get under 1.5.0: > golub1<-read.table("C:/Microarrays/code/data_set_ALL_AML_train.txt",sep="\t",q
2001 Sep 18
1
case weights in coxph (survival)
Hi, I am having trouble with the survival library, particualrily the coxph function. the following works coxph(jtree9$cph.call,z,rep(1,dim(z)[1])) Call: coxph(formula = jtree9$cph.call, data = z, weights = rep(1, dim(z)[1])) coef exp(coef) se(coef) z p SM 0.2574 1.294 0.0786 3.274 1.1e-03 Sex -0.1283 0.880 0.1809 -0.709
2009 Jan 11
2
R, clinical trials and the FDA
I hope that Marc doesn't mind, but I felt that part of his recent post was important enough to deserve it's own subject line rather then being lost in a 60-msg-long thread... On Sun, Jan 11, 2009 at 10:08 AM, Marc Schwartz <marc_schwartz at comcast.net> wrote: ... I strongly believe that the comments regarding R and the FDA are overly negative and pessimistic. The hurdles to
2011 Mar 30
1
How can we modify attributes of files in Windows Systems using R?
Hello! Does any one know how to modify attributes of files (hide, read only and etc) in Windows Systems using R? I tried to use shell to call system command, but it seems that it doesn't work well. Sometimes it works but sometimes not. Regards! -- Chuanlong Du Department of Statistcis Iowa State University Ames, IA, US 50011 [[alternative HTML version deleted]]
2001 Jan 10
2
nearest neighbors
Is there an implementation of a reasonable k-nearest neighbor finder already in one of the packages? -- +---------------------------------------------------------------------------+ | Robert Gentleman phone : (617) 632-5250 | | Associate Professor fax: (617) 632-2444 | | Department of Biostatistics office: not yet
2002 Mar 21
2
Small typo in An Introduction to R (PR#1402)
At a snail's pace I keep on translating an introduction to R into italian; I have reached the section describing the glm() function, in which some example code is presented. The very last line of code, before the beginning of the section on Poisson models is: ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fmp)); c(ldp, ldl) which of course gives results 43.663 and 43.663; the correct code
2002 Mar 21
2
Small typo in An Introduction to R (PR#1402)
At a snail's pace I keep on translating an introduction to R into italian; I have reached the section describing the glm() function, in which some example code is presented. The very last line of code, before the beginning of the section on Poisson models is: ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fmp)); c(ldp, ldl) which of course gives results 43.663 and 43.663; the correct code
2000 Dec 24
1
gretl and R: info and request
Hello, I thought some of you might like to know about a GNU project that is complementary to R in some ways, namely gretl http://ricardo.ecn.wfu.edu/gretl (GNU Regression, Econometrics and Time-series Library). gretl (a library with cli and gui clients, the gui using GTK) is designed to be very user-friendly, and suitable for teaching econometrics. It has a fairly wide variety of least-squares
2001 Nov 03
1
Help with Windows build
I'm trying to do a Windows build of Ray Brownrigg's port of the maps library, and running into some problems. There's a makefile for the shared library. I suspect that I just need to change that to get it right, and everything will build properly, but I'm running into trouble. Here's the original makefile, along with my comments about changes: >SRC= mapget.c mapproject.c
2001 Nov 03
1
Help with Windows build
I'm trying to do a Windows build of Ray Brownrigg's port of the maps library, and running into some problems. There's a makefile for the shared library. I suspect that I just need to change that to get it right, and everything will build properly, but I'm running into trouble. Here's the original makefile, along with my comments about changes: >SRC= mapget.c mapproject.c
2007 May 30
1
Static and dynamic graphics course, July 2007, Salt Lake City
We're pleased to announce a one day course covering static and dynamic graphics using R, ggplot and GGobi. The course will be held just before the JSM, on Saturday, 28 July 2007, in Salt Lake City. The course will be presented by Dianne Cook and Hadley Wickham. In the course you will learn: * How to build presentation quality static graphics using the R package, ggplot. We will cover plot
2012 Jul 09
1
classification using zero-inflated negative binomial mixture model
Hi, I want using zero-inflated negative binomial regression model to classify data(a vector of data), that is I want know each observed value is more likely belong to the "zero" or "count" distribution(better with relative probability). My data is some like: count site samp 12909 1 1 602 1 2 50 1 3 1218 1 4 91291 1 5
2012 Apr 14
0
Call for Posters: The 21st Int. ACM Symp. on High-Performance Parallel and Distributed Computing (HPDC'12)
**** CALL FOR POSTERS **** The 21st International ACM Symposium on High-Performance Parallel and Distributed Computing (HPDC'12) Delft University of Technology, Delft, the Netherlands June 18-22, 2012 http://www.hpdc.org/2012 The ACM International Symposium on