fplot
Faster plot via RGL
fplot( x, y, z = NULL, xlab, ylab, ..., z.col = topo.colors(64), data = parent.frame(), add = FALSE, aspect = c(1, 1), zoom = 0.8 )
x
: X variabley
: Y variablez
: Z variable (optional)xlab
: x-axis labelylab
: y-axis label...
: additional arggument to lower-level plot functionsz.col
: color (use argument alpha to set transparency)data
: data.frameadd
: if TRUE use current active deviceaspect
: aspect ratiozoom
: zoom levelif (interactive()) { data(iris) fplot(Sepal.Length ~ Petal.Length+Species, data=iris, size=2, type="s") }