Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.rdoc #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ A single N-Gram
n_gram = NGram.new(data, :n => 2)

# To see the N-Gram of the collection
ngram.ngrams_of_all_data
n_gram.ngrams_of_all_data
#=> {2 => {'here is' => 2 etc...}}

# To see the N-Grams of individual inputs
# If we want the N-Gram of data[0]
ngram.ngrams_of_inputs[0]
n_gram.ngrams_of_inputs[0]
#=> {2 => {'here is' => 1 etc...}}

Multiple N-Grams
Expand All @@ -37,12 +37,12 @@ Multiple N-Grams
n_gram = NGram.new(data, :n => [2,3])

# To see the N-Gram of the collection
ngram.ngrams_of_all_data
n_gram.ngrams_of_all_data
#=> {2 => {'here is' => 2 etc...}, 3 => {'here is some' => 1 etc...}}

# To see the N-Grams of individual inputs
# If we want the N-Gram of data[0]
ngram.ngrams_of_inputs[0]
n_gram.ngrams_of_inputs[0]
#=> {2 => {'here is' => 1 etc...}, 3 => {'here is some' => 1 etc...}}

== Copyright
Expand Down