restructure_as_list {ssMRCD}R Documentation

Restructure Data Matrix as List

Description

This function restructures neighborhood information given by a data matrix containing all information and one neighborhood assignment vector. It returns a list of data matrices used in ssMRCD.

Usage

restructure_as_list(data, neighborhood_vec)

Arguments

data

data matrix with all observations.

neighborhood_vec

numeric neighborhood assignment vector. Should contain numbers from 1 to N and not leave integers out.

Value

Returns a list containing the observations per neighborhood assignment.

Examples


# data matrix
data = matrix(rnorm(n = 3000), ncol = 3)
N_assign = sample(x = 1:10, size = 1000, replace = TRUE)

restructure_as_list(data, N_assign)


[Package ssMRCD version 0.1.0 Index]