X-Git-Url: http://iramuteq.org/git?a=blobdiff_plain;ds=sidebyside;f=openanalyse.py;h=a80670e9bab8f47bc174b0219aea8022930bd003;hb=829369d99b57aa651ac60e88afefc0cdcac152ee;hp=899a0bb91565e6c6b1a395b7939f1895e9524916;hpb=ae0a736d9598a3483ccf2b35e3b61d365cf77db4;p=iramuteq diff --git a/openanalyse.py b/openanalyse.py index 899a0bb..a80670e 100644 --- a/openanalyse.py +++ b/openanalyse.py @@ -162,7 +162,7 @@ class OpenAnalyse(): WordCloudLayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'reinertmatrix' : OpenCHDS(self.parent, corpus, self.conf, Alceste = False) - elif self.conf['type'] == 'simimatrix' : + elif self.conf['type'] == 'simimatrix' or self.conf['type'] == 'simiclustermatrix': SimiMatLayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'proto' : ProtoLayout(self.parent, corpus, self.conf) @@ -170,6 +170,6 @@ class OpenAnalyse(): MatLayout(self.parent, corpus) elif self.conf['type'] == 'freq' or self.conf['type'] == 'freqmulti': FreqLayout(self.parent, corpus, self.conf) - elif self.conf['type'] == 'chi2' : + elif self.conf['type'] == 'chi2' or self.conf['type'] == 'chi2mcnemar': Chi2Layout(self.parent, corpus, self.conf)