{"id":1679,"date":"2013-12-14T17:41:28","date_gmt":"2013-12-14T17:41:28","guid":{"rendered":"http:\/\/memetechnology.org\/?p=2971"},"modified":"2013-12-14T17:41:28","modified_gmt":"2013-12-14T17:41:28","slug":"using-r-in-anger","status":"publish","type":"post","link":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/","title":{"rendered":"Using R in anger"},"content":{"rendered":"<p>I&#8217;m expecting to be emailedl the link to my final exam in the Coursera statistics course this weekend, and by way of revision I&#8217;m using my own data in R for the first time.<\/p>\n<p>The first challenge is making sure my data is R &#8220;fit&#8221; &#8211; I entered it into Excel the first time, and though I made sure that even category data was entered numerically, I did some foolish things. The first of which was entering the data for the recommendation rating in catagories rather than just putting the raw score in. So I&#8217;ve just gone back to my original collected data and re-inputted the raw numbers.<\/p>\n<p>Then I needed to get the excel data into R. I like <a title=\"Yihui Xie's R blog\" href=\"http:\/\/yihui.name\/en\/2009\/09\/how-to-import-ms-excel-data-into-r\/\">this post<\/a> on that subject, which starts off \u00a0with &#8220;don&#8217;t put it into excel in the first place.&#8221; It seems the quickest way is [Ctrl]+[C] copying the relevant data in Excel, then in R entering &gt; gh &lt;- read.table(&#8220;clipboard&#8221;) lets try that.<\/p>\n<blockquote><p>Warning message:<br \/>\nIn read.table(&#8220;clipboard&#8221;) :<br \/>\nincomplete final line found by readTableHeader on &#8216;clipboard&#8217;<\/p><\/blockquote>\n<p>Oh dear, that doesn&#8217;t look good, what does the table look like in R?<\/p>\n<blockquote><p>V1 V2 V3<br \/>\n1 gh &lt;- read.table(&#8220;clipboard&#8221;)<\/p><\/blockquote>\n<p>Hmmm no. So then I use the not-lazy method, exporting the Excel sheet into a tab delimited text file. Then reading the table (remembering this time to add the argument &#8220;header = T&#8221;). Well it seems to work, but the last column (my carefully inputed actual values for recommend) isn&#8217;t there. Why? I still don&#8217;t know, having tried again and again, adding extra blank buffer columns and reordering columns. All I get is:<\/p>\n<blockquote><p>Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :<br \/>\nline 1 did not have 57 elements<\/p><\/blockquote>\n<p>So lets try a <em>third<\/em> method, exporting the excel sheet to the csv (comma separated values) file and using\u00a0read.csv(&#8220;gh.csv&#8221;, header = T) rather than read.table.<\/p>\n<p>Aha success! Though some (but not all) of the blank fields come up &#8220;NA&#8221; rather than empty. I&#8217;ll work out if I need to worry about that later.<\/p>\n<p>Lesson one learned.\u00a0&#8221;Don&#8217;t put it into excel in the first place.&#8221;<\/p>\n<p>But now I have my data in R, I can at least have a look at it by using the describe() function (as long as I have loaded the package library(sm), which I have). The table that produces tells me that some of my category date is easily identifiable as such, the &#8220;Very enjoyable&#8221; five category Likert question is full of NAs (and NaNs &#8211; don&#8217;t know what that means). Same with the \u00a0categories describing the groups that the respondents visited with, and the weather. That&#8217;s fine, I don&#8217;t need to worry about those yet. More importantly the continuous numerical data has returned a number of descriptive statistics.<\/p>\n<p>I asked a number of questions scored on a seven point Likert scale, about how much respondents agreed with statements that: the experience added to their enjoyment of the visit, and added value to their visit; \u00a0their choices changed the story; they felt an emotional impact; it was a great story; they learned about the history of site; they were inspired to learn more; and, they enjoyed listening as a group. I also asked them to score on a ten point scale how likely they were to recommend the experience to friends and family.<\/p>\n<p>You could argue that being a Likert scale, this is categorical data, but I think there&#8217;s a strong case for arguing that it is continuous, especially if you collect the data with something like<a title=\"Collecting experiential\u00a0data\" href=\"http:\/\/memetechnology.org\/2013\/11\/08\/collecting-experiential-data\/\"> QuickTap survey<\/a>. That&#8217;s not the case with other Likert scale questions, like the one I asked based on a National Trust survey question about how much they enjoyed their visit. Those five options are clearly categorical.<\/p>\n<p>The describe function shows a number of summary statistics for all the data I collected. For each question I asked, I can see (among other things):<\/p>\n<ul>\n<li>the number of respondents;<\/li>\n<li>the mean;<\/li>\n<li>the standard deviation;<\/li>\n<li>the median;<\/li>\n<li>the range;<\/li>\n<li>the skew;<\/li>\n<li>the kurtosis; and,<\/li>\n<li>the standard error.<\/li>\n<\/ul>\n<p>I got 39 responses for most questions, one person declined to answer the the question on story so I&#8217;ve only got 38 there. And only 34 answered the question on being a group (the other five came on their own).<\/p>\n<p>Looking at the means and medians, you can see that some questions (adding to enjoyment; adding value; and learning) were answered very positively &#8211; the median is the top score, 7, and the means range from 6.44 to 6.59 and nobody scores less than four. Make a histogram of these and you&#8217;ll see they are not &#8220;normal&#8221; curves. They are negatively skewed (&#8220;the skew is where there&#8217;s few&#8221;) and indeed, the describe function reports a skew of -1.72 for the &#8220;Added to my enjoyment&#8221; question.<\/p>\n<p><a href=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg\"><img class=\"alignnone size-medium wp-image-2975\" alt=\"Hist(gh$Added)\" src=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p>In contrast, the answers to the question on emotional impact are approaching something like &#8220;normal&#8221;:<\/p>\n<p><a href=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghemotion.jpeg\"><img class=\"alignnone size-medium wp-image-2977\" alt=\"Hist(gh$Emotion)\" src=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghemotion.jpeg?w=300&#038;h=300\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p>All of this might look a bit familiar, like the bar charts I got from Excel (with some wrestling to get them on WordPress) in <a title=\"Is this an insight on the Narrative\u00a0Paradox?\" href=\"http:\/\/memetechnology.org\/2013\/08\/30\/is-this-an-insight-on-the-narrative-paradox\/\">this post<\/a>. I&#8217;ll admit I&#8217;m somewhat covering old ground here, but bare with me while I get my head around this new way of working before moving on. I have to say the ease of saving these histograms into jpeg to upload onto WordPress makes me never want to see another Excel sheet again. Doubtless I will, however. Lets try an other histrogram, plotting responses to the 10 point Recommendation scale:<\/p>\n<p><a href=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghrecommend.jpeg\"><img class=\"alignnone size-medium wp-image-2978\" alt=\"Hist(gh$Recommend)\" src=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghrecommend.jpeg?w=300&#038;h=300\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p>Cool. Again, not &#8220;normal&#8221; and so I know I shouldn&#8217;t be doing what I&#8217;m about to do, but I want to see if there&#8217;s any correlation between some of the responses to the 7-point Likert questions I asked, and Recommendation. So, lets try some regression!<\/p>\n<p><a href=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/scatterregressionghrecommendghemotion.jpeg\"><img class=\"alignnone size-medium wp-image-2979\" alt=\"ScatterRegression(gh$Recommend~gh$Emotion)\" src=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/scatterregressionghrecommendghemotion.jpeg?w=300&#038;h=300\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p>So, there is some correlation. \u00a0(Remember correlation does not equal causation.) This regression\u00a0model of recommendation and reported emotional impact tells us that the predicted intercept (Recommendation with zero emotional impact) is 6.88, and the regression coefficent is about 0.49. R squared (the proportion of variance in recommendation explained by emotion impact) is about 30%, which seems reasonably chunky.<\/p>\n<p>Lets finish off with a Null Hypothesis Significance Test (NHST).<\/p>\n<p>Pearson&#8217;s product-moment correlation tells us that\u00a0t = 3.9748, degrees of freedom \u00a0= 37, \u00a0and \u00a0the p-value = 0.000314. Its that p-value is less than 0.5 which the the arbitrary number that marks the divide between the null-hypothesis being true and false. It measures the probability of my obtaining these (or more extreme) data, \u00a0given the assumption that there is no relationship between the variables. the \u00a0As my p-value is less that 0.5, and can &#8220;reject the null&#8221;. Of course I might have made a Type 1 error here.<\/p>\n<p>So what have I learned?<\/p>\n<p>First of all, I&#8217;ve learned how long this takes. I&#8217;m only about a third of the way through what at learned on the course, and the email about my final exam is due tomorrow!<\/p>\n<p>I&#8217;m also aware that I&#8217;ve &#8220;proved&#8221; a correlation between a variable with a &#8220;normal&#8221;(ish) distribution, and another with a very different distribution. My revision hasn&#8217;t got to what to do about non-normal distributions yet.<\/p>\n<p>I&#8217;ve also learned that I need more data. When I&#8217;m making a scatterplot, more dots make me <em>feel<\/em> more confident in my findings. Though I&#8217;m reminded that NHSTs are biased by sample size, so that confidence can be false!<\/p>\n<p>I also want more variance in my data. Likert scales on paper are limited, but in future I&#8217;m inclined to offer ten or eleven point scales where I can on paper, and as I discovered with the data I collected at Bodiam, touch-based sliders offer an opportunity to create 100 point scales which should discourage &#8220;clumpyness&#8221;.<\/p>\n<p>And I&#8217;m still convinced I can be cleverer with the questions, to obtain more &#8220;normal&#8221; data distribution curves.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p><br \/>  <a rel=\"nofollow\" href=\"http:\/\/feeds.wordpress.com\/1.0\/gocomments\/memetechnology.wordpress.com\/2971\/\"><img alt=\"\" border=\"0\" src=\"http:\/\/feeds.wordpress.com\/1.0\/comments\/memetechnology.wordpress.com\/2971\/\" \/><\/a> <img alt=\"\" border=\"0\" src=\"http:\/\/stats.wordpress.com\/b.gif?host=memetechnology.org&#038;blog=43249545&amp;%23038;post=2971&amp;%23038;subd=memetechnology&amp;%23038;ref=&amp;%23038;feed=1\" width=\"1\" height=\"1\" \/>","protected":false},"excerpt":{"rendered":"<p>I&rsquo;m expecting to be emailedl the link to my final exam in the Coursera statistics course this weekend, and by way of revision I&rsquo;m using my own data in R for the first time. The first challenge is making sure &hellip; <a href=\"http:\/\/memetechnology.org\/2013\/12\/14\/using-r-in-anger\/\">Continue reading <span>&rarr;<\/span><\/a><img loading=\"lazy\" decoding=\"async\" alt=\"\" border=\"0\" src=\"http:\/\/stats.wordpress.com\/b.gif?host=memetechnology.org&amp;blog=43249545&amp;post=2971&amp;subd=memetechnology&amp;ref=&amp;feed=1\" width=\"1\" height=\"1\"><\/p>\n","protected":false},"author":337,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[781],"class_list":["post-1679","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-statistics","column","threecol"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using R in anger - Archaeology Blogs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using R in anger - Archaeology Blogs\" \/>\n<meta property=\"og:description\" content=\"I&rsquo;m expecting to be emailedl the link to my final exam in the Coursera statistics course this weekend, and by way of revision I&rsquo;m using my own data in R for the first time. The first challenge is making sure &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/\" \/>\n<meta property=\"og:site_name\" content=\"Archaeology Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2013-12-14T17:41:28+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300\" \/>\n<meta name=\"author\" content=\"Matthew Tyler-Jones\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Matthew Tyler-Jones\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/\"},\"author\":{\"name\":\"Matthew Tyler-Jones\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/#\\\/schema\\\/person\\\/a61d3a83f159c463727cd087c1ce643e\"},\"headline\":\"Using R in anger\",\"datePublished\":\"2013-12-14T17:41:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/\"},\"wordCount\":1325,\"image\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/memetechnology.files.wordpress.com\\\/2013\\\/12\\\/histghadded.jpeg?w=300&#038;h=300\",\"keywords\":[\"Statistics\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/\",\"url\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/\",\"name\":\"Using R in anger - Archaeology Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/memetechnology.files.wordpress.com\\\/2013\\\/12\\\/histghadded.jpeg?w=300&#038;h=300\",\"datePublished\":\"2013-12-14T17:41:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/#\\\/schema\\\/person\\\/a61d3a83f159c463727cd087c1ce643e\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#primaryimage\",\"url\":\"http:\\\/\\\/memetechnology.files.wordpress.com\\\/2013\\\/12\\\/histghadded.jpeg?w=300&#038;h=300\",\"contentUrl\":\"http:\\\/\\\/memetechnology.files.wordpress.com\\\/2013\\\/12\\\/histghadded.jpeg?w=300&#038;h=300\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/2013\\\/12\\\/14\\\/using-r-in-anger\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using R in anger\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/#website\",\"url\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/\",\"name\":\"Archaeology Blogs\",\"description\":\"Archaeology Blogs\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/#\\\/schema\\\/person\\\/a61d3a83f159c463727cd087c1ce643e\",\"name\":\"Matthew Tyler-Jones\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b05de4152c16b059324bcceb7e15c65ec426d00af787220dcbb922248b71de61?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b05de4152c16b059324bcceb7e15c65ec426d00af787220dcbb922248b71de61?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b05de4152c16b059324bcceb7e15c65ec426d00af787220dcbb922248b71de61?s=96&d=mm&r=g\",\"caption\":\"Matthew Tyler-Jones\"},\"description\":\"I came to cultural heritage via five years working at Midland Bank when I left school. In my free time, I volunteered as a costumed interpreter at Kentwell Hall and, with re-enactment societies, at various medieval sites around the UK and France. When, one evening, a few of us said \u201cwe could make a business out of this\u201d I left my job at the bank to go to college, first to get an Art Foundation and then to Manchester Polytechnic to join an innovative course called Design for Communications Media. I specialised in Educational Media Design, with the intention of applying what I was learning to cultural heritage. During my vacations and upon graduation I worked for the nascent company my friends had started, Past Pleasures, creating immersive living history festivals at Lancaster and Tunbridge Wells, as well as projects including: an exhibition for the centenary of the Commonwealth Institute; a design for a metafictional Sherlock Holmes exhibition in Croydon; and, a game that combined real-time investment advice from 300 year-old characters at the Bank of England Museum with a digital simulation, tracking the players\u2019 investment portfolio from the founding of the bank to its tercentenary. In 1996 I helped found JMD&amp;Co, and for two years I also lectured on Heritage Tourism and Visitor Management and Interpretation modules for a Portsmouth University validated HND\\\/degree course at Farnborough Technical College. Subsequently, I enrolled in the new Distance Learning delivered Masters\u2019 degree in Museum Studies at Leicester University, where I became interested in the social use of space, particularly Bill Hillier\u2019s \u201cspace syntax,\u201d and the increasing futility of cultural heritage sites trying to tell doggedly linear stories in three-dimensional spaces. Although my dissertation explored models for mapping interpretation, and particularly learning styles, onto spaces, a satisfactory reconciliation of linear story and three-dimensional space eluded me. After graduation, I decided my time in the \u201csmall business\u201d end of cultural heritage was over for a while, and I left JMD&amp;Co to join a cultural institution, the National Trust, as a Regional Community, Learning and Volunteering Manager. I brought the first National Trust iPad into use at Batemans, where, combined with a wax cylinder record player, and the help of renowned folk singer, Jon Boden, we\u2019ve returned Rudyard Kipling\u2019s voice back into his old home. However, one of the innovations which I am most proud of is the National Trust\u2019s virtual tours. Working with a small company, and a range of disabled stakeholders, we created a touch-screen based human computer interface that could also, if required, be controlled with other input devices, and allowed visitors with a variety of disabilities to fully enjoy the virtual tour. The teams\u2019 achievement was recognised with a Jodi Award for Excellence in accessible digital media in 2008.\",\"sameAs\":[\"http:\\\/\\\/memetechnology.wordpress.com\\\/\"],\"url\":\"https:\\\/\\\/generic.wordpress.soton.ac.uk\\\/archaeology\\\/author\\\/matthew-tyler-jones\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using R in anger - Archaeology Blogs","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/","og_locale":"en_US","og_type":"article","og_title":"Using R in anger - Archaeology Blogs","og_description":"I&rsquo;m expecting to be emailedl the link to my final exam in the Coursera statistics course this weekend, and by way of revision I&rsquo;m using my own data in R for the first time. The first challenge is making sure &hellip; Continue reading &rarr;","og_url":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/","og_site_name":"Archaeology Blogs","article_published_time":"2013-12-14T17:41:28+00:00","og_image":[{"url":"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300","type":"","width":"","height":""}],"author":"Matthew Tyler-Jones","twitter_misc":{"Written by":"Matthew Tyler-Jones","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#article","isPartOf":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/"},"author":{"name":"Matthew Tyler-Jones","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/#\/schema\/person\/a61d3a83f159c463727cd087c1ce643e"},"headline":"Using R in anger","datePublished":"2013-12-14T17:41:28+00:00","mainEntityOfPage":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/"},"wordCount":1325,"image":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#primaryimage"},"thumbnailUrl":"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300","keywords":["Statistics"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/","url":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/","name":"Using R in anger - Archaeology Blogs","isPartOf":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/#website"},"primaryImageOfPage":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#primaryimage"},"image":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#primaryimage"},"thumbnailUrl":"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300","datePublished":"2013-12-14T17:41:28+00:00","author":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/#\/schema\/person\/a61d3a83f159c463727cd087c1ce643e"},"breadcrumb":{"@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#primaryimage","url":"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300","contentUrl":"http:\/\/memetechnology.files.wordpress.com\/2013\/12\/histghadded.jpeg?w=300&#038;h=300"},{"@type":"BreadcrumbList","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/2013\/12\/14\/using-r-in-anger\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/"},{"@type":"ListItem","position":2,"name":"Using R in anger"}]},{"@type":"WebSite","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/#website","url":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/","name":"Archaeology Blogs","description":"Archaeology Blogs","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/#\/schema\/person\/a61d3a83f159c463727cd087c1ce643e","name":"Matthew Tyler-Jones","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b05de4152c16b059324bcceb7e15c65ec426d00af787220dcbb922248b71de61?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b05de4152c16b059324bcceb7e15c65ec426d00af787220dcbb922248b71de61?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b05de4152c16b059324bcceb7e15c65ec426d00af787220dcbb922248b71de61?s=96&d=mm&r=g","caption":"Matthew Tyler-Jones"},"description":"I came to cultural heritage via five years working at Midland Bank when I left school. In my free time, I volunteered as a costumed interpreter at Kentwell Hall and, with re-enactment societies, at various medieval sites around the UK and France. When, one evening, a few of us said \u201cwe could make a business out of this\u201d I left my job at the bank to go to college, first to get an Art Foundation and then to Manchester Polytechnic to join an innovative course called Design for Communications Media. I specialised in Educational Media Design, with the intention of applying what I was learning to cultural heritage. During my vacations and upon graduation I worked for the nascent company my friends had started, Past Pleasures, creating immersive living history festivals at Lancaster and Tunbridge Wells, as well as projects including: an exhibition for the centenary of the Commonwealth Institute; a design for a metafictional Sherlock Holmes exhibition in Croydon; and, a game that combined real-time investment advice from 300 year-old characters at the Bank of England Museum with a digital simulation, tracking the players\u2019 investment portfolio from the founding of the bank to its tercentenary. In 1996 I helped found JMD&amp;Co, and for two years I also lectured on Heritage Tourism and Visitor Management and Interpretation modules for a Portsmouth University validated HND\/degree course at Farnborough Technical College. Subsequently, I enrolled in the new Distance Learning delivered Masters\u2019 degree in Museum Studies at Leicester University, where I became interested in the social use of space, particularly Bill Hillier\u2019s \u201cspace syntax,\u201d and the increasing futility of cultural heritage sites trying to tell doggedly linear stories in three-dimensional spaces. Although my dissertation explored models for mapping interpretation, and particularly learning styles, onto spaces, a satisfactory reconciliation of linear story and three-dimensional space eluded me. After graduation, I decided my time in the \u201csmall business\u201d end of cultural heritage was over for a while, and I left JMD&amp;Co to join a cultural institution, the National Trust, as a Regional Community, Learning and Volunteering Manager. I brought the first National Trust iPad into use at Batemans, where, combined with a wax cylinder record player, and the help of renowned folk singer, Jon Boden, we\u2019ve returned Rudyard Kipling\u2019s voice back into his old home. However, one of the innovations which I am most proud of is the National Trust\u2019s virtual tours. Working with a small company, and a range of disabled stakeholders, we created a touch-screen based human computer interface that could also, if required, be controlled with other input devices, and allowed visitors with a variety of disabilities to fully enjoy the virtual tour. The teams\u2019 achievement was recognised with a Jodi Award for Excellence in accessible digital media in 2008.","sameAs":["http:\/\/memetechnology.wordpress.com\/"],"url":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/author\/matthew-tyler-jones\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/posts\/1679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/users\/337"}],"replies":[{"embeddable":true,"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/comments?post=1679"}],"version-history":[{"count":0,"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/posts\/1679\/revisions"}],"wp:attachment":[{"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/media?parent=1679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/categories?post=1679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/generic.wordpress.soton.ac.uk\/archaeology\/wp-json\/wp\/v2\/tags?post=1679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}