Shiny Developer Conference
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Really enjoying RStudio‘s Shiny Developer Conference | Stanford University | January 2016.
Winston Chang just demonstrated profvis, really slick. You can profile code just by wrapping it in a profvis({})
block and the results are exported as interactive HTML widgets.
For example, running the R code below:
if(!('profvis' %in% rownames(installed.packages()))) {
devtools::install_github('rstudio/profvis')
}
library('profvis')
nrow = 10000
ncol = 1000
data <- as.data.frame(matrix(rnorm(nrow*ncol),
nrow=nrow,ncol=ncol))
profvis({
d <- data
means <- apply(d,2,mean)
for(i in seq_along(means)) {
d[[i]] <- d[[i]] - means[[i]]
}
})
Produces an interactive version of the following profile information:
Definitely check it out!
Many other great presentations, this one is just particularly easy to share.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.