Is there somewhere a java interface of a dynamic word / tag?

3 answers

I do not know about a good R-package for this. There are some features, such as cloud in the snippets package, and possibly other features, but nothing compared to http://wordle.net , http://tagcrowd.com/ or Many Eyes . Drew Conway did some nice things with tm + ggplot2 ; I also played with it a while ago, but it was more for playing with a cloud of 3D tags (with rgl ) than wordle.

enter image description here

There are some ongoing projects in Python or Processing that are described in detail in this question . As far as I know, Tagxedo looks great, but it does not have an API, and it relies on Silverlight.

Pierre Lindenbaum also has some Java code, see his blog post Game with Wordle Algorithm: Mesh Condition Tag Cloud .

+6
source

This is not very good, but there is an open source project (alas, in PHP), which over time fills the word with layers. This example uses the speeches of the president. http://chir.ag/projects/preztags/

0
source

Here is the one I created in Java as part of a larger project to get information from unstructured data: https://github.com/regunathb/Sift . The project "tagcloud" has all the necessary classes for creating a tag cloud and writing it to several image formats with placement.

0
source

Source: https://habr.com/ru/post/890066/


All Articles