Class: Mess::WordFrequency
- Defined in:
- lib/mess/plotter/word_frequency.rb
Instance Attribute Summary
Attributes inherited from Plotter
Instance Method Summary collapse
-
#initialize(chat) ⇒ WordFrequency
constructor
A new instance of WordFrequency.
Methods inherited from Plotter
Constructor Details
#initialize(chat) ⇒ WordFrequency
Returns a new instance of WordFrequency.
8 9 10 11 12 13 14 |
# File 'lib/mess/plotter/word_frequency.rb', line 8 def initialize chat super @data = Hash.new chat.usrs.each do |u| @data[u] = Hash.new end end |