mrfse.exact.ncon {mrfse} | R Documentation |
Non-conservative approach for Frondana's mrfse
Description
Conservative construction of the estimated Markov random field graph.
Usage
mrfse.exact.ncon(a_size, sample, c, max_neigh = ncol(sample) - 1)
Arguments
a_size |
Size of the alphabet. |
sample |
A integer-valued matrix. Each value must belong range |
c |
The penalization constant. Must be positive. |
max_neigh |
The maximum length of a candidate Markovian neighborhood. Must be
non-negative and less than |
Value
A adjacency matrix of the estimated Markov random field graph.
Author(s)
Rodrigo Carvalho
References
FRONDANA, Iara Moreira. Model selection for discrete Markov random fields on graphs. São Paulo : Instituto de Matemática e Estatística, University of São Paulo, 2016. Doctoral Thesis in Estatística. <doi:10.11606/T.45.2018.tde-02022018-151123> http://www.teses.usp.br/teses/disponiveis/45/45133/tde-02022018-151123/publico/tese_Iara_Frondana.pdf
Examples
library(mrfse)
a = c(0, 1)
s = matrix(sample(a, size=1000, replace=TRUE), ncol=5)
mrfse.exact.ncon(length(a), s, 1.0)