Canonical first "three" arguments: [Previous layer], tilde expression, domain
npts
Integer number of points on each axis at which to evaluate the function
labels
Logical flag: label the contours
filled
Logical flag: fill between the contours
contours_at
Vector of numbers. Contours will be drawn
at these levels of the output.
n_contours
hint at number of contours to show
n_fill
Integer number of points for calculating fill
alpha
Transparency of contours in [0-1]
fill_alpha
Transparency of fill
label_alpha
Likewise, for contour labels
label_placement
A number, between 0 and 1, suggesting where to place
the contour labels. Default: 0.5. This can be useful when there are two contour layers in one plaot.
contour_color
Set to a string, e.g. "blue" for contours
to be drawn in a fixed color
label_color
Defaults to contour_color. Can be set to a
skip
Small integer. Skip this many contours between labeled contours
if (FALSE) {
contour_plot(sin(0.2*x*y) ~ x & y, domain(x=-10.3:4.5, y=2:7.5))
contour_plot(x + y ~ x & y)
contour_plot(sin(0.2*x*y)) # but better to use tilde expression}