X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=openanalyse.py;h=a80670e9bab8f47bc174b0219aea8022930bd003;hp=41a59782f6c427574f4fd35cc62882ffde4a3874;hb=148fe710bf14981c45e865e8b4ddb68333e62f7c;hpb=bef848ac11a8f9a21b431fc014b35711b0fe82b1 diff --git a/openanalyse.py b/openanalyse.py index 41a5978..a80670e 100644 --- a/openanalyse.py +++ b/openanalyse.py @@ -162,14 +162,14 @@ 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) elif self.conf['type'] == 'matrix' : MatLayout(self.parent, corpus) - elif self.conf['type'] == 'freq' : + 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)