Reputation: 6608
I would like to understand the Algorithm/implementation of the tag cloud.
In tag cloud we get following tags(weight)
Now in tag cloud control only subset of the values are displayed with different font sizes. Consider a following sample space tag1(1)... tagx(2) and then few big tags tag2(4000). Now on UI i would like to show the tags (html elements with) fort size. With such a distinct sample one cannot end up showing the big 1000px font. This data needs to be processed to that I get slabs for point concentrations so that I get values say like following:
I am using ASP.NET C#. Please let me know how to achive this. I am really not good at mathematics (statistics). Please help me with this algorithm. Or link to maths/tutorial or good sample would help.
Upvotes: 7
Views: 1250
Reputation: 1853
I only say that to reduce complexity display only frequency beside tag name like here C# x 1000 . But if you want to control font size with frequency .Make slab to restrict font size.Like
Frequency Font Size
1--5 3px; 6--30 5px; 31-100 8px; 101-500 10px; 501-1000 12px; <1000 14px;(restriction in final)
I dont know about asp.net But you can easliy implement this in PHP
Upvotes: 0
Reputation: 9130
There's a downloadable O'Reilly ebook (40 something pages) called Building Tag Clouds in Perl and PHP that (from what I remember, it was a while ago) had a pretty good cover of the basics and also has (as the title implies) sample implementations in Perl and PHP.
Upvotes: 2