plot_log10: A function to plot a figure in log10 scale

View source: R/plot_log10.R

plot_log10R Documentation

A function to plot a figure in log10 scale

Description

This function generates a figure in log10 scale

Usage

plot_log10(
  x,
  y,
  log10_scale = "x",
  tick_type = "lin",
  minor_tick = TRUE,
  xlab = NULL,
  ylab = NULL,
  type = NULL,
  main = NULL,
  xlim = NULL,
  ylim = NULL
)

Arguments

x

The array of x values

y

The array of y values

log10_scale

A string takes "x", "y", or "xy". It indicates the axix that will be plotted in log10 scale

tick_type

A string takes "exp" (the ticks are expressed by 10^) or "lin" (the ticks are expressed by 100..)

minor_tick

Binary, indicates if minor ticks are plotted

xlab

A title for the x axis

ylab

A title for the y axis

type

What type of plot should be drawn. The setting is the same as plot()

main

An overall title for the plot

xlim

The limit range of x axis

ylim

The limit range of y axis


wltcwpf/hvsrProc documentation built on March 25, 2024, 7 p.m.