Daily Planner in Rmarkdown

Danieldavid521 true
02-04-2021

This article going to demonstrate how Rmarkdown can be used to create a daily planner template to be more productive! We are able to create synergy with Rmarkdown and knitting with parameters. This is the first edition of the Daily planner in Rmarkdown.

Step 1

Create the YAML header for the Rmarkdown file. 22 April, 2021 is a great easy way to keep the render date current with Rmarkdown. This daily planner is regenerated every morning in a shiny app to allow for further developement for IOS integration.


---
author: "808's and Dataviz"
date: "22 April, 2021"
title: "Daily Planner"
output: 
  flexdashboard::flex_dashboard:
    orientation: column
    vertical_layout: fill
runtime: shiny
---

note

library(flexdashboard)
library(emo)

This output format is based on the Flexdashboard package. An additional resources was the emo package, which allows the use of emojis to create a more personal task list.

Step 2

45 Minutes of Study

Since we have the flexdashboard template as leverage, the two main things next are value boxes, and the emojies.

and


night walk with Ruby🐻

And that’s it! Only about 15 lines of code to create awesome Google gauge charts in R!