X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=openanalyse.py;h=c8089d269e331020db03bcb64f512ec3571a988f;hp=41a59782f6c427574f4fd35cc62882ffde4a3874;hb=93cbfaab587c5d7f16874c270dee5d4a2f885074;hpb=bef848ac11a8f9a21b431fc014b35711b0fe82b1 diff --git a/openanalyse.py b/openanalyse.py index 41a5978..c8089d2 100644 --- a/openanalyse.py +++ b/openanalyse.py @@ -162,13 +162,13 @@ 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' : Chi2Layout(self.parent, corpus, self.conf)