taurhoInitial: Sparse setup - rho parameter

Description Usage Arguments Value Examples

View source: R/initialization.R

Description

Sparse setup - ρ parameter

Usage

1
taurhoInitial(tau, data, n, Q, directed = TRUE)

Arguments

tau

τ

data

Data : only needs the N_{ijk} field of data

n

Total number of nodes

Q

Total number of groups

directed

Boolean for directed (TRUE) or undirected (FALSE) case

Value

Both τ and ρ.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# Generate first initial tau for generated_Q3 data

n <- 50
Dmax <- 2^3
Q <- 3
d_part <- 1 # less than 3 (owing to Dmax)
n_perturb <- 2
perc_perturb <- 0.2
n_random <- 1
directed <- FALSE

data <- list(Nijk = statistics(generated_Q3$data, n, Dmax, directed = FALSE))

tau <- tauInitial(data,n,Q,d_part,n_perturb,perc_perturb,n_random,directed)

taurho <- taurhoInitial(tau[[1]],data,n,Q,directed=FALSE)

ppsbm documentation built on May 1, 2019, 11:26 p.m.