Sabya
Sabya

Reputation: 11894

What is the best chart to visualize this data (number of users, number of users gained, number of users lost)

I want to represent some data visually, using a visualization component. Now I want to represent this situation in a visual way: Suppose I have an web application. I want to get an overview in a visual way about how users are reacting to it.

Say:

It is useless to draw a line chart here. Because I'll be seeing a constant line. Although I have lost 2 users and gained 2 users in Day3.

How to represent this data in a chart? The chart should give me an idea about: -

Upvotes: 3

Views: 1534

Answers (4)

Greg
Greg

Reputation: 5666

I like Adam Bellaire's suggestion. I just threw together this little sketch of what that might look like. (I prefer simple lines instead of thick bars). After sketching it out, I'm not sure how much I like it. Any thoughts?

my sketch of Adam Bellaire's suggestion

Upvotes: 2

Adam W
Adam W

Reputation: 3698

Edit: after further thinking, I think this is the best. The other options I listed seem inadequate.

A grouped bar chart like this: Grouped bar chart http://www.virtuallywiredinc.com/3D_Charts/ASPNET.JPG

With one bar for each category, number on Y axis and date on X axis.

(Image from Google search, unknown copyright)

Upvotes: 0

Adam Bellaire
Adam Bellaire

Reputation: 110489

Stacked bar. Top of the stack is new users in a day. It sits on top of (total users at day start - new users), which sits on the x-axis. Dipping below the x-axis is users lost. Thus the height above the x-axis is the actual number of users that day, and the total height of the bar (above and below the x-axis) is the total number of users before your users were lost.

Upvotes: 3

savageguy
savageguy

Reputation: 1573

Personally I would use a line for the users in a day and a bar for the number of new users/total users.

Upvotes: 0

Related Questions