Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/string-stats-es.rb

Instance Method Summary collapse

Instance Method Details

#unique_word_countObject



11
12
13
# File 'lib/string-stats-es.rb', line 11

def unique_word_count
	self.unique_words.length
end

#unique_wordsObject



7
8
9
# File 'lib/string-stats-es.rb', line 7

def unique_words
	self.split(" ").uniq
end

#word_countObject



3
4
5
# File 'lib/string-stats-es.rb', line 3

def word_count
	self.split(" ").length
end

#word_frequenciesObject



15
16
17
18
19
20
21
22
23
# File 'lib/string-stats-es.rb', line 15

def word_frequencies
	words = self.split(" ")
	word_frequencies = {}
	words.each do |word|
		word_frequencies[word.to_sym] ||= 0
		word_frequencies[word.to_sym] += 1
	end
	return word_frequencies
end