X-Git-Url: http://iramuteq.org/git?a=blobdiff_plain;ds=sidebyside;f=openanalyse.py;h=c8089d269e331020db03bcb64f512ec3571a988f;hb=1e07c566398282f130a753283ddf8e85d1f6837e;hp=41a59782f6c427574f4fd35cc62882ffde4a3874;hpb=bef848ac11a8f9a21b431fc014b35711b0fe82b1;p=iramuteq 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)