Nothing
#' A precise & pristine `ggplot2` theme with opinionated defaults and an emphasis on typography
#'
#' This theme is superseded by [tntp_style()].
#'
#' @md
#'
#' @section Building upon `theme_tntp`:
#' The function is setup in such a way that you can customize your own one by just
#' wrapping the call and changing the parameters. See source for examples.
#'
#' @section Gotchas:
#' There are distinctions between font names and various devices. Names that work
#' for display graphics devices and bitmap ones such as `png` may not work well
#' for PostScript or PDF ones. You may need two versions of a font-based
#' theme function for them to work in a particular situation. This situation
#' usually only arises when using a newer font with many weights but somewhat
#' irregular internal font name patterns.
#'
#' There is an option `hrbrthemes.loadfonts` which -- if set to `TRUE` -- will
#' call `extrafont::loadfonts()` to register non-core fonts with R PDF & PostScript
#' devices. If you are running under Windows, the package calls the same function
#' to register non-core fonts with the Windows graphics device.
#'
#' @md
#' @param base_family,base_size base font family and size
#' @param plot_title_family,plot_title_face,plot_title_size,plot_title_margin plot title family, face, size and margi
#' @param subtitle_family,subtitle_face,subtitle_size plot subtitle family, face and size
#' @param subtitle_margin plot subtitle margin bottom (single numeric value)
#' @param strip_text_family,strip_text_face,strip_text_size facet label font family, face and size
#' @param caption_family,caption_face,caption_size,caption_margin plot caption family, face, size and margin
#' @param axis_title_family,axis_title_face,axis_title_size axis title font family, face and size
#' @param axis_title_just axis title font justification, one of `[blmcrt]`
#' @param plot_margin plot margin (specify with [ggplot2::margin()])
#' @param grid_col,axis_col grid & axis colors; both default to `#cccccc`
#' @param grid panel grid (`TRUE`, `FALSE`, or a combination of `X`, `x`, `Y`, `y`)
#' @param axis_text add x or y axes text? `X`, `Y`
#' @param axis_text_size font size of axis text
#' @param axis add x or y axes? `TRUE`, `FALSE`, "`xy`"
#' @param ticks ticks if `TRUE` add ticks
#' @export
#' @returns a ggplot theme object.
#' @examples
#' library(ggplot2)
#' library(dplyr)
#'
#' # seminal scatterplot
#' ggplot(mtcars, aes(mpg, wt)) +
#' geom_point() +
#' labs(
#' x = "Fuel effiiency (mpg)", y = "Weight (tons)",
#' title = "Seminal ggplot2 scatterplot example",
#' subtitle = "A plot that is only useful for demonstration purposes",
#' caption = "Brought to you by the letter 'g'"
#' ) +
#' tntp_style(family = 'sans')
#'
#' # seminal bar chart
#' count(mpg, class) |>
#' ggplot(aes(class, n)) +
#' geom_col() +
#' geom_text(aes(label = n), nudge_y = 3) +
#' labs(
#' x = "Fuel efficiency (mpg)", y = "Weight (tons)",
#' title = "Seminal ggplot2 bar chart example",
#' subtitle = "A plot that is only useful for demonstration purposes",
#' caption = "Brought to you by the letter 'g'"
#' ) +
#' tntp_style(family = 'sans') +
#' theme(axis.text.y = element_blank())
theme_tntp_2018 <- function(base_family = "Segoe UI", base_size = 11.5,
plot_title_family = base_family, plot_title_size = 18,
plot_title_face = "bold", plot_title_margin = 10,
subtitle_family = base_family, subtitle_size = 12,
subtitle_face = "plain", subtitle_margin = 15,
strip_text_family = base_family, strip_text_size = 12,
strip_text_face = "plain",
caption_family = base_family, caption_size = 9,
caption_face = "italic", caption_margin = 10,
axis_text = TRUE, axis_text_size = base_size,
axis_title_family = subtitle_family, axis_title_size = 9,
axis_title_face = "plain", axis_title_just = "rt",
plot_margin = ggplot2::margin(30, 30, 30, 30),
grid_col = "grey93", grid = TRUE,
axis_col = "#cccccc", axis = FALSE, ticks = FALSE) {
.Deprecated()
# Check for a usable font family
base_family <- get_usable_family(base_family)
ret <- ggplot2::theme_minimal(base_family = base_family, base_size = base_size)
ret <- ret + ggplot2::theme(legend.background = ggplot2::element_blank())
ret <- ret + ggplot2::theme(legend.key = ggplot2::element_blank())
if (inherits(grid, "character") | grid == TRUE) {
ret <- ret + ggplot2::theme(panel.grid = ggplot2::element_line(color = grid_col, linewidth = 0.2))
ret <- ret + ggplot2::theme(panel.grid.major = ggplot2::element_line(color = grid_col, linewidth = 0.2))
ret <- ret + ggplot2::theme(panel.grid.minor = ggplot2::element_line(color = grid_col, linewidth = 0.15))
if (inherits(grid, "character")) {
if (regexpr("X", grid)[1] < 0) ret <- ret + ggplot2::theme(panel.grid.major.x = ggplot2::element_blank())
if (regexpr("Y", grid)[1] < 0) ret <- ret + ggplot2::theme(panel.grid.major.y = ggplot2::element_blank())
if (regexpr("x", grid)[1] < 0) ret <- ret + ggplot2::theme(panel.grid.minor.x = ggplot2::element_blank())
if (regexpr("y", grid)[1] < 0) ret <- ret + ggplot2::theme(panel.grid.minor.y = ggplot2::element_blank())
}
} else {
ret <- ret + ggplot2::theme(panel.grid = ggplot2::element_blank())
}
if (axis_text == FALSE) {
ret <- ret + ggplot2::theme(axis.text = ggplot2::element_blank())
} else if (inherits(axis_text, "character")) {
if (regexpr("X", axis_text)[1] < 0) {
ret <- ret + ggplot2::theme(axis.text.x = ggplot2::element_blank())
}
if (regexpr("Y", axis_text)[1] < 0) {
ret <- ret + ggplot2::theme(axis.text.y = ggplot2::element_blank())
}
} else {
ret <- ret + ggplot2::theme(
axis.text.x = ggplot2::element_text(size = axis_text_size, margin = ggplot2::margin(t = 0)),
axis.text.y = ggplot2::element_text(size = axis_text_size, margin = ggplot2::margin(r = 0))
)
}
if (inherits(axis, "character") | axis == TRUE) {
ret <- ret + ggplot2::theme(axis.line = ggplot2::element_line(color = "#2b2b2b", linewidth = 0.15))
if (inherits(axis, "character")) {
axis <- tolower(axis)
if (regexpr("x", axis)[1] < 0) {
ret <- ret + ggplot2::theme(axis.line.x = ggplot2::element_blank())
} else {
ret <- ret + ggplot2::theme(axis.line.x = ggplot2::element_line(color = axis_col, linewidth = 0.15))
}
if (regexpr("y", axis)[1] < 0) {
ret <- ret + ggplot2::theme(axis.line.y = ggplot2::element_blank())
} else {
ret <- ret + ggplot2::theme(axis.line.y = ggplot2::element_line(color = axis_col, linewidth = 0.15))
}
} else {
ret <- ret + ggplot2::theme(axis.line.x = ggplot2::element_line(color = axis_col, linewidth = 0.15))
ret <- ret + ggplot2::theme(axis.line.y = ggplot2::element_line(color = axis_col, linewidth = 0.15))
}
} else {
ret <- ret + ggplot2::theme(axis.line = ggplot2::element_blank())
}
if (!ticks) {
ret <- ret + ggplot2::theme(axis.ticks = ggplot2::element_blank())
ret <- ret + ggplot2::theme(axis.ticks.x = ggplot2::element_blank())
ret <- ret + ggplot2::theme(axis.ticks.y = ggplot2::element_blank())
} else {
ret <- ret + ggplot2::theme(axis.ticks = ggplot2::element_line(linewidth = 0.15))
ret <- ret + ggplot2::theme(axis.ticks.x = ggplot2::element_line(linewidth = 0.15))
ret <- ret + ggplot2::theme(axis.ticks.y = ggplot2::element_line(linewidth = 0.15))
ret <- ret + ggplot2::theme(axis.ticks.length = grid::unit(5, "pt"))
}
xj <- switch(tolower(substr(axis_title_just, 1, 1)),
b = 0,
l = 0,
m = 0.5,
c = 0.5,
r = 1,
t = 1
)
yj <- switch(tolower(substr(axis_title_just, 2, 2)),
b = 0,
l = 0,
m = 0.5,
c = 0.5,
r = 1,
t = 1
)
ret <- ret + ggplot2::theme(axis.title = ggplot2::element_text(size = axis_title_size, family = axis_title_family))
ret <- ret + ggplot2::theme(axis.title.x = ggplot2::element_text(
hjust = xj, size = axis_title_size,
family = axis_title_family, face = axis_title_face
))
ret <- ret + ggplot2::theme(axis.title.y = ggplot2::element_text(
hjust = yj, size = axis_title_size,
family = axis_title_family, face = axis_title_face
))
ret <- ret + ggplot2::theme(axis.title.y.right = ggplot2::element_text(
hjust = yj, size = axis_title_size, angle = 90,
family = axis_title_family, face = axis_title_face
))
ret <- ret + ggplot2::theme(strip.text = ggplot2::element_text(
hjust = 0, size = strip_text_size,
face = strip_text_face, family = strip_text_family
))
ret <- ret + ggplot2::theme(panel.spacing = grid::unit(2, "lines"))
ret <- ret + ggplot2::theme(plot.title = ggplot2::element_text(
hjust = 0, size = plot_title_size,
margin = ggplot2::margin(b = plot_title_margin),
family = plot_title_family, face = plot_title_face
))
ret <- ret + ggplot2::theme(plot.subtitle = ggplot2::element_text(
hjust = 0, size = subtitle_size,
margin = ggplot2::margin(b = subtitle_margin),
family = subtitle_family, face = subtitle_face
))
ret <- ret + ggplot2::theme(plot.caption = ggplot2::element_text(
hjust = 1, size = caption_size,
margin = ggplot2::margin(t = caption_margin),
family = caption_family, face = caption_face
))
ret <- ret + ggplot2::theme(plot.margin = plot_margin)
ret
}
#' Update matching font defaults for text geoms
#'
#' Updates [ggplot2::geom_label] and [ggplot2::geom_text] font defaults
#'
#' @param family,face,size,color font family name, face, size and color
#' @export
#' @returns nothing
#' @examplesIf interactive()
#' # Update text geoms to use Arial font
#' update_geom_font_defaults(family = 'Arial')
#'
update_geom_font_defaults <- function(family = "Segoe UI", face = "plain", size = 3.5,
color = "#2b2b2b") {
ggplot2::update_geom_defaults("text", list(family = family, face = face, size = size, color = color))
ggplot2::update_geom_defaults("label", list(family = family, face = face, size = size, color = color))
}
#' Import Segoe UI Condensed font for use in charts
#'
#' This function will check if Segoe UI is already accessible in R and if not
#' it will attempt to import it using the `extrafont` package
#'
#' @md
#' @export
#' @returns nothing
#' @examplesIf interactive()
#' import_segoe_ui()
#'
import_segoe_ui <- function() {
# Check if it's already installed
fnt <- extrafont::fonttable()
if (any(grepl("Segoe UI", fnt$FamilyName))) {
cli::cli_inform("Segoe UI is already installed and accessible in R")
return()
}
# Try loading fonts
extrafont::loadfonts(quiet = TRUE)
fnt <- extrafont::fonttable()
if (any(grepl("Segoe UI", fnt$FamilyName))) {
cli::cli_inform("Segoe UI is now accessible in R")
return()
}
# Try importing fonts
cli::cli_inform("Segoe UI not found in R fonts. Importing all system fonts...")
extrafont::font_import(prompt = FALSE)
extrafont::loadfonts(quiet = TRUE)
# Check again for Segoe
fnt <- extrafont::fonttable()
if (any(grepl("Segoe UI", fnt$FamilyName))) {
cli::cli_inform(c("v" = "Segoe UI successfully imported."))
} else {
cli::cli_inform(c("x" = "Segoe UI could not be imported from your system."))
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.