X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=openanalyse.py;h=41a59782f6c427574f4fd35cc62882ffde4a3874;hp=eb38055b59092baffd2be38c6262cca10b591a1f;hb=bef848ac11a8f9a21b431fc014b35711b0fe82b1;hpb=b563d3428deb1e62062d8af0fd3dfa2e329930bd diff --git a/openanalyse.py b/openanalyse.py index eb38055..41a5978 100644 --- a/openanalyse.py +++ b/openanalyse.py @@ -149,28 +149,20 @@ class OpenAnalyse(): def doopen(self, corpus) : if self.conf['type'] == 'corpus' : - #self.parent.ShowMenu(_("Text analysis")) OpenCorpus(self.parent, self.conf) elif self.conf['type'] == 'stat' : - #self.parent.ShowMenu(_("Text analysis")) StatLayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'spec' : - #self.parent.ShowMenu(_("Text analysis")) dolexlayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'alceste' : - #self.parent.ShowMenu(_("Text analysis")) OpenCHDS(self.parent, corpus, self.conf, Alceste = True) elif self.conf['type'] == 'simitxt' or self.conf['type'] == 'clustersimitxt' : - #self.parent.ShowMenu(_("Text analysis")) SimiLayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'wordcloud' or self.conf['type'] == 'clustercloud': - #self.parent.ShowMenu(_("Text analysis")) WordCloudLayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'reinertmatrix' : - #self.parent.ShowMenu(_("Spreadsheet analysis")) OpenCHDS(self.parent, corpus, self.conf, Alceste = False) elif self.conf['type'] == 'simimatrix' : - #self.parent.ShowMenu(_("Spreadsheet analysis")) SimiMatLayout(self.parent, corpus, self.conf) elif self.conf['type'] == 'proto' : ProtoLayout(self.parent, corpus, self.conf)