library(tinytable)
options(tinytable_tt_digits = 3)
options(tinytable_theme_placement_latex_float = "H")
<- mtcars[1:4, 1:5] x
Plots and images
The plot_tt()
function can embed images and plots in a tinytable
. We can insert images by specifying their paths and positions (i
/j
).
Inserting images in tables
To insert images in a table, we use the plot_tt()
function. The path_img
values must be relative to the main document saved by save_tt()
or to the Quarto (or Rmarkdown) document in which the code is executed.
<- data.frame(
dat Species = c("Spider", "Squirrel"),
Image = ""
)
<- c(
img "figures/spider.png",
"figures/squirrel.png"
)
tt(dat) |>
plot_tt(j = 2, images = img, height = 3)
Species | Image |
---|---|
Spider | |
Squirrel |
In HTML tables, it is possible to insert tables directly from a web address, but not in LaTeX.
<- data.frame("R" = "")
dat <- "https://cran.r-project.org/Rlogo.svg"
img tt(dat) |>
plot_tt(i = 1, j = 1, images = img, height = 7) |>
style_tt(j = 1, align = "c")
R |
---|
Inline plots
We can draw inline plots three ways, with
- Built-in templates for histograms, density plots, and bar plots
- Custom plots using base
R
plots. - Custom plots using
ggplot2
.
To draw custom plots, one simply has to define a custom function, whose structure we illustrate below.
Built-in plots
There are several types of inline plots available by default. For example,
<- list(mtcars$mpg, mtcars$hp, mtcars$qsec)
plot_data
<- data.frame(
dat Variables = c("mpg", "hp", "qsec"),
Histogram = "",
Density = "",
Bar = "",
Line = ""
)
# random data for sparklines
<- lapply(1:3, \(x) data.frame(x = 1:10, y = rnorm(10)))
lines
tt(dat) |>
plot_tt(j = 2, fun = "histogram", data = plot_data) |>
plot_tt(j = 3, fun = "density", data = plot_data, color = "darkgreen") |>
plot_tt(j = 4, fun = "bar", data = list(2, 3, 6), color = "orange") |>
plot_tt(j = 5, fun = "line", data = lines, color = "blue") |>
style_tt(j = 2:5, align = "c")
Variables | Histogram | Density | Bar | Line |
---|---|---|---|---|
mpg | ||||
hp | ||||
qsec |
Custom plots: Base R
Important: Custom functions must have ...
as an argument.
To create a custom inline plot using Base R
plotting functions, we create a function that returns another function. tinytable
will then call that second function internally to generate the plot.
This is easier than it sounds! For example:
<- function(d, ...) {
f function() hist(d, axes = FALSE, ann = FALSE, col = "lightblue")
}
<- list(mtcars$mpg, mtcars$hp, mtcars$qsec)
plot_data
<- data.frame(Variables = c("mpg", "hp", "qsec"), Histogram = "")
dat
tt(dat) |>
plot_tt(j = 2, fun = f, data = plot_data)
Variables | Histogram |
---|---|
mpg | |
hp | |
qsec |
Custom plots: ggplot2
Important: Custom functions must have ...
as an argument.
To create a custom inline plot using ggplot2
, we create a function that returns a ggplot
object:
library(ggplot2)
<- function(d, color = "black", ...) {
f <- data.frame(x = d)
d ggplot(d, aes(x = x)) +
geom_histogram(bins = 30, color = color, fill = color) +
scale_x_continuous(expand = c(0, 0)) +
scale_y_continuous(expand = c(0, 0)) +
theme_void()
}
<- list(mtcars$mpg, mtcars$hp, mtcars$qsec)
plot_data
tt(dat) |>
plot_tt(j = 2, fun = f, data = plot_data, color = "pink")
Variables | Histogram |
---|---|
mpg | |
hp | |
qsec |
We can insert arbitrarily complex plots by customizing the ggplot2
call:
<- read.csv(
penguins "https://vincentarelbundock.github.io/Rdatasets/csv/palmerpenguins/penguins.csv",
na.strings = ""
|> na.omit()
)
# split data by species
<- split(penguins, penguins$species)
dat <- lapply(dat, \(x) x$body_mass_g)
body <- lapply(dat, \(x) x$flipper_length_mm)
flip
# create nearly empty table
<- data.frame(
tab "Species" = names(dat),
"Body Mass" = "",
"Flipper Length" = "",
"Body vs. Flipper" = "",
check.names = FALSE
)
# custom ggplot2 function to create inline plot
<- function(d, ...) {
f ggplot(d, aes(x = flipper_length_mm, y = body_mass_g, color = sex)) +
geom_point(size = .2) +
scale_x_continuous(expand = c(0, 0)) +
scale_y_continuous(expand = c(0, 0)) +
scale_color_manual(values = c("#E69F00", "#56B4E9")) +
theme_void() +
theme(legend.position = "none")
}
# `tinytable` calls
tt(tab) |>
plot_tt(j = 2, fun = "histogram", data = body, height = 2) |>
plot_tt(j = 3, fun = "density", data = flip, height = 2) |>
plot_tt(j = 4, fun = f, data = dat, height = 2) |>
style_tt(j = 2:4, align = "c")
Species | Body Mass | Flipper Length | Body vs. Flipper |
---|---|---|---|
Adelie | |||
Chinstrap | |||
Gentoo |
Fontawesome
We can use the fontawesome
package to include fancy icons in HTML tables:
library(fontawesome)
<- mtcars[1:4, 1:4]
tmp 1, 1] <- paste(fa("r-project"), "for statistics")
tmp[tt(tmp)
mpg | cyl | disp | hp |
---|---|---|---|
for statistics | 6 | 160 | 110 |
21 | 6 | 160 | 110 |
22.8 | 4 | 108 | 93 |
21.4 | 6 | 258 | 110 |