X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=openanalyse.py;h=c8089d269e331020db03bcb64f512ec3571a988f;hp=f8c32bbeec931107543adb61af9a376383998122;hb=4c959afafbe1f1ec29b01fa8db3ae1af1b8cd4cf;hpb=6919f2ef8d85c176c7be824b606c4b71142e10fd diff --git a/openanalyse.py b/openanalyse.py index f8c32bb..c8089d2 100644 --- a/openanalyse.py +++ b/openanalyse.py @@ -149,34 +149,26 @@ 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")) + 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)