what are some good tag Cloud logic that you had come up with? like fontsize = factor * percentageOfOccurance ....
|
You'll need to set a minimum size, so maybe You may want to limit the range of sizes; perhaps take the sqrt or log of percentage, but this depends on your distribution. For another technique, have a look at this blog post from poeticcode on Tag Clouds Algorithms:
|
|||
|
|
|
I'd check the occurance for every element and keep track of the "maximum" (the element with the highest count as this will be your measure). Next calculate the percentage of occurance for each element, compared to the element with the maximum (which is 100%). For instance:
Next create CSS styles for 20 / 40 / 60 / 80 / 100 percentage values and apply the correct CSS style according to the percentage. Or you could as you suggested calculate the font size. First get your max. and min and calculate the spread. ($max - $min). Your font-size increment would be the "step" - which is basically ($max - $min) / $spread. Now you can calculate your font-sizes accordingly:
Don't forget to round of your result. |
|||
|
|
|
Could write the second part to you tag cloud implementation min and max and spread Im a bit confused. |
|||
|
|