Thanks Michael!
Here is my code.
It’s not beautiful, but worked fine.
<?php
$tags = get_the_tags();
if (is_array($tags)) {
foreach ($tags as $tag) {
if($tag->count > 3) { //the threshold number to show
$start = 'Tags: ';
$link = get_tag_link( $tag->term_id );
$string .= '<a href="' . $link . '">' . $tag->name . '(' . $tag->count . ')' . '</a>' . ', ';
}
}
echo rtrim($start . $string, ', ');
}
?>