Make a plot of the suited ranges for this sensor

# S4 method for redoxSensor
rangePlot(object, ranges = ranges_df(object), ylim = c(-350, -150), by = 20)

Arguments

object

A redoxSensor object

ranges

(optional, default = ranges_df(object)) A ranges dataframe)

ylim

The limits of the ranges plot

by

the 'by' argument of the limits axis tick marks

Value

A dataframe of suited ranges with these columns: 'Sensor_Name': the name of the sensor 'Minimum': the minimum redox potential (mV) measurable at the given inaccuracy 'Maximum': the maximum redox potential (mV) measurable at the given inaccuracy 'Inaccuracy': the inaccuracy associated with this row (relative) 'error_thresh': the error threshold associated with this row (mV)

Examples

my_sensor <- new("redoxSensor", new("Sensor", Rmin = 1, Rmax = 5, delta = 0.2), e0 = -250) rangePlot(my_sensor)