Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
In collaboration with Garrett Grolemund, RStudio’s teaching specialist, DataCamp has developed a new interactive course to facilitate reproducible reporting of your R analyses. R Markdown enables you to generate reports straight from your R code, documenting your works as an HTML, pdf or Microsoft document. This course is part of DataCamp’s R training path, but can also be taken as a separate course.Check out the R Markdown tutorial, and take the free preview.A typically frustrating feature of the R language is the ‘for my eyes only’ aspect: once you have finished development – be it an analysis of customer data, a predictive model to judge the effectivity of a new drug or some fancy visualizations of your company’s monthly revenue -, how do you share those results with both technical and non-technical people? R Markdown provides the solution. On top of the core markdown syntax, R users are able to embed R code chunks in their report. These R code chunks generate actual R output that is included in the final document. In addition, these R Markdown documents are fully reproducible: once your underlying R code or data changes, you can simply regenerate the output document.
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.