mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
updated docs + boxplot
This commit is contained in:
parent
04784a7a24
commit
111393c73f
23 changed files with 908 additions and 306 deletions
27
man/limit_log.Rd
Normal file
27
man/limit_log.Rd
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/regression_plot.R
|
||||
\name{limit_log}
|
||||
\alias{limit_log}
|
||||
\title{Easily round log scale limits for nice plots}
|
||||
\usage{
|
||||
limit_log(data, fun, ...)
|
||||
}
|
||||
\arguments{
|
||||
\item{data}{data}
|
||||
|
||||
\item{fun}{rounding function (floor/ceiling)}
|
||||
|
||||
\item{...}{ignored}
|
||||
}
|
||||
\value{
|
||||
numeric vector
|
||||
}
|
||||
\description{
|
||||
Easily round log scale limits for nice plots
|
||||
}
|
||||
\examples{
|
||||
limit_log(-.1,floor)
|
||||
limit_log(.1,ceiling)
|
||||
limit_log(-2.1,ceiling)
|
||||
limit_log(2.1,ceiling)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue