Site icon R-bloggers

How to Automate Excel with R

[This article was first published on business-science.io, 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.

This article is part of a R-Tips Weekly, a weekly video tutorial that shows you step-by-step how to do common R coding tasks.

Let’s learn how to automate Excel with R, using openxlsx and tidyquant.


(Click image to play video)


Automate Excel with R Tutorial

Using R to automate Excel is an awesome skill for automating your work (and life). Your company lives off Excel files. Why not automate them & save some time?

Here’s an Excel File you’re going to make in this tutorial from R. ????


First, collect your data using tidyquant, an awesome package for importing & working with Financial Data.


The previous code makes this Pivot Table (stock returns by year and symbol).


…And this stock chart over time.


Now for the magic – Let’s add the Pivot Table & Stock Plot to Excel! ????

  1. Initialize a workbook
  2. Create a worksheet
  3. Add the stock plot
  4. Add the Pivot Table
  5. Save the workbook
  6. Open the workbook (programmatically)



You’ve just automated creation of an Excel Workbook with R.

It’s magic! ???? ???? ????


SETUP R-TIPS WEEKLY PROJECT

  1. Sign Up to Get the R-Tips Weekly (You’ll get email notifications of NEW R-Tips as they are released): https://mailchi.mp/business-science/r-tips-newsletter

  2. Set Up the GitHub Repo: https://github.com/business-science/free_r_tips

  3. Check out the setup video (https://youtu.be/F7aYV0RPyD0). Or, Hit Pull in the Git Menu to get the R-Tips Code

Once you take these actions, you’ll be set up to receive R-Tips with Code every week. =)


To leave a comment for the author, please follow the link and comment on their blog: business-science.io.

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.