mean_c: Mean and variance for a circular sample

View source: R/some_helper_functions.R

mean_cR Documentation

Mean and variance for a circular sample

Description

Mean and variance for a circular sample

Usage

mean_c(theta)

var_c(theta)

Arguments

theta

A vector of angles (in radians)

Value

The mean (rsp. variance) of the angle sample

Examples

th <- 2*base::pi*(rbeta(2000, 1.5, 1.5) - 0.5)
c(mn = mean_c(th), va = var_c(th))
rm(th)

MASSExtra documentation built on Feb. 16, 2023, 10:55 p.m.