plot_log10 | R Documentation |
This function generates a figure in log10 scale
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
)
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 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.