Learn R Programming

cylcop (version 0.2.0)

plot,cyl_copula,missing-method: Plot 'cyl_copula' Objects

Description

Method for plot() to draw a scatter plot of a random sample from a circular-linear copula.

Usage

# S4 method for cyl_copula,missing
plot(x, n = 1000, ...)

Value

An invisible NULL. As side effect, a plot is produced.

Arguments

x

R object of class 'cyl_copula'.

n

sample size of the random sample drawn from x.

...

additional arguments passed to plot().

Examples

Run this code
set.seed(123)

plot(cyl_quadsec(0.1))
plot(cyl_vonmises(0,2), n = 100)
plot(cyl_quadsec(0.1),
   xlab = "something",
   ylab = "something else",
   main = "clever title",
   col = "red",
   fg = "blue",
   asp= 1)

Run the code above in your browser using DataLab