pycontourf: Filled contour using pyplot

Description Usage Arguments Examples

Description

Filled contour using pyplot

Usage

1
pycontourf(x, y, z, args, show = FALSE)

Arguments

x

numeric vector containing the x coordinates of points

y

numeric vector containing the y coordinates of points

z

array of z-axis coordinates

args

character string of further arguments passed to the **kwargs argument of matplotlib.pyplot.scatter

show

bool indicating whether to open a window with the plot

Examples

1
2
3
4
5
x <- 1:ncol(volcano)*.2
y <- 1:nrow(volcano)*.5
pycontourf(x, y, volcano)
if (interactive())
   pyshow()

mpastell/Rpyplot documentation built on May 23, 2019, 6:27 a.m.