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
| #' Render text in color for Markdown / Quarto documents using LaTeX or CSS styles | |
| #' | |
| #' This function uses `\textcolor{}{}` from the `xcolor` package for LaTeX output | |
| #' or a CSS `<span>` for HTML output. | |
| #' | |
| #' Note that a color not defined in the `xcolor` package will trigger a latex error. | |
| #' e.g., `darkgreen` is not defined but can use: | |
| #' \definecolor{darkgreen}{RGB}{1,50,32} | |
| #' | |
| #' @param text Text to display, a character string |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
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
| # often package developers store the call in their model object | |
| # and then print it out in their summary / print methods | |
| lm_model <- lm(mpg ~ cyl, mtcars) | |
| lm_model | |
| #> | |
| #> Call: | |
| #> lm(formula = mpg ~ cyl, data = mtcars) | |
| #> | |
| #> Coefficients: |