Skip to main content

Planning a User Guide - Part 1/5 - Audience Analysis


Creating a User Guide is in many ways similar to building software. Just like software, creating a successful manual also needs prior planning. 

Planning a User Guide is a large topic so I’ll write it as a series of eight posts - one for each planning task.

Here’s the first post on audience analysis.

Audience Analysis

A User Guide explains how to install and use the product. An effective User Guide does it in a way that is easy and clear for its readers. It considers the goals and requirements of the users. Therefore, the first planning task is to understand the target audience.

The best way to understand your users is to interview them. The interview is done to identify usage patterns and a set of attributes that will help you communicate more effectively with your target audience.

You can begin by identifying a few (let’s say five) users and interview them to understand their requirements. If you already have a few pilot or actual customers then it's best to begin with them. However, if you don’t have customers as yet, then the interviews can be done with people you already know and who might fit the profile of a typical user. Old colleagues, family, and friends are usually happy to help. You can also tap into your LinkedIn network. It might reveal interesting people who may not have crossed your mind. 

The outcome of user interviews is a set of models that will help you understand your customers. User Personas are a great way to model your target audience. Aurora Harley gives a nice definition in this article:

A persona is a fictional, yet realistic description of a typical or target user of the product. A persona is an archetype instead of an actual living human, but personas should be described as if they were real people.

In software terminology, a persona can be thought of as an abstraction of a group of people who belong to the same user type. It contains those characteristics, of the group, that are important for building a better product - in this case, the user guide. However, a persona is more than just an abstraction. It is an attempt to make the abstraction personal and realistic. A typical abstraction might describe a user in dry, statistical terms. But a persona makes the description more human, helping us to not only understand but also empathize with the user and their requirements.

Unless your software is for a very niche audience, you will most likely need multiple personas - one for each type of user. Realistically, I suggest creating about 3 - 5 personas. If you are building an enterprise software then you also need to create personas for the system admins who will install and manage the system. My suggestion is to create 2 - 3 system administrator personas in addition to user personas. Usually interviewing 2 - 3 people for each persona should be sufficient. 

From the perspective of a user guide, a typical persona would have the following details:
  • Personal details such as age, gender, and educational background.
  • Professional details such as occupation and experience.
  • Knowledge of the business domain and terminology. 
  • Needs
    • Does the user have any special needs?
    • On what device do they typically access the User Guide and the product? 
    • Does the user use this software for work or is it for personal use?
    • Any other needs the user has.
  • Goals when working with the product: speed, accuracy, thoroughness, etc.
  • A photograph of a typical user: You can photograph an actual user or pull out a stock photo that most closely resembles the details you've gathered. Having a photo may seem insignificant but it’s not. A photograph will make it easier for your team to empathize with the user.
Once ready, the user personas can be used as a reference point for making decisions related to the manual’s design and content. For example, personal details of the user will help in determining the choice of words and the tone of the manual. A User Guide written for an audience in their 60s and 70s will use a different set of words than a User Guide written for an audience primarily in their 30s. You might also want to use a larger font for the former. 

If most of the users read the manual on their mobile device then you would avoid a multi-column design. You would also avoid margin notes. 

It’s important to know how familiar users are with the business domain and terminology. This point is really important because a typical manual contains a lot of terminologies. We often assume familiarity but it’s often not the case. It’s good to know which words and concepts the users might have to struggle with so they can be included in the glossary.  

A product made for hobbyists might have a manual that explains a lot of background concepts and provides useful tips, while a manual centered around business users will be more to the point and formal. 

These are just some ways to use the information from user personas - you’ll create your own rules as you go along. The key is to ask yourself questions like:

  • Will this cover design appeal to Emily and John?
  • Will Mr. Watkins be able to read this font style? Are the margins and spacing comfortable for him?
  • Ms. Shaw does not have much time on her hands. Is the information I am writing concise enough for her?
It’s really about making it a barrier-free experience for the users.  

Finally, user personas serve as a terminology for discussions, much like design patterns do in software architecture related discussions. In software architecture discussions, using a pattern name such as ‘The Singleton Pattern’ or ‘MVC Pattern’ allows the speaker to use a name that expands into concepts that would have otherwise taken a lot of explaining. Similarly, in User Guide related discussions, a writer might say - “I think this decision will be perfect for Emily’s needs.” The user persona referenced to by “Emily” expands to all the needs described in that persona without having to mention each of them individually.

In conclusion, begin your User Guide with a planning phase to ensure that it's easy for your users to use and understand. Getting to know your target audience is the first planning step. We use User Personas to model types of users and then subsequently these personas in discussions and while writing the User Guide.

Here are three articles that you can read for more information on User Personas:

  1. How to create personas (HubSpot Academy)
  2. How to create a user persona (99 Designs)
  3. How To Create Customer Personas With Actual, Real. Life Data
In the next blog post, I will explain how to define the overall scope of the User Guide.

Comments

Popular posts from this blog

My HSQLDB schema inspection story

This is a simple story of my need to inspect the schema of an HSQLDB database for a participar FOREIGN KEY, and the interesting things I had to do to actually inspect it. I am using an HSQLDB 1.8 database in one of my web applications. The application has been developed using the Play framework , which by default uses JPA and Hibernate . A few days back, I wanted to inspect the schema which Hibernate had created for one of my model objects. I started the HSQLDB database on my local machine, and then started the database manager with the following command java -cp ./hsqldb-1.8.0.7.jar org.hsqldb.util.DatabaseManagerSwing When I tried the view the schema of my table, it showed me the columns and column types on that table, but it did not show me columns were FOREIGN KEYs. Image 1: Table schema as shown by HSQLDB's database manager I decided to search on StackOverflow and find out how I could view the full schema of the table in question. I got a few hints, and they all pointed to

Fuctional Programming Principles in Scala - Getting Started

Sometime back I registered for the Functional Programming Principles in Scala , on Coursera. I have been meaning to learn Scala from a while, but have been putting it on the back burner because of other commitments. But  when I saw this course being offered by Martin Odersky, on Coursera , I just had to enroll in it. This course is a 7 week course. I will blog my learning experience and notes here for the next seven weeks (well actually six, since the course started on Sept 18th). The first step was to install the required tools: JDK - Since this is my work machine, I already have a couple of JDK's installed SBT - SBT is the Scala Build Tool. Even though I have not looked into it in detail, it seems like a replacement for Maven. I am sure we will use it for several things, however upto now I only know about two uses for it - to submit assignments (which must be a feature added by the course team), and to start the Scala console. Installed sbt from here , and added the path

Five Reasons Why Your Product Needs an Awesome User Guide

Photo Credit: Peter Merholz ( Creative Commons 2.0 SA License ) A user guide is essentially a book-length document containing instructions for installing, using or troubleshooting a hardware or software product. A user guide can be very brief - for example, only 10 or 20 pages or it can be a full-length book of 200 pages or more. -- prismnet.com As engineers, we give a lot of importance to product design, architecture, code quality, and UX. However, when it comes to the user manual, we often only manage to pay lip service. This is not good. A usable manual is as important as usable software because it is the first line of help for the user and the first line of customer service for the organization. Any organization that prides itself on great customer service must have an awesome user manual for the product. In the spirit of listicles - here are at least five reasons why you should have an awesome user manual! Enhance User Satisfaction In my fourteen years as a