选择标签云的字体大小 (rails3)

发布于 2024-11-06 13:06:48 字数 512 浏览 6 评论 0原文

我想根据评级设置标签的字体大小。这就是我的样本评级:

206 82 25 24 25 19 8 5 0 3 2 1 6 1 1 0 32 6 3 -1 112 31 6 8 2 24 18 2 2 1
1 1 2 6 67 35 37 25 0 1 7 8 2 3 0 1 2 1 -2 8 19 -2 1 1 -3 -4 6 1 1 8 11 3
1 3 1 2 5 1 0 1 1 2 2 2 1 2 2 1 1 1 1 1 0 1 1 2 1 2 1 1 0 1 1 2 1 1 1 1 1
1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 -1 0 1 -1 -1 1 -1 -1 0 -5
-1 2 2

我尝试使用 k-means 聚类 (gem)但我似乎无法选择正确的质心数量,因为我的评级因情况而异。另外,我不确定要使用什么字体范围。最好的方法是什么?

I would like to set font sizes for tags based on rating. This is what my sample ratings look like:

206 82 25 24 25 19 8 5 0 3 2 1 6 1 1 0 32 6 3 -1 112 31 6 8 2 24 18 2 2 1
1 1 2 6 67 35 37 25 0 1 7 8 2 3 0 1 2 1 -2 8 19 -2 1 1 -3 -4 6 1 1 8 11 3
1 3 1 2 5 1 0 1 1 2 2 2 1 2 2 1 1 1 1 1 0 1 1 2 1 2 1 1 0 1 1 2 1 1 1 1 1
1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 -1 0 1 -1 -1 1 -1 -1 0 -5
-1 2 2

I've tried using k-means clustering (gem) but I can't seem to pick the right number of centroids because my ratings vary from case to case. Also, I'm not sure what font range to use. What's the best way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅哥哥的热头脑 2024-11-13 13:06:48

在这里,您将找到一种基于每个标签出现次数使用对数缩放的字体大小算法:
http://blogs.dekoh.com/dev/2007/10/29/choosing-a-good-font-size-variation-algorithm-for-your-tag-cloud/

Here you will find an algorithm for font sizes using logarithmic scaling based on the number of occurrences of each tag:
http://blogs.dekoh.com/dev/2007/10/29/choosing-a-good-font-size-variation-algorithm-for-your-tag-cloud/

等数载,海棠开 2024-11-13 13:06:48

尝试 i2ui 解决此问题:

  1. 定义字体范围。
  2. 设置标签的费率。

    > Word1 Word2 Word3 Word4

演示:http://jsfiddle.net/x4558/

Try i2ui for this issue:

  1. Define font range.
  2. Set up the rates for tags.

    <div data-i2="css:[{fontSize:'8px'},{fontSize:'25px'}]">
        <span data-i2="rate:1">Word1</span>
        <span data-i2="rate:82">Word2</span>
        <span data-i2="rate:-5">Word3</span>
        <span data-i2="rate:12">Word4</span>
    </div>
    

Demo: http://jsfiddle.net/x4558/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文