Shiny Developer Conference
[This article was first published on R – Win-Vector Blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
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
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.
To leave a comment for the author, please follow the link and comment on their blog: R – Win-Vector Blog.
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.