save_pdf-methods: Save plot on PDF file

save_pdfR Documentation

Save plot on PDF file

Description

save_pdf() takes as input a Heatmap from ComplexHeatmap and save it to PDF file

Usage

save_pdf(
  .heatmap,
  filename,
  width = NULL,
  height = NULL,
  units = c("in", "cm", "mm")
)

Arguments

.heatmap

A 'Heatmap'

filename

A character string. The name of the output file/path

width

A 'double'. Plot width

height

A 'double'. Plot height

units

A character string. units ("in", "cm", or "mm")

Details

\lifecycle

maturing

It simply save an 'Heatmap' to a PDF file use pdf() function in the back end

Value

NA

Source

[Mangiola and Papenfuss., 2020](https://joss.theoj.org/papers/10.21105/joss.02472)

References

Mangiola, S. and Papenfuss, A.T., 2020. "tidyHeatmap: an R package for modular heatmap production based on tidy principles." Journal of Open Source Software. doi:10.21105/joss.02472.

Examples



	tidyHeatmap::heatmap(
  dplyr::group_by(tidyHeatmap::pasilla,		location, type),
  .column = sample,
  .row = symbol,
  .value = `count normalised adjusted`,
 ) |>
 save_pdf(tempfile())



stemangiola/tidyHeatmap documentation built on Nov. 2, 2024, 12:54 p.m.