Tagged: Analytics RSS

  • Ben 11:09 on Sunday, August 29, 2010 Permalink | Reply
    Tags: Analytics, , ,   

    Old School Data Visualisation (Part 2) 

    A quick follow-up to the previous post on the power of data reduction and presentation… here is another example showing how rounding, ordering and thoughtful presentation can turn an incomprehensible grid of numbers into something most people can grok.

    It is from the same article (Ehrenberg, Feb 1992, The Problem of Numeracy, AdMap), but this time relates to television programme viewership.  The first table presents detailed correlations for responses to the question ‘I really like to watch programme x‘ across a range of programmes and two channels (ITV and BBC).

    Apart from an obvious diagonal line of 1.000 in the table (of course each programmes’ rating correlates perfectly with itself), there isn’t much else you can take out from it.  The next table renders the data a little more readable by introducing rounding to one decimal place, discarding the redundant leading zeros and disposing of the meaningless 1.000 diagonal.

    And with a little more thought to row order, spacing and the key data for presentation (i.e., do we really need channel?), we get to the following:

    Those familiar with television in the UK will now see that people who like to watch one sport programme also like to watch other sports programmes, particularly if they are ’round up’ type shows.  They don’t, however, like news or current events programmes so much.  A similar pattern occurs for current event watchers, but the programmes within that cluster have slightly lower correlations, meaning viewership is less likely to be homogeneous amongst that group.  If you are an advertiser or producer, this is useful stuff to know because it will give you an idea of the reach of, and competition around, a certain programme.  And you are more likely to understand this if the data is presented in a clear and concise way.

    _____

    ShortURL for this post: http://wp.me/pnqr9-67

     
  • Ben 16:30 on Sunday, August 15, 2010 Permalink | Reply
    Tags: Analytics, , ,   

    Old School Data Visualisation (Part 1) 

    I was talking to a friend last night about data presentation.  We were looking at an iPad ap that allows users to thumb through and drill-down into their sales data for different geographic regions.  Among other things, the ap displayed charts with smoothed trend-lines to help users get a feel for what the future might hold. Yet, in the relatively brief time I spent looking at the data it was hard to get any real sense of what the key take-outs might be.

    This will have been partly due to my lack of familiarity with the dataset; the person responsible for sales for the organisation would have  brought a wealth of historic knowledge to the data that may have enabled them to quickly see discrepancies or commonalities in the charts.  However, there was also an element of ‘too much’ information.  There is only so much we humans can hold in our short term memory before we become overwhelmed and our ability to do mental calculations or comparisons is compromised.  This is why it is critical for anyone presenting data to consider not only the level of detail required, but also how the information should be delivered for quick and clear consumption.

    Marketing scientist Andrew Ehrenberg spent a fair amount of time on these issues and was a strong advocate of data reduction (which relates to the idea that much success in research relies on the discovery of patterns in data, and that this process is aided by its presentation in simple tables).  In fact, Ehrenberg wrote a book on the subject that is freely downloadable from the EmpGens Journal.

    Here is an example of Ehrenberg’s approach.  I’ve reproduced the tables from a four page article of his in Admap from 1992 titled ‘The Problem of Numeracy‘.  First up is a table not optimised for human consumption.  Try to pick out some noteworthy patterns.

    Now try again, using a modified presentation of the same data:

    The rounding, averages and different row ordering (population size, rather than alphabet) all make it easier to quickly understand the data.  We can now see, for instance, that most regions saw a dip in Q3, that Leeds and Edinburgh have seen strong growth in Q4, and that Leeds is consistently punching above its weight in per capita sales.  We can also easily answer comparative questions like ‘how much larger was Edinburgh than Swansea over the year‘ (about 2.5x), which were much harder to do from the first table.

    People don’t often think of treating tables like other design elements in a user interface.  Yet as the example shows, they can fairly easily be tweaked to great effect.  And, when presented clearly, a table can convey more information in a short space of time than a series of charts.

     
  • Ben 9:46 on Saturday, October 31, 2009 Permalink | Reply
    Tags: Analytics, , , GPS, Mobile, Fraud Detection, Evidence-Based Policy   

    Link Post: Google GPS, Fraud Detection and PolitiScience 

    A number of interesting links came through the Twitterverse this morning, so I’m putting them here to share/remember.

    Enjoy!

    _____

    ShortURL for this post: http://wp.me/pnqr9-3g

     
  • Ben 14:23 on Sunday, October 4, 2009 Permalink | Reply
    Tags: Analytics, , , , ,   

    Music to a Data Geek’s Ears 

    “If you are looking for a career where your services will be in high demand, you should find something where you provide a scarce, complementary service to something that is getting ubiquitous and cheap. So what’s getting ubiquitous and cheap? Data. And what is complementary to data? Analysis. So my recommendation is to take lots of courses about how to manipulate and analyze data: databases, machine learning, econometrics, statistics, visualization, and so on.”  Hal Varian, Chief Economist at Google

    Me suffer from confirmation bias? Never!
    _____

    Short URL for this post: http://wp.me/pnqr9-2K

     
  • Ben 15:50 on Sunday, September 20, 2009 Permalink | Reply
    Tags: Analytics, , , ,   

    A Nifty Trick for Transforming Categorical Data 

    Categorical variables with lots of options (e.g., country of origin, occupation, postcodes) can be problematic when regression modelling; they have to be dummy coded and use many degrees of freedom, increasing the potential for model overfitting.  The typical approaches to dealing with this are to:

    • Discard the variable if it doesn’t appear it will be a good discriminator. It is sometimes hard to tell this up front when you have loads of categories.
    • Roll the categories up into larger sets based on conceptual similarity.  This can work for ordinal or geographic data, but is more difficult for purely nominal variables.  There is also the risk that you’ll ‘average away’ some of the predictive value in the variable.
    • Use a statistical technique (e.g., a decision tree) to work out groupings of categories based on their discriminative power.  This may make for groupings that are hard to explain.

    Another option I’ve recently come across is to convert the categorical variable to a metric-level variable using historic response data.  For instance, say you’ve been collecting your customer’s postcodes for a while and are looking to employ this variable in a predictive model.  Perhaps you are predicting response to a mailing offer (or something similar) which has been running for at least one learning cycle.  A potential way to deal with the ‘too many categories’ problem would be to calculate the proportion of people contacted in each postcode during prior mailings who responded to the offer.  Voilà!  You’ve now got a metric level and continuous variable to play with.  You can apply the historic response values to any new prospects you are looking to score by matching on the postcode.

    There are at least a couple of caveats to consider when attempting this.  One is that the proportion will be less robust when you have very few people in a specific category historically (e.g., rural postcodes).  In these cases you might have to do some category roll-ups first.  Another potential issue is that it assumes historic contacts were made at random, or according to some mechanism that will also be applied in future selection processes, such that you can consider the prior contacts ‘representative’ of category membership for the purposes of your modelling.  Violations of the assumption would probably require some statistical adjustment to get around.

    If anyone sees other potential issues with this approach, or has other alternatives they use to deal with problematic categorical variables, feel free to comment!

    _____

    Short URL for this post: http://wp.me/pnqr9-1R

     
  • Ben 18:32 on Monday, August 17, 2009 Permalink | Reply
    Tags: Analytics, Conversions, , , ,   

    Not All Conversions are Created Equal 

    Tim Ferris posted a Google Website Optimizer Case Study the other day showing how data-based design tweaks at Gyminee (now Daily Burn) helped them increase conversions by 20% and then another 16% on top of that.  The post presents a really nice example of how simple it is to use free tools along with good landing page design principles to generate improvements in site goal performance.  That said, I’d add a couple of things to round out the article:

    1. The performance improvement was measured in number of free trial sign-ups.  There is nothing wrong with that if Daily Burn has free sign ups as a key goal.  However, it is worth noting that the improvements in free sign-ups may have had the opposite effect on conversions to paid accounts.  One reason for this is that by reducing the possible actions on the page to one (sign up for a free trial) in the second set of changes, Daily Burn may be seeing an increase in sign-ups from tire kickers who just want to see what the ap looks like.  In the past visitors could click the ‘tour’ button to do this; now they have to go via the free trial route.   If the requirement to sign up also puts some other potential purchasers off before they get a chance to see the product, the net effect of the change may be to decrease the proportion of free trialers that go on to paid subscriptions.  One of the sites I read presented an example of exactly this issue a few weeks back; I think it was Marketing Experiments but now I can’t find the article (doh). [Update: here is a different example with a similar finding ]
    2. Here is a link to the Paradox of Choice concept Tim mentioned.  I’m not so sure the original Gyminee page was overwhelming people with choice (causing choice paralysis) as much as providing too much of an opportunity to get distracted before clicking on the sign-up button.  Ultimately it doesn’t matter; the effect of the modification was positive whatever the underlying reason for the change in behaviour!
    3. Tim didn’t specify the ‘conversion marketing best practices’  behind the design changes tested in the second half of the post.  Going by the screenshots presented, these included the use of testimonials (social proof), awards (authority), and specificity (specific facts are more persuasive).  Feel free to posts others if you spot them…

    ____

    Short URL for this post: http://wp.me/pnqr9-13

     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
esc
cancel