bolder is a small RStudio add-in package
for turning the current editor line into clean section headers for
scripts.
Write a word or phrase, click the line, press a keyboard shortcut,
and bolder replaces that line with an uppercase section
title.
data cleaningTitle:
###############################################################
###############################################################
######################## DATA CLEANING ########################
###############################################################
###############################################################Subtitle:
###############################################################
#---------------------- DATA CLEANING ------------------------#
###############################################################Simple:
# DATA CLEANING -----------------------------------------------Install the released version from CRAN:
install.packages("bolder")
library(bolder)Restart RStudio after installing.
Configure shortcuts manually in RStudio:
Tools > Modify Keyboard Shortcuts
Search for bolder and assign your preferred
shortcuts.
Suggested shortcuts:
Ctrl+B: bolder - SimpleCtrl+Shift+B: bolder - SubtitleCtrl+Alt+B: bolder - TitleIn an .R script, write a word or phrase:
final modelClick that line and press one of the shortcuts.
You can also run the add-ins from the RStudio Addins
menu:
bolder - Simplebolder - Subtitlebolder - TitleBy default, bolder uses getOption("width")
to decide how wide the generated title should be.
To set a custom width:
options(bolder.width = 90)To make that width permanent, add the same line to your
.Rprofile.
If the shortcuts do not appear or do not work:
Tools > Modify Keyboard Shortcuts.bolder.If one of the shortcuts is already used by RStudio, choose another
shortcut that includes B.
Check the package locally with:
devtools::check()Or from a terminal:
R CMD check --no-manual bolder