grid_distribution: Distribution over a grid

View source: R/RcppExports.R

grid_distributionR Documentation

Distribution over a grid

Description

Distribution of pairs over a grid of fix size.

Usage

grid_distribution(x, y, nlevels = 100L)

Arguments

x

Numeric vector of size n

y

Numeric vector of size n

nlevels

Integer scalar. Number of bins to return

Details

This function ment for internal use only.

Value

Returns a list with three elements

x

Numeric vector of size nlevels with the class marks for x

y

Numeric vector of size nlevels with the class marks for y

z

Numeric matrix of size nlevels by nlevels with the distribution of the elements in terms of frequency

Examples

# Generating random vectors of size 100
x <- rnorm(100)
y <- rnorm(100)

# Calculating distribution
grid_distribution(x,y,20)

See Also

Used by plot_infectsuscep

Other visualizations: dgr(), diffusionMap(), drawColorKey(), hazard_rate(), plot_adopters(), plot_diffnet2(), plot_diffnet(), plot_infectsuscep(), plot_threshold(), rescale_vertex_igraph()


netdiffuseR documentation built on Aug. 30, 2023, 5:07 p.m.