dist_chisquare: Compute Chi-square Distances

Description Usage Arguments Value Examples

View source: R/svs.r

Description

A function for computing chi-square distances.

Usage

1
2
3
dist_chisquare(x, diag = FALSE, upper = FALSE)

dist_chisq(x, diag = FALSE, upper = FALSE)

Arguments

x

A numeric matrix (containing coordinates).

diag

Logical specifying whether the diagonal of the resulting distance matrix should be printed.

upper

Logical specifying whether the upper triangle of the resulting distance matrix should be printed.

Value

A distance matrix.

Examples

1
2
3
4
5
SndT_Fra <- read.table(system.file("extdata", "SndT_Fra.txt", package = "svs"),
   header = TRUE, sep = "\t", quote = "\"", encoding = "UTF-8",
   stringsAsFactors = FALSE)
tab.SndT_Fra <- table(SndT_Fra)
dist_chisquare(tab.SndT_Fra)

svs documentation built on Nov. 10, 2020, 1:09 a.m.