vote up 7 vote down star
3

Lets say i have an array like such

$artist = array("the roots","michael jackson","billy idol","more","and more","and_YET_MORE");
$count = array(5,3,9,1,1,3);

and i want to generate a tag clound that will have artist with a higher number in count be a H6 tag and the lowest being H1?

any ideas?

flag

29% accept rate

10 Answers

vote up -1 vote down

As a helper in Rails:

def tag_cloud (strings, counts)
    max = counts.max
    strings.map { |a| "<span style='font-size:#{((counts[strings.index(a)] * 4.0)/max).ceil}em'>#{a}</span> "  }
end

Call this from the view:

<%= tag_cloud($artists, $counts) %>

This outputs elements in an array that will be converted to a string in the view to ultimately render like so:

<span style='font-size:3em'>the roots</span>
<span style='font-size:2em'>michael jackson</span> 
<span style='font-size:4em'>billy idol</span> 
<span style='font-size:1em'>more</span> 
<span style='font-size:1em'>and more</span> 
<span style='font-size:2em'>and_YET_MORE</span>

It would be better to have a 'class' attribute and reference the classes in a style sheet as mentioned by Brendan above. Much better than using h1-h6 semantically and there's less style baggage with a <span>.

link|flag
vote up 2 vote down

Have used this snippet for a while, credit is prism-perfect.net. Doesnt use H tags though

<div id="tags">
<div class="title">Popular Searches</div>
<?php
// Snippet taken from [prism-perfect.net]

include "/path/to/public_html/search/settings/database.php";
include "/path/to/public_html/search/settings/conf.php";

$query = "SELECT query AS tag, COUNT(*) AS quantity
FROM sphider_query_log
WHERE results > 0
GROUP BY query
ORDER BY query ASC
LIMIT 10";

$result = mysql_query($query) or die(mysql_error());

while ($row = mysql_fetch_array($result)) {

$tags[$row['tag']] = $row['quantity'];
}

// change these font sizes if you will
$max_size = 30; // max font size in %
$min_size = 11; // min font size in %

// get the largest and smallest array values
$max_qty = max(array_values($tags));
$min_qty = min(array_values($tags));

// find the range of values
$spread = $max_qty - $min_qty;
if (0 == $spread) { // we don't want to divide by zero
$spread = 1;
}

// determine the font-size increment
// this is the increase per tag quantity (times used)
$step = ($max_size - $min_size)/($spread);

// loop through our tag array
foreach ($tags as $key => $value) {

// calculate CSS font-size
// find the $value in excess of $min_qty
// multiply by the font-size increment ($size)
// and add the $min_size set above
$size = $min_size + (($value - $min_qty) * $step);
// uncomment if you want sizes in whole %:
// $size = ceil($size);

// you'll need to put the link destination in place of the /search/search.php...
// (assuming your tag links to some sort of details page)
echo '<a href="/search/search.php?query='.$key.'&search=1" style="font-size: '.$size.'px"';
// perhaps adjust this title attribute for the things that are tagged
echo ' title="'.$value.' things tagged with '.$key.'"';
echo '>'.$key.'</a> ';
// notice the space at the end of the link
}

?>
</div>
link|flag
This seems a good approach to me. If your data is in an array just skip the database part. I'd recommend you store the artist name & count in a single associative array. To make that work with the above code use something like: $tags = array("the roots" => 5,"michael jackson" = 3,"billy idol" => 9,"madonna" => 1); I would agree don't use H tags since it messes up your semantics. Spans would be my choice. Finally, a helper exists in Zend Framework that may just do what you need. See framework.zend.com/manual/en/zend.tag.html – simonrjones Aug 6 at 8:42
sorry, no formatting in the above comment it seems! – simonrjones Aug 6 at 8:42
vote up 9 vote down

Perhaps this is a little academic and OT but hX tags are probably not the best choice for a tag cloud for reasons of document structure and all that sort of thing ...

Maybe spans or an ol with appropriate class attributes (plus some css)?

link|flag
vote up 0 vote down

Personaly I would do somthing like this:

    <?php
$data = array($rating[0] => array('word0', 'word1', 'word2'), $rating[1] => array('word3', 'word4', 'word8',...));
//assums that $rating is an array with the weight of each word so the more popular words would have a higher value in rating
usort($data); //sort the $data variable, this should give us the most popular words first
$size = '1';
foreach($data as $rank)
{
$i=0;
while($i<$count($rank))
{
echo "<h" . $size . ">" . $rank[$i] . "</h" . $size . ">";
$i++;
}
$size++;
}
?>

Assuming I'm not a complete idiot this should work. But it is untested.

link|flag
Couple of things: lose the $ in front of count in the while loop; put $size++ inside the while loop. The way you have it now $count($rank) will be a fatal error and $size will not get incremented until everything is finished. – gaoshan88 Oct 8 '08 at 20:09
vote up 0 vote down

I actually meant to mention this in my answer- the original poster specified higher frequencies in higher-number tags, but HTML uses lower numbers for more significant headings.

I wrote my code to spec. ;P

AH I see now, it seemed counter-intuitive to me that the higher the count the smaller the tag?

My mistake.

link|flag
vote up 1 vote down

kevind wrote:

@Ryan

That's correct but it actually makes the tags with the least number, larger. This code has been tested:

I actually meant to mention this in my answer- the original poster specified higher frequencies in higher-number tags, but HTML uses lower numbers for more significant headings.

I wrote my code to spec. ;P

link|flag
vote up 1 vote down

@Ryan

That's correct but it actually makes the tags with the least number, larger. This code has been tested:

$artist = array("the roots","michael jackson","billy idol","more","and more","and_YET_MORE");
$count = array(5,3,9,1,1,3);
$highest = max($count);
for ($x = 0; $x < count($artist); $x++) {
$normalized = ($highest - $count[$x]+1) / $highest;
$heading = ceil($normalized * 6); // 6 heading types
echo "<h$heading>{$artist[$x]}</h$heading>";
}
link|flag
vote up 12 vote down

Off the top of my head...

$artist = array("the roots","michael jackson","billy idol","more","and more","and_YET_MORE");
$count = array(5,3,9,1,1,3);
$highest = max($count);
for (int $x = 0; x < count($artist); $x++)
{
$normalized = $count[$x] / $highest;
$heading = ceil($normalized * 6); // 6 heading types
echo "<h".$heading.">".$artist[$x]."</h".$heading.">";
}
link|flag
vote up -1 vote down

Make an array that has the artist as key and the count as value. Then, use arsort to sort the array. Now, the interesting part is splitting the array in 6 parts.

Since it is sorted, you can get the highest element and divide it by 6. In your case: 9 / 6 = 1.5. You can then use foreach to loop through your array and divide the count by 1.5, ceil the result, and substract it from 7: 5 / 1.5 = 3,33333.... = 4, 7-4 = 3, so use h3.

I do not think that this is the optimal solution yet, but it could be something to build on.

link|flag
vote up -2 vote down

This is probably a really ugly, but what if you used those two arrays to create a hash using the artist as the key and the count as the value. Then you can work some magic to parse/sort the hash table without losing the connection between the artist and the count.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.