X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=ProfList.py;h=7b593c63f7b92a60e9e4dd3d0eea947abc6ff91e;hp=8c30c72b9213973db5f24e9a39eb1d6cf1a12518;hb=4dc1de2e438378f357bcbb2fd8cf0075e0bdcd55;hpb=6523e3596df7ec9b7b94b875593953d4b34b6117 diff --git a/ProfList.py b/ProfList.py index 8c30c72..7b593c6 100644 --- a/ProfList.py +++ b/ProfList.py @@ -601,7 +601,7 @@ class ProfListctrlPanel(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.Col nuces = [val[1] for val in ntab2] dlg.Update(3, u'concordancier...') ucis_txt, ucestxt = doconcorde(corpus, nuces, self.la, uci = uci) - items = dict([[i, '
'.join([ucis_txt[i], '
score : %.2f

' % ntab2[i][0], ucestxt[i]])] for i in range(0,len(ucestxt))]) + items = dict([[i, '
'.join([ucis_txt[i], '
score : %.2f

' % ntab2[i][0], ucestxt[i]])] for i, uce in enumerate(nuces)]) dlg.Update(4, u'texte...') win = message(self, items, u"Segments de texte caractéristiques - Classe %i" % self.cl, (750, 600)) #win.html = '\n' + '
'.join(['
'.join([ucis_txt[i], '
score : %.2f
' % ntab2[i][0], ucestxt[i]]) for i in range(0,len(ucestxt))]) + '\n'