Package medite :: Package MediteAppli :: Module synthetic :: Class FrequencyMatrix
[hide private]
[frames] | no frames]

Class FrequencyMatrix

source code

object --+
         |
        FrequencyMatrix
Known Subclasses:
TagFrequencyMatrix, TextFrequencyMatrix

Matrice de fréquences

Instance Methods [hide private]
 
__init__(self, nbLine, nbCol)
pre: isinstance(nbLine,int) and isinstance(nbCol,int) and nbLine>0 and nbCol>0
source code
 
__str__(self)
str(x)
source code
 
getNbLine(self)
Nombre total de lignes
source code
 
getNbColumn(self)
Nombre de colonnes
source code
 
getFreqLine(self, index)
Renvoie une ligne de fréquence cad une ligne correspondant à une partie de texte
source code
 
getMax(self)
Renvoie la valeur max sur toute la matrice
source code
 
getItemLegend(self) source code
 
getGraphLegend(self) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, nbLine, nbCol)
(Constructor)

source code 
pre: isinstance(nbLine,int) and isinstance(nbCol,int) and nbLine>0 and nbCol>0
Overrides: object.__init__

__str__(self)
(Informal representation operator)

source code 
str(x)
Overrides: object.__str__
(inherited documentation)