HI I am looking for a library that'll remove stop words from text in Javascript, my end goal is to calculate tf-idf and then convert the given document into vector space, and all of this is Javascript.
Can anyone point me to a library that'll help me do that.Just a library to remove the stop words would also be great.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
I think there are no libraries for such think, you need to download those words http://www.ranks.nl/resources/stopwords.html. And then do replace as written in comments text = text.replace(stopword, "") |
|||
|
|
|
There's a Javascript Library for removing stopwords here: http://geeklad.com/remove-stop-words-in-javascript |
|||
|
|
text = text.replace(stopword, "")for each stopword? – nico Apr 12 '11 at 6:54