This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Automated YAML Front Matter Updater For Markdown Files In R | |
# Author: L. E. Briggs | |
# Date: 03 August 2024 | |
# Note: | |
# This is only the first draft of the script. Future updates will be forthcoming. | |
# Related blog post: https://lebriggs.com/blog/post_index/ | |
# Overview: | |
# This R script updates the YAML front matter of Markdown files (.md and .Rmd) by: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Author: L. E. Briggs | |
#Date: 2 July 2024 | |
# Overview: | |
# This script checks if the required R packages are already installed and installs them if missing, including all dependencies. | |
# It provides feedback on the status of each package installation and loading process. | |
# The code balances error handling with simplicity, making it easy to understand. | |
# I. Initial Set-up: Install and Load Required Packages with Basic Feedback |