Representable Models Over N={1,2,3,4}

This page summarizes results on probabilistic representability and contains several lists of representable models over N={1,2,3,4} with respect to different distribution frameworks. A description of the data file format is at the end of the page.

Gaussian distribution framework

Results: Literature: Yest - R package for fitting regular Gaussian models:

Discrete distribution framework

Results: Literature:

Binary distribution framework

Results:

Utilities for manipulation of data files

All sources contain no comments and they are quite messy (sorry). Originally, they were written only for my own purposes. The first four source codes have been written for GNU Pascal, the last one should be compiled in Borland Pascal.

int file1 [file2] rot file1 [file2] dif file1 file2 file3 lst file1 vis file1

Data file format

Each model is coded by 24 bytes, i.e. the presence of each independence triple is coded by 1 byte (Yes, I know, it is wasting of disk space :-). If the triple (a,b|C) is present, then the corresponding byte is 1, otherwise it equals 0. The order of triples is as follows

  1. (1,2|0)
  2. (2,3|0)
  3. (3,4|0)
  4. (1,4|0)
  5. (1,3|0)
  6. (2,4|0)
  1. (1,2|3)
  2. (1,2|4)
  3. (2,3|1)
  4. (2,3|4)
  5. (3,4|2)
  6. (3,4|1)
  1. (1,4|2)
  2. (1,4|3)
  3. (2,4|1)
  4. (2,4|3)
  5. (1,3|2)
  6. (1,3|4)
  1. (1,2|34)
  2. (2,3|14)
  3. (3,4|12)
  4. (1,4|23)
  5. (1,3|24)
  6. (2,4|13)