Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is tagging is the best user friendly way to categorize a subject?

Is tagging is the best user friendly way to categorize a subject? An example would be the tags mechanism used in this Q/A site. (StackOverflow.com). How you would Implement categories in a best user friendly way? Or hierarchical categories are the best user friendly way to present available categories?

Is there any online store use tag to categorize product categories?

like image 884
ashraf Avatar asked Mar 06 '10 18:03

ashraf


2 Answers

What you want depends on the nature of the media being categorized.

If you're working primarily with media that is difficult to index, like images, audio, or video, then you want a loose tagging system that encourages putting as many tags as possible with each item. The more tags the merrier, because you will need to use the tags to help index the content for searching.

For something that is more easily indexed (text!), you want a much more rigid system where it may take an extra step or two to create new categories or even force users choose from pre-defined categories. You no longer need to rely on user-supplied tags for search indexing, because you can index the content directly. You are strictly doing categorization, and for categorization to have meaning you need to be sure that users are sorting things into the same categories.

Whether or not a hierarchy or tree structure is appropriate depends on how well your categories fit into a tree structure. Some things fit better than others, and many things that appear to fit a tree structure (like programming topics) turn out not to be such a good fit after all.

like image 58
Joel Coehoorn Avatar answered Nov 14 '22 23:11

Joel Coehoorn


I say yes!

Tagging provides a many to many relationship between questions and categories. It makes them loosely coupled and so gives control as well as flexibility for categorizing things.

like image 34
Mahesh Velaga Avatar answered Nov 14 '22 23:11

Mahesh Velaga