This function visualizes a single isoband calculated from a matrix. It is mainly useful
for debugging and visualizing the isobanding algorithm. See isobands()
for more
examples.
Usage
plot_iso(
m,
vlo,
vhi,
fill_lo = "gray95",
fill_mid = "gray50",
fill_hi = "black",
fill_band = "cornsilk",
col_lo = "black",
col_hi = "black",
newpage = TRUE
)
Arguments
- m
input matrix
- vlo
lower cutoff for isobanding
- vhi
higher cutoff for isobanding
- fill_lo
fill color for points below the lower cutoff
- fill_mid
fill color for points between the two cutoffs
- fill_hi
fill color for points above the higher cutoff
- fill_band
fill color for the isoband
- col_lo
line color for lower cutoff
- col_hi
line color for higher cutoff
- newpage
boolean, indicating whether
grid.newpage()
should be called or not