Internal soundgen function
filled.contour.mod(
x = seq(0, 1, len = nrow(z)),
y = seq(0, 1, len = ncol(z)),
z,
xlim = range(x, finite = TRUE),
ylim = range(y, finite = TRUE),
zlim = range(z, finite = TRUE),
levels = pretty(zlim, nlevels),
nlevels = 30,
color.palette = function(n) grDevices::hcl.colors(n, "YlOrRd", rev = TRUE),
col = color.palette(length(levels) - 1),
asp = NA,
xaxs = "i",
yaxs = "i",
log = "",
axisX = TRUE,
axisY = TRUE,
...
)
locations of grid lines
numeric matrix of values to plot
limits for the plot
levels for partitioning z
numbers of levels for partitioning z
color palette function
list of colors instead of color.palette
graphical parameters passed to plot.window() and axis()
log = 'y' log-transforms the y axis
plot the axis or not (logical)
A bare-bones version of filled.contour
that does not
plot a legend and accepts some additional graphical parameters like tick
marks.