Recreating Nightingale's rose diagram
Thu, 04/03/2010 - 13:32 | by richshawData visualisation has been my pursuit of choice over the past few weeks, this has involved a lot reading, trying to teach my self how to draw and eating of cake. One of the most interesting stories about graphs I've come across, involves and the diagrams she used to highlight the adverse effect of unhygienic conditions in the army.
DIY Buzz Research Howto
Mon, 15/02/2010 - 14:02 | by richshawJam, introspection & decision making
Fri, 12/02/2010 - 19:33 | by richshawImage credit: igotmebabe
Last Thursday I stumbled across an article: “Thinking Too Much: Introspection Can Reduce the Quality of Preferences and Decisions“. The article described two experiments, the first experiment concerned itself with jam (or more specifically how introspection effects our jam related decision making). During the jam experiment, participants were given the tough task of tasting different brands of strawberry jam. The experimental condition then filled out a questionnaire about why they liked or disliked the jams whilst the control condition filled out a non jam related questionnaire. Both conditions then rated how much they liked/disliked each of the jams. Finally the ratings given by the participants in each condition were compared to the ratings given by a panel of jam experts.
Content analysis tool
Tue, 26/01/2010 - 18:19 | by richshawAd tracking & Google Analytics
Tue, 29/12/2009 - 21:21 | by richshawThere are a number of methods designed to measure advertising effectiveness. One approach is to conduct surveys both pre and post the campaign and compare the results of the surveys to ascertain it's effectiveness. Sometimes participants are shown clips of TV ads and asked if they recognise them...
Methods like this have been used for a long time, but often they rely on the accuracy of participants memories.
Image annotation update
Thu, 17/12/2009 - 23:14 | by richshawCool, but er what can use it for?
I've used tools like this two ways:- To gather comments and feedback on print ads I'm testing. Where by this has formed on part of a larger research study.
Page templates for specific content types
Wed, 09/12/2009 - 14:05 | by richshawSometimes you come across a situation where you want to display a particular page template for a particular content type. I did this in the image annotation tool I hacked together the other week.
Now the problem is that Drupal doesn't recognise content type based page templates as standard, it's all node based. So Drupal will look the templates in the following order page-node-123.tpl.php < page-node.tpl.php < page.tpl.php.
The solution is to snake an extra page-CONTENT-TYPE.tpl.php into theme registry when a particular content type is loaded.....
<?php
/**
* Add a new template to our node if it's of a certain type
*/
function MODULENAME_preprocess_page(&$variables) {
// If this is a node page (not a list of nodes page) and
// the node is shown in 'view' mode rather than 'edit' or whatever.
// Switch the page template to our custom template.
if (isset($variables['node']) && (arg(2) === NULL) && (arg(0) == 'node') ) {
// If the content type of that one node is 'CONTENT_TYPE_NAME'.
if ($variables['node']->type == 'CONTENT_TYPE_NAME') {
$variables['template_file'] = 'page-CONTENT_TYPE_NAME';
}
}
//Sometimes i.e. when showing nodes in a view. It pulls the page template for the
//nodes rather than the view, I haven't figured out why. To maintain sanity we
//check that our new template isn't set when in shouldn't.
if (in_array("page-CONTENT_TYPE_NAME", $variables['template_files'])
&& !isset($variables['node'])) {
$variables['template_files'][0] = "page";
}
}
?>Using buzz research to predict the X-Factor
Sun, 06/12/2009 - 17:28 | by richshawUpdate 8/12/09
FailThe short of it
£5 on Olly to be voted off the X-Factor tonight.The long of it
If Derren Brown can predict the lottery using some of wisdom of the crowds shenanigans, surely we can predict the outcome of tonight's X-Factor with some of that buzz research stuff I've been posting about. The value of buzz research is something people talk about a lot. Is all this content we're monitoring actually telling us something useful, or it it just guff. To try and figure this out I'm going to run a bit of a pseudo-experiment.DIY Buzz research pt 2 - hard to reach places
Wed, 02/12/2009 - 20:15 | by richshawWhat are people saying about X-Factor on Facebook?
Lessons learnt visualising CHAID
Tue, 01/12/2009 - 13:34 | by richshawOne thing I've been looking at recently is data visualisation: how it's used in market research and how it can be improved. At one end of the scale you have a 'high design' approach which aims to produce the most beautiful, clear, data visualisation possible. At the other end of the scale you have a 'pragmatic design' approach - how can you teach your average person to visualise data more effectively.













