R/theme0.R

Defines functions theme0

# Internal function that plots the data
#
# This function is intended to be used within the package
#
#
# @param ... additional arguments passed to this function
#
theme0 <- function(...) {
  ggplot2::theme( legend.position = "none",
         panel.background = ggplot2::element_blank(),
         panel.grid.major = ggplot2::element_blank(),
         panel.grid.minor = ggplot2::element_blank(),
         panel.spacing = ggplot2::unit(0,"null"),
         axis.ticks = ggplot2::element_blank(),
         axis.text.x = ggplot2::element_blank(),
         axis.text.y = ggplot2::element_blank(),
         axis.title.x = ggplot2::element_blank(),
         axis.title.y = ggplot2::element_blank(),
         axis.ticks.length = ggplot2::unit(0,"null"),
         #axis.ticks.margin = unit(0,"null"),
         panel.border = ggplot2::element_rect(color=NA),...)}

Try the tRophicPosition package in your browser

Any scripts or data that you put into this service are public.

tRophicPosition documentation built on Dec. 28, 2022, 2:27 a.m.