View source: R/utilMWRyscale.R
utilMWRyscale | R Documentation |
Get logical value for y axis scaling
utilMWRyscale(accdat, param, yscl = "auto")
accdat |
|
param |
character string for the parameter to evaluate as provided in the |
yscl |
character indicating one of |
A logical value indicating TRUE
for log10-scale, FALSE
for arithmetic (linear)
# accuracy path
accpth <- system.file('extdata/ExampleDQOAccuracy.xlsx',
package = 'MassWateR')
# accuracy data
accdat <- readMWRacc(accpth)
# log auto
utilMWRyscale(accdat, param = 'E.coli')
# linear force
utilMWRyscale(accdat, param = 'E.coli', yscl = 'linear')
# linear auto
utilMWRyscale(accdat, param = 'DO')
# log force
utilMWRyscale(accdat, param = 'DO', yscl = 'log')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.