<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Tutorial9 &#187; User Experience Articles</title> <atom:link href="http://www.tutorial9.net/category/web-tutorials/usability/feed/" rel="self" type="application/rss+xml" /><link>http://www.tutorial9.net</link> <description>Tutorial Bliss.</description> <lastBuildDate>Thu, 18 Mar 2010 14:00:51 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.8.4</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Selecting the Right Chart Type for your Data</title><link>http://www.tutorial9.net/web-tutorials/selecting-the-right-chart-type-for-your-data/</link> <comments>http://www.tutorial9.net/web-tutorials/selecting-the-right-chart-type-for-your-data/#comments</comments> <pubDate>Wed, 30 Sep 2009 13:00:01 +0000</pubDate> <dc:creator>Sanket Nadhani</dc:creator> <category><![CDATA[User Experience Articles]]></category> <category><![CDATA[Web & Blogging Tutorials]]></category><guid
isPermaLink="false">http://www.tutorial9.net/?p=4413</guid> <description>&lt;img src="http://www.tutorial9.net/http://tutorial9.s3.amazonaws.com/uploads/2009/09/data-lead.jpg" alt="" width="600" height="260"/&gt;</description> <content:encoded><![CDATA[<p
class="important">The  world today has way too much data, but very little information. In this tutorial I&#8217;ll show you how to convert your data into powerful information by selecting the right charts for expressing them.</p><div
class="toc"><p
class="label">Quick Nav:</p><ul><li><a
href="#1">Comparison of data </a></li><li><a
href="#2">Composition of data</a></li><li><a
href="#3">Distribution of data </a></li></ul></div><p>Unless you are a data-analyst or a statistician, you will probably be using two commonly used types of data analysis: Comparison and Composition.</p><p>Comparison of data is the most common and easy to understand type of data analysis. And that makes it the perfect starting point. So let us dive in.</p><h3 id="1">Comparison of data</h3><p>Consider  the following cases:</p><ul><li>You want to compare the Quarterly Revenues of a product company over a period of 4 years.</li><li>You want to compare the total visitors of ten competing websites for the month of May.</li><li>You want to visualize the population trends of a country over a period	of 170  years.</li></ul><p>All  these are examples of comparison of data. Let us now see how we go  about deciding which chart to use for which situation.</p><h3>1) Comparing Quarterly Sales over 4 years</h3><p>We  make a note of the following points:</p><ul><li>The Revenue (in dollars) will be shown along one axis.</li><li>The time (quarter number) will be plotted along another axis.</li><li>There  	are four categories: Q1, Q2, Q3 and Q4.</li><li>Each  	category will have 4 columns for years 2006 through 2009.</li></ul><p>Since  the number of categories is quite small (less than 5) a column chart  will be apt for this case.</p><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Multi-Series-Column-Chart.jpg" alt="2D Column Chart" /></div><div
class="tip">In each set of columns we have used a progressively darker shade of the  same color; blue in this case. The progression of shades makes the sequence  (2006, 2007, 2008, 2009) apparent. Using shades of a single basic  color shows that all of them belong to the same data type.</div><h3>2) Comparison  of total visitors to 10 competing websites</h3><p>We  make notes again:</p><ul><li>The names (URLs, which are pretty long) of websites appear on one axis.</li><li>The number of visitors appear on another axis.</li><li>The number of categories is 10 (the number of websites).</li></ul><p>We  will choose a bar chart for this scenario because:</p><ul><li>A bar chart is suitable when the number of categories is higher than 8 and lower than 15.</li><li>Bar charts give you more space for long text (since the screens are wider than they are high)</li></ul><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Bar-Chart-Competing-Websites.jpg" alt="Bar Chart for showing visitors to 10 competing websites" width="506" height="358" /></div><div
class="tip">The data sets have been arranged in descending order. This makes comprehension of data much easier as your eyes follow a decreasing pattern. With the pattern, they can connect shape to value much quicker.</div><h3>3) Population  trend of a country over a period of 10 years.</h3><p>Notes, yet again:</p><ul><li>Time (years) will be plotted along the X- axis (people are used to seeing time on X-axis. Physics guys nod your heads here).</li><li>The Total Population will be plotted along the Y-axis.</li><li>The number of categories/data points is very high (much more than 20).</li></ul><p>We will choose a line chart for this plot because:</p><ul><li>The number of data points is very high and a column or bar chart will look pretty cluttered.</li><li>Our aim for this chart is not to show the maximum or the minimum population. We are trying to show the trend, that is the rate of change of population (steepness of the line) rather than the  	population itself. A line chart is best suited for showing trend-based visualization.</li></ul><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Line-Chart-Population-Trend.jpg" alt="Line Chart - Showing Population Trend of a country" width="507" height="306" /></div><p>This  chart easily shows Abracadabra&#8217;s population growth to be almost parabolic  with occasional negative spikes indicating catastrophes such as  famines, etc.</p><div
class="tip">Abracadabra is a good fictitious name to use when you can&#8217;t think of anything better.</div><p>So  far, we have talked about data visualization for comparison of data.  Next, we come to charts that depict composition of data.</p><h3 id="2">Composition of data</h3><p>Consider  the following cases:</p><ul><li>You want to plot the break-up of traffic sources to your website.</li><li>You want to plot the break-up of the visitors to your site by the duration they stayed on your site, in turn broken down on a day-wise basis.</li></ul><p>All  these are examples of composition data plots. Charts that are ideal  for this kind of data are Pie/Doughnut charts, Stacked Charts, Multi-level pie charts etc. So let&#8217;s take this case-by-case and see which chart will be the best for each case.</p><h3>1) Break-up of the visitors to your site based on traffic source</h3><ul><li>There will be 4 categories: Direct Traffic, Search Engines, Referring Sites and Others</li><li>We will plot the values in %, as we are interested in a comparative study more than the exact values.</li></ul><p>The pie chart is a good fit given the conditions above, as we need to visualize the part to whole relationship of the traffic sources.</p><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Pie-Chart-Traffic-Sources.jpg" alt="Pie Chart - Breakup of traffic by traffic sources" width="505" height="356" /></div><div
class="tip"><p>The use of pie charts is pretty debatable. So do NOT use a pie chart:</p><ul><li>If you have more than 6 categories, unless there is this one clear winner that you want to focus on.</li><li> If two or more categories have almost the same values.</li><li> To sum up a couple or more categories and then compare them to another sum.</li></ul></div><p>The pie and the doughnut chart are inter-changeable, and the choice mostly depends on your (or your client&#8217;s) taste.</p><h3>2) Break-up of the visitors to your site depending on the duration of stay</h3><ul><li>The number of visitors will be broken down as per the time they spend on the website.</li><li>We also need to compare the above statistics depending on the day of the week. So the number of visitors by duration will in turn be broken down by the day of the week</li><li>The total number of visitors to the site on every day also has to be displayed.</li></ul><p>We will use a stacked column chart for our purposes because:</p><ul><li>It can show the break-up of visits by duration and show the whole using the same data plot.</li><li>The number of categories is small &#8211; five, or seven if you want to consider weekends as well.</li></ul><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Stacked-Chart-Stay-Duration.jpg" alt="Stacked Column Chart - Breakup of visitors by time spent" width="505" height="306" /></div><p>The stacked area chart could have been considered. But it is better suited when you want to see the trend of composition, rather than being concerned with the exact quantitative values.</p><p>So  we have talked about Comparison and Composition of data. There is also another type of data analysis that combines the merits and functionality of both Comparison and  Composition into one.</p><h3 id="3">Distribution of data</h3><p>Consider the following cases:</p><ul><li>You want to plot the variation of relative humidity with temperature.</li><li>You want to plot the variation of rainfall with temperature.</li></ul><p>In both these situations there are two parameters where one depends on  another. In the first case for every temperature value (in  centigrade) there will be a corresponding value of relative humidity. The data set includes a set of such pairs of values (temperature,  RH). This is ideal for the use of a Scatter chart.</p><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Scatter-Chart-Temp-v-Humidity.jpg" alt="Scatter Chart - Relative Humidity v Temperature" width="505" height="306" /></div><p>Similarly  we will use a Scatter chart to represent the variation of  rainfall with temperature.</p><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Scatter-Chart-Rainfall-v-Temperature.jpg" alt="Scatter Chart - Rainfall vs Temperature" width="504" height="305" /></div><p>Thus,  a scatter chart is used when:</p><ul><li>There are a large number of discrete data points.</li><li>There are two variables that are inter-dependent.</li><li>If there are two or more sets of data (multi-series scatter) and you  	want to show similarity in their variations with respect to a single parameter. The common parameter is usually plotted along the horizontal axis.</li></ul><p>We have reached the last leg of our article where we will talk about a chart where every point has-not two-but three associated parameters.  Thus, it shows the inter-relationship between three variables. In  the previous example, if you wanted to plot both the relative humidity and the rainfall of a place against the temperature, you can use the Bubble chart.</p><div
class="image-container full"><img
src="http://tutorial9.s3.amazonaws.com/uploads/2009/09/data/Images/Bubble-Chart-Rain-Temperature-RH.jpg" alt="Bubble Chart" width="504" height="305" /></div><p>The chart has temperature along the horizontal axis and relative humidity  along the vertical axis. The location of the circles therefore shows the variation of RH with temperature. The radius of each circle or  bubble represents the amount of rainfall for a particular set of  {Temperature, RH}.</p><h3 align="left">The End. Or is it?</h3><p>It  is pretty difficult to have a guideline for all types of charts that soak in all kinds of data. For that a book will not be enough, let alone a tutorial. However, I have tried to cover the basic data  representations and how to classify them as one of the three types  viz, Comparison, Composition and Distribution.</p><p>The best way to select the right chart for your data is to ask yourself what you intend to analyze. Is it finding out a pattern? Is it seeing the break-up of one-complete-whole-something? Once you have your answer, your data analysis can be categorized into one of the 3 methods we just discussed. Then go ahead and plot the chart you think is the most suitable (with the help of the pointers given in the tutorial). If you are able to analyze whatever data you set out to, there you have it. If you could not, try out the other charting variations possible in that category. Sooner or later, you will strike gold.</p><p>Even though time consuming to start with, it is a very methodical approach. Once you master the art of selecting the right chart, it will serve you forever, placing powerful actionable  information in your hands.</p><p><em>This post was written with the help of <a
href="http://twitter.com/hatfullofrain">@hatfullofrain</a></em></p> ]]></content:encoded> <wfw:commentRss>http://www.tutorial9.net/web-tutorials/selecting-the-right-chart-type-for-your-data/feed/</wfw:commentRss> <slash:comments>30</slash:comments> </item> <item><title>9 Easy Usability Improvements for Blogs</title><link>http://www.tutorial9.net/web-tutorials/9-easy-usability-improvements-for-blogs/</link> <comments>http://www.tutorial9.net/web-tutorials/9-easy-usability-improvements-for-blogs/#comments</comments> <pubDate>Wed, 27 Aug 2008 14:30:12 +0000</pubDate> <dc:creator>David Leggett</dc:creator> <category><![CDATA[User Experience Articles]]></category> <category><![CDATA[Web & Blogging Tutorials]]></category><guid
isPermaLink="false">http://www.tutorial9.net/?p=1570</guid> <description>&lt;img src="http://www.tutorial9.net/http://tutorial9.s3.amazonaws.com/uploads/2008/08/improve-usability-for-blogs.jpg" alt="" width="600" height="260"/&gt;</description> <content:encoded><![CDATA[<p></p><p>One of our primary goals as designers is to constantly improve the usability of our websites and blogs.  Content, while very important, doesn&#8217;t help readers if they can&#8217;t easily get to it.  In this post, I&#8217;d like to outline several ways to quickly improve a blogs usability.</p><h3>1. Work Above the Fold</h3><p>We&#8217;ve probably all heard that statistic that viewers leave if they don&#8217;t find what they&#8217;re looking for above the fold (The view port seen on entrance without scrolling).  <em>That&#8217;s so old, right?  We&#8217;ve got scroll wheels and bigger monitors now, so that rule no longer applies to all of my very interesting content</em>.  <strong>Wrong.</strong> How are your viewers supposed to know that you have such brilliant content if they don&#8217;t see it as soon as they come to your site?  <em>Is your Blog that much better than everyone else in your niche that viewers will feel inclined to stay longer looking for what they need?</em></p><p>Even from the point where I start creating mock-ups for my Blogs, I like to have a layer in <a
href="http://www.tutorial9.net/category/photoshop/">Photoshop</a> that shows me exactly what my users will see when they land on my site.  Having your top content above the fold will ensure that you send more viewers in the right direction &#8211; rather than away.</p><h3>2. Track Your Blog&#8217;s Statistics</h3><p>You can&#8217;t really design for above the fold until you know <em>where</em> the fold is for your viewers.  For this reason (<em>and so many others</em>) it&#8217;s very important that you know more about who your viewers are, and how they behave.  Statistics and Analytics programs can get you the data you need, and they&#8217;re very easy to come by.  <a
href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> is great solution to start out with, <em>it&#8217;s free</em>, and very easy to install.</p><p>Analytics programs like these can show you what content your users find most interesting, details about your viewers capabilities (<em>screen resolution, browser, operating system, country, etc</em>), where your viewers are coming from on the web, and much more.</p><h3>3. Apply Those Statistics &#8211; Pareto&#8217;s Principle</h3><p><a
href="http://management.about.com/cs/generalmanagement/a/Pareto081202.htm" target="_blank">Pareto&#8217;s Principle</a> (<em>Or the 80/20 Rule</em>) basically states that anything in few (20%) is accountable for many (80%).  Now &#8211; that&#8217;s all very philosophical sounding, but it applies in Blog Usability too.  <em><strong>20% of the Blog is the most important to 80% of your viewers</strong>.</em>Another way of putting it: <em>Your viewers will spend their time and use 20% of your Blog, 80% of the time</em>&#8230; or perhaps a more useful way to you as the designer &#8211; <em>You should spend 80% of your time on the 20% of your Blog which viewers use most</em>.  Sure &#8211; it&#8217;s not a perfect rule, and rules are sometimes meant to be broken, but it&#8217;s a great starting point.  If you see that most of your viewers come to your blog, and are immediately attracted to a specific page, make sure you spend lots of time making that page more helpful and usable.  Even use it to direct viewers to other areas of your blog.</p><h3>4.Make Your RSS Feed Very Visible</h3><p>We&#8217;ve talked about making your most important content very visible, and the same should apply to your RSS Feed.  Don&#8217;t rely on your viewers to spend their time searching for some fancy-schmancy RSS design you put together, and don&#8217;t think that they&#8217;ll check below the fold either.  Your RSS links should be prominent, above the fold, and sticking to the <a
href="http://en.wikipedia.org/wiki/RSS_(file_format)" target="_blank">standard icon</a> <em>can</em> help.</p><h3>5.Make your Search Work Better (Wordpress Users)</h3><p>Wordpress&#8217;s search tends to suck by default.  While there aren&#8217;t any incredibly easy ways to fix that, we can at least make it suck less.  Denis Bernardy&#8217;s Search <a
href="http://www.semiologic.com/software/wp-tweaks/search-reloaded/" target="_blank">Reloaded Plugin</a> for Wordpress will at least make a few minor fixes that will list more accurate search results in a manner that makes more sense to your viewers.  Also worth noting is that most viewers expect to see a site search at the top right of your site.</p><h3>6.Put Your Pixel Real Estate to Good Use</h3><p>Don&#8217;t waste too much space on your Blog with <em>nothingness</em>.  While you should never confuse your readers with too much, it&#8217;s a good idea to put some of that white space to good use.  Try filling the gap with your most <a
href="http://alexking.org/projects/wordpress" target="_blank">popular posts</a> (as decided by your viewers), an extra search bar on the side of your blog, or extra links to your categories.  Be sure to get rid of elements that are unused based on your statistics.</p><h3>7.Show Related Content on Individual Posts</h3><p>Sometimes, Usability is a lot like <em>herding</em> sheep.  We want our viewers to act in ways that our desirable to us, so it&#8217;s our responsibility to lead them in the right direction.  We&#8217;ve given our readers direction from the home page of the blog, but what about the individual post?  <em>Give your readers somewhere to go next</em>.</p><p>A great plugin that can help you with this task is the <a
href="http://rmarsh.com/plugins/similar-posts/" target="_blank">Similar Posts</a> plugin for Wordpress.</p><h3>8.Your Links Should Make Sense</h3><p>You&#8217;re links should be easy to differentiate from the rest of your content, and should be plainly obvious as to what they do.  A link to a post should give a description or title of the post.  A link that says &#8220;<em>Comments</em>&#8221; should link to the comments of a post.  If your content is typed in black, make your links another color &#8211; and consider underlining them, or doing something else to make them stick out.</p><h3>9.Test.  Test Again.  Repeat as Needed</h3><p>Testing your site is probably one of the most important parts of improving usability.  Find a couple of friends that are interested in your niche, and give them the opportunity to see how your blog works.  After they look through it, ask them things like:</p><ul><li>What was the site about?</li><li>What was the first thing you saw?</li><li>Did you see *<em>page that you desire your viewers to see</em>*?</li><li>Was the design hard on the eyes?</li><li>What was your favorite thing about the site?</li><li>Least Favorite?</li></ul><p>In short, your objective can often times be amounted to leading your viewers in a specific direction — and more importantly, a direction that makes sense to them.  Use statistics to see how your viewers are browsing your site, and constantly make improvements to make those numbers reflect how you <em>want</em> your viewers to be browsing your site.</p><p>In the long run, that&#8217;s what Usability is really all about: <em>Directing your viewers to the parts of your site you want them to see.</em></p><p></p> ]]></content:encoded> <wfw:commentRss>http://www.tutorial9.net/web-tutorials/9-easy-usability-improvements-for-blogs/feed/</wfw:commentRss> <slash:comments>62</slash:comments> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using memcached (user agent is rejected)
Database Caching 6/14 queries in 0.014 seconds using memcached
Content Delivery Network via Amazon Web Services: S3: tutorial9.s3.amazonaws.com (user agent is rejected)

Served from: host.greycobra.com @ 2010-03-21 08:14:28 -->