The DT package is an interface between R and the JavaScript DataTables library (RStudio DT documentation). In Example 3 (at this page) they show how to heatmap-format a table. This post modifies the example to
format each column individually
shade in green rather than red
use base R syntax rather than ...
The DT package is an interface between R and the JavaScript DataTables library (RStudio DT documentation). In Example 3 (at this page) they show how to heatmap-format a table. This post modifies the example toformat each column individuallyshade in gre...
R package vignettes are user-friendly ways to demo your package's capabilities. They can also be helpful documentation for your own reference when modifying the package in the future -- "what was I thinking there?"
The easiest way to create a vignette in RStudio is using File | New File | R Markdown | ...
R package vignettes are user-friendly ways to demo your package's capabilities. They can also be helpful documentation for your own reference when modifying the package in the future -- "what was I thinking there?"The easiest way to create a vign...
# RUN THESE LINES IN ONE SESSION ...
# Navigate where you want your folder to be locatedsetwd("C:/Users/myhandle/Documents/Github")# Run create_package in 'usethis' package and read below what happensusethis::create_package("foo")# A bunch of stuff shows up in the console including line below.# ✔ Opening 'foo/' in ...