powered by
This is a wrapper for R's contour function. See R's documentation for graphics::contour for further details.
contour( x = seq(0, 1, length.out = nrow(z)), y = seq(0, 1, length.out = ncol(z)), z, Rcss = "default", Rcssclass = NULL, ... )
numeric vector; locations of grid lines
matrix of values
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()
character, style class
Further parameters, see documentation of graphics::contour
# NOT RUN { # draw a complete contour plot dataset <- outer(1:10, 1:10) contour(z=dataset) # }
Run the code above in your browser using DataLab