X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=openanalyse.py;h=a80670e9bab8f47bc174b0219aea8022930bd003;hp=899a0bb91565e6c6b1a395b7939f1895e9524916;hb=ed43a2036c36b4146a957ae2ba893e80b3c14342;hpb=c440e446cdf3ff08f6bcd37c5061da3c5f29dc37 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)