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: "Distribution of Determinants of 3×3 Matrices from {1,2,...,9}" | |
| author: "Michael Friendly" | |
| date: "`r Sys.Date()`" | |
| output: | |
| html_document: | |
| toc: true | |
| toc_float: true | |
| code_folding: show | |
| theme: united |
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
| #!/usr/bin/env Rscript | |
| # Functions to fix one of the awful things that `Rd2roxygen::Rd2roxygen()` does when it tries to convert | |
| # a package to use roxygen documentation | |
| # | |
| # * Fixes roxygen2 \item formatting used in \describe{} blocks to document arguments and elements of returned results | |
| # * Changes \item{list("VarName")} to \item{\code{VarName}} | |
| # | |
| # Usage: | |
| # From R: source("fix_roxygen_items.R"); fix_roxygen_items("R/data.R") |
OlderNewer