By mortenson on
I have created a new content, type page.
This is a dynamic page so it changes every day.
I need to create a text cloud from this particular page only, so that the number of times a word is repeated will be the cloud judgment.
I have checked tagadelic module and views cloud module but I think I cant achieve this with this modules. Node cloud module only for D5
Comments
I don't think there is a
I don't think there is a existing module that performs this task, so you need to write your own or pay someone to do it for you.
The easiest way would be to explode the page on whitespace and punctuation to an array. Then count all words the words after sorting it. Of course you would need to have some filter to filter out useless words like 'the'. This is not the most efficient method, but a quick solution. After you have a list of words with their respective counts, you can create the word-cloud.
The page is ready for
The page is ready for generating the clou, it only displays from-to destinies, for example
santiago-bogota
washingtong-texas
paris-berlin
santiago-bogota
santiago-bogota
paris-berlin
london-tokyo
Well that saves some
Well that saves some clean-up, but still needs more or less the same approach.
How is this page updated, and can't you use that data to create the cloud? Because I reckon you don't actually need the page with the separate keywords.
Any new ways to create a
Yes, I could use that also.
Any new ways to create a word cloud ?