similar to: R development master class: SF, June 8-9

Displaying 20 results from an estimated 10000 matches similar to: "R development master class: SF, June 8-9"

2012 May 21
0
R development master class: NYC June 21-22, Bay Area June 28-29
Hi all, I'm going to be teaching an R development master classes in NYC June 21-12 and in the Bay Area June 28-29. The basic idea of the class is to help you write better code, focused on the mantra of "do not repeat yourself". In day one you will learn powerful new tools of abstraction, allowing you to solve a wider range of problems with fewer lines of code. Day two will teach you
2011 Nov 13
1
R development master class: NYC, Dec 12-13
Hi all, I hope you don't mind the slightly off topic email, but I'm going to be teaching an R development master class in New York City on Dec 12-13. The basic idea of the class is to help you write better code, focused on the mantra of "do not repeat yourself". In day one you will learn powerful new tools of abstraction, allowing you to solve a wider range of problems with
2012 Nov 01
0
Upcoming R training: SF Dec 3-4, DC Dec 10-11
Hi all, I'd like to let you know about four R training courses that RStudio will be offering in December: * Effective data visualization (http://bit.ly/TY2ONI) Dec 3. San Francisco, CA * Reports and reproducible research (http://bit.ly/RsZmYr) Dec 4. San Francisco, CA * Advanced R programming (http://bit.ly/RvZDsd) Dec 10. Washington, DC * Package development (http://bit.ly/UhTIWz)
2011 Jul 11
0
Revolutions Blog: June Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of June: Highlights of presentations from the R/Finance 2011 conference: http://bit.ly/pgOVfm Trulia uses R and
2010 Jul 13
0
Revolutions Blog: June Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. So, in case you missed them, here are some articles related to R from the month of June: http://bit.ly/9gNq5J noted that the program for the annual R user conference, useR! 2010, has been
2011 Dec 07
0
Revolutions Blog: November Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of November: R 2.14 now includes SVG support for Windows: http://bit.ly/vKQ0UC The submissions for the Applications
2011 Nov 09
0
Revolutions Blog: October Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of October: The creator of the ggplot2 package, Hadley Wickham, shares details on some forthcoming big-data graphics
2012 Mar 09
0
Revolutions Blog: February Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of February: February 29 marked the 12th anniversary of the release of R 1.0.0, and the release of R 2.14.2:
2013 Mar 12
0
Revolutions blog: February roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of February: How to resample from a large data set with RHadoop, and a video introduction to the RHadoop packages:
2011 Jun 03
0
Revolutions Blog: May Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of May: A review of "R Cookbook", a new how-to book for R programmers: http://bit.ly/j4e9Lg A detailed
2010 Aug 12
0
Revolutions Blog: July Roundup
I write about R every weekday at the Revolutions blog: ?http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of July: http://bit.ly/cXFZrI reviewed the updates to Hadley Wickham's ggplot2 and plyr packages.
2010 Oct 11
0
Revolutions Blog: September Roundup
I write about R every weekday at the Revolutions blog: http://blog.revolutionanalytics.com and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of September: http://bit.ly/cuFNat presented a profile of Hadley Wickham, author of many popular R packages
2012 Mar 02
0
devtools 0.6
# devtools The aim of `devtools` is to make your life as a package developer easier by providing R functions that simplify many common tasks. Devtools is opinionated about how to do package development, and requires that you use `roxygen2` for documentation and `testthat` for testing. Future version will relax these opinions - patches are welcome! You can track (and contribute to) development of
2012 Mar 02
0
devtools 0.6
# devtools The aim of `devtools` is to make your life as a package developer easier by providing R functions that simplify many common tasks. Devtools is opinionated about how to do package development, and requires that you use `roxygen2` for documentation and `testthat` for testing. Future version will relax these opinions - patches are welcome! You can track (and contribute to) development of
2010 Nov 15
2
Trying to understand the search path and namespaces
Hi all, I'm trying to understand how the search path and namespaces interact. For example, take the devtools package which suggests the testthat package. Here's what the search path looks like after I load each of those packages: > library(devtools) > search() [1] ".GlobalEnv" "package:devtools" "package:stats" [4]
2012 Jun 20
0
Devtools 0.7
# devtools The aim of `devtools` is to make your life as a package developer easier by providing R functions that simplify many common tasks. Devtools is opinionated about how to do package development, and requires that you use `roxygen2` for documentation and `testthat` for testing. Future version will relax these opinions - patches are welcome! You can track (and contribute to) development of
2012 Jun 20
0
Devtools 0.7
# devtools The aim of `devtools` is to make your life as a package developer easier by providing R functions that simplify many common tasks. Devtools is opinionated about how to do package development, and requires that you use `roxygen2` for documentation and `testthat` for testing. Future version will relax these opinions - patches are welcome! You can track (and contribute to) development of
2011 Dec 23
1
Debugging namespace problems
Hi all, I frequently find that I've failed to export something in my NAMESPACE and hence my package doesn't work when it's imported into another package. Does anyone have suggestion for debugging this type of problem? R CMD check passes without any ns related errors on both the importee and the importer. I've attached a reproducible example - if you install the development
2017 Jul 10
0
Revolutions blog: June 2017 roundup
Since 2008, Microsoft (formerly Revolution Analytics) staff and guests have written about R every weekday at the Revolutions blog (http://blog.revolutionanalytics.com) and every month I post a summary of articles from the previous month of particular interest to readers of r-help. In case you missed them, here are some articles related to R from the month of June: R 3.4.1 "Single
2012 Mar 20
1
Substitute adds id attribute?
Hi all, I can't figure out how to make this problem easily reproducible, but I can demonstrate it very simply, so I hoped someone might be able to suggest a place to start: > f <- function(x) substitute(x) > f(x) x > f(mpg) mpg attr(,"id") [1] 11 It works as expected in a clean R session: > f <- function(x) substitute(x) > f(x) x > f(mpg) mpg but not