Learn R Programming

BRPL (version 1.0.2)

brpl: Calculate Bivariate Quantiles

Description

Calculate Bivariate Quantiles

Usage

brpl(data, var1, var2, tau = 0.5, nalpha = 100)

Value

An object of class brplPlot

Arguments

data

Input data frame (tibbles and other data.frame variants are automatically converted to data.frame)

var1

Name of first variable

var2

Name of second variable

tau

Quantile level (default: 0.5)

nalpha

Number of alpha values (default: 100)

Examples

Run this code
df_data <- data.frame(x = 1:10, y = 1:10)
result <- brpl(df_data, "x", "y")

Run the code above in your browser using DataLab