<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Indianapolis Museum of Art Blog &#187; demographics</title>
	<atom:link href="http://www.imamuseum.org/blog/tag/demographics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imamuseum.org/blog</link>
	<description>The IMA blog is a space to discuss everything related to the Indianapolis Museum of Art.</description>
	<lastBuildDate>Fri, 19 Mar 2010 14:42:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>There&#8217;s more to color than meets the eye</title>
		<link>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/</link>
		<comments>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:47:38 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[art blog]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[demographics]]></category>
		<category><![CDATA[Ed Bachta]]></category>
		<category><![CDATA[ima]]></category>
		<category><![CDATA[IMA Dashboard]]></category>
		<category><![CDATA[Indianapolis Museum of Art]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[Museum Blog]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[visualization]]></category>
		<category><![CDATA[zip codes]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/?p=3538</guid>
		<description><![CDATA[It has come to my attention that the tweets are out of the bag about the new interactive admissions map on the IMA dashboard. The map is a mashup of our admissions data using the Google Maps API and a zip code demographics resource called ZIPskinny. I thought that I would take some time today [...]]]></description>
			<content:encoded><![CDATA[<p>It has come to my attention that the tweets are out of the bag about the new <a href="http://dashboard.imamuseum.org/series/Admissions+Map" target="_blank">interactive admissions map</a> on the IMA dashboard. The map is a <a href="http://en.wikipedia.org/wiki/Mashup_(web_application_hybrid)" target="_blank">mashup</a> of our admissions data using the <a href="http://code.google.com/apis/maps/" target="_blank">Google Maps API</a> and a zip code demographics resource called <a href="http://zipskinny.com/" target="_blank">ZIPskinny</a>. I thought that I would take some time today to discuss the art and science of colormap selection that went into developing this visualization.</p>
<p style="text-align: center;"><a href="http://dashboard.imamuseum.org/series/Admissions+Map"><img class="size-medium wp-image-3540 aligncenter" title="Admissions Map" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-299x300.png" alt="Admissions Map" width="299" height="300" /></a></p>
<p><span id="more-3538"></span></p>
<p>First, a quick overview of some technical bits. The user can select a range of dates from the map interface, and a new set of markers is rendered after an AJAX query to the backend PHP code, which requests the data from our database and aggregates it at the zip code and state level. The decision to do this two level aggregation was based on the performance hit that would be taken in trying to render on the order of 7000 icons for a year&#8217;s worth of data on a nationwide map. The <a href="http://code.google.com/apis/maps/documentation/reference.html#GMarkerManager" target="_blank">MarkerManager</a> class (which used to be part of the core Google Maps API) is used to display one set of icons when zoomed inside of what might be called &#8220;state level&#8221; and another set when zoomed out further. This adds a bit of extra complexity to our colormap choice.</p>
<p>There are a number of ways that this data could have been mapped into visual symbols. The size or shape of the glyphs could be related to the number of admissions, for example. The method that we are using maps the number of admissions to color (when this mapping is stored, it is called a colormap). The particular mapping that we use is important, because some mappings are better than others for certain tasks. For the markers on the map, we use a colormap that smoothly transitions from a blue at the low end to a red at the high end. The particular choice of blue to red leverages our cultural understanding of blue as &#8220;cold&#8221; and red as &#8220;hot&#8221; (note that sometimes colormap choice depends on cultural interpretation), a metaphor which works well as a representation of low vs. high admission rates. The combination of these two choices allows us to understand the general trends in the data without needing to refer back to the legend frequently. The drawback is that it is a bit more difficult to compare the value of two individual markers than it would be if we had picked a colormap of more distinct hues such as {red, orange, yellow, green, blue, purple}. We tried to make it easier for the viewer to make comparisons by limiting the number of colors in our legend.</p>
<p>The next important choice is how exactly to map the number of admissions to a particular color. To do this well, an understanding of the distribution of the data is necessary. Intuitively, we would expect that there will be high admissions numbers for the zip codes closest to the museum, and the trend will be toward increasingly lower admissions from more distant zip codes, and likely there will be many zip codes with very low, but non-zero admissions numbers. The best way to look at this objectively is with a <a href="http://en.wikipedia.org/wiki/Histogram" target="_blank">histogram</a>. I will take a number of approaches with the data from the year 2008, for which the highest raw admission count for a zip code was 12,375 (during the aggregation, 9 digit zip codes are merged into 5 digit zip codes, resulting in slightly higher numbers in some instances), out of 6806 zip codes.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3545" title="Linear" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear-300x204.png" alt="Linear histogram" width="300" height="204" /></p>
<p>This first histogram segments the zip codes into buckets in a linear fashion, with each bucket representing 10% of 12,375. As you can see, the vast majority of the zip codes end up in the first bucket. If we used 10 colors with this linear mapping, almost all of the glyphs would be blue. It would be great for identifying and comparing the few zip codes that have very high admission, but a lot of subtlety in the big picture would be lost.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3547" title="Linear with upper limit" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear_clamp-300x204.png" alt="Linear with upper limit" width="300" height="204" /></p>
<p>This histogram also uses a linear segmentation, but with an upper limit (or clamp). Any zip code with 10 admissions or more are put into the red bucket. This would be fine for comparing admissions from distant zip codes, but we wouldn&#8217;t be able to distinguish visually between admissions from zip codes around Indianapolis.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3548" title="Logarithmic" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_log-300x204.png" alt="Logarithmic" width="300" height="204" /></p>
<p>This is where the beauty of <a href="http://en.wikipedia.org/wiki/Logarithm" target="_blank">logarithms</a> comes to the rescue. Let&#8217;s use our example to walk through the process. First we determine the logarithm of our maximum number, 12375, in base 2 (working in base 2 is very efficient for computers). The result is 13.59. The highest bucket represents 12375 in the real world, and 13.59 in exponent-land. Each bucket represents a tenth of 13.57 in exponent-land, just as in our first histogram each bucket represented a tenth of 12375. We then simply derive the numbers that each bucket represents in the real world; 2 to the 1.359th power equals 3 (when represented as a whole number), for example. These whole numbers in the real world are then used to put the zip codes in the proper bins.</p>
<p>The result is that we have teased out more meaning to bestow upon our colors. There are still thousands of zip codes in those blue buckets, but they are the ones that are scattered across the nation on our map, so here we are aided by spatial distribution. In the red zone, there are dozens of zip codes in each bucket, and this is just what we want to be able to analyze the subtleties around Indianapolis where the icons are more spatially dense. It also turns out that this trend is pretty much independent of the date range, and the colormap still works out well at the state level.</p>
<p>On the actual map we use eight icons rather than ten to reduce clutter in the legend, but the algorithm is the same.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-3543" title="ZIPskinny demographics" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/zipskinny.png" alt="ZIPskinny demographics" width="276" height="311" /></p>
<p>You might notice that we use a different type of colormap in the demographic windows. We actually tried using a smooth colormap for this data for the more linear demographics (Income, Age, etc.). The problem was that it was then very difficult to visually relate a particular shade of blue or green to a particular age or income level, which would almost certainly lead to eye strain and headaches. So here we used a more rainbow-like colormap to make that analysis easier.</p>
<p>In summary, colormap selection is a complex process involving aspects of mathematics, design, and the nature of the dataset. It&#8217;s one of those areas where art and science come together and the best practices of each can lead to successful communication of concepts and beautiful representations of data.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/&amp;title=There%27s+more+to+color+than+meets+the+eye" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/&amp;title=There%27s+more+to+color+than+meets+the+eye" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/&amp;title=There%27s+more+to+color+than+meets+the+eye" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/&amp;t=There%27s+more+to+color+than+meets+the+eye" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=There%27s+more+to+color+than+meets+the+eye+-+http://b2l.me/fcyge+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/&amp;title=There%27s+more+to+color+than+meets+the+eye&amp;summary=It%20has%20come%20to%20my%20attention%20that%20the%20tweets%20are%20out%20of%20the%20bag%20about%20the%20new%20interactive%20admissions%20map%20on%20the%20IMA%20dashboard.%20The%20map%20is%20a%20mashup%20of%20our%20admissions%20data%20using%20the%20Google%20Maps%20API%20and%20a%20zip%20code%20demographics%20resource%20called%20ZIPskinny.%20I%20thought%20that%20I%20would%20take%20some%20time%20today%20to%20dis&amp;source=Indianapolis Museum of Art Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=There%27s+more+to+color+than+meets+the+eye&amp;link=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.imamuseum.org%2Fblog%2F2009%2F03%2F03%2Ftheres-more-to-color-than-meets-the-eye%2F&amp;t=There%27s+more+to+color+than+meets+the+eye" rel="nofollow" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/&amp;n=There%27s+more+to+color+than+meets+the+eye&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<enclosure url='http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-150x150.png' length ='44372'  type='image/jpg' />	</item>
		<item>
		<title>Survey Results: imamuseum.org</title>
		<link>http://www.imamuseum.org/blog/2009/02/10/survey-results/</link>
		<comments>http://www.imamuseum.org/blog/2009/02/10/survey-results/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 11:00:30 +0000</pubDate>
		<dc:creator>Rob Stein</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[demographics]]></category>
		<category><![CDATA[graphs and charts]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[survey]]></category>
		<category><![CDATA[user-experience]]></category>
		<category><![CDATA[user-personas]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/?p=3141</guid>
		<description><![CDATA[For those of you who are regular blog readers, you&#8217;ll probably remember a post from earlier this year where we talked a little bit about user personas and how we use them at the IMA to try and improve the ways we produce web content.  In that post, we asked for help in taking a survey [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who are regular blog readers, you&#8217;ll probably remember a post from earlier this year where we talked a little bit about <a title="Blog Readers: Speak Up and Be Counted!" href="http://www.imamuseum.org/blog/2009/01/06/blog-readers-speak-up-and-be-counted/">user personas and how we use them </a>at the IMA to try and improve the ways we produce web content.  In that post, we asked for help in taking a survey that would refresh the information we have about our online audience.  I promised that we&#8217;d share results with you on how things went and what we&#8217;re learning.  Never one to shirk on a promise, here are some of the results on that survey&#8230;  some pretty interesting bits in here!</p>
<p>You can find a lot more graphs from the survey results in the rest of this post, but I thought it would be interested to just pull out a few interesting stats for you up front.</p>
<h2>Stats Quick-Hit:</h2>
<ul>
<li><strong>480</strong> People took the survey between <strong>12/22/2009</strong> and <strong>2/9/2009</strong> (our web traffic during that time included <strong>113,000</strong> unique visitors and <strong>450,000</strong> pages served)</li>
<li>Almost <strong>90%</strong> of people who took the survey were satisfied or very satisfied with their experience on imamuseum.org</li>
<li>The average visitor is <strong>Female</strong> (67%) and between <strong>25-34 year old.</strong></li>
<li>More than <strong>55%</strong> of website visitors use Facebook! Guess keeping the <a title="IMA's Facebook Page" href="http://www.facebook.com/pages/Indianapolis-IN/Indianapolis-Museum-of-Art/7575906611">IMA&#8217;s facebook page </a>flush with content is a good idea!</li>
<li>Sadly <strong>51%</strong> of survey-takers <strong>Never Comment on Blogs</strong> (c&#8217;mon&#8230; poke us a little, we don&#8217;t bite!)</li>
<li>Survey-takers were overwhelmingly <strong>Caucasian</strong>. Our real attendance through the doors of the museum is different than this, so it seems like we need to do a better job of reaching some different audiences.</li>
</ul>
<p>We&#8217;ll be contacting the lucky winner of the iPod touch this week and sending out the love to them!  Thanks to everyone for helping us with the survey!  We&#8217;ll be back in touch as we put together a new set of user personas to use for some upcoming web work.</p>
<p>In the mean time, enjoy sifting through our data for us.  If you see anything interesting here, be sure to be one of those <strong>49%</strong> who do comment on blogs, and Let Us Know!  We&#8217;re happy to answer any questions you ask!</p>
<p><img class="aligncenter size-full wp-image-3143" title="11" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/11.jpg" alt="11" width="495" height="407" /></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/21.jpg"><span id="more-3141"></span><img class="aligncenter size-full wp-image-3144" title="21" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/21.jpg" alt="21" width="495" height="288" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/31.jpg"><img class="aligncenter size-full wp-image-3145" title="31" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/31.jpg" alt="31" width="495" height="445" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/41.jpg"><img class="aligncenter size-full wp-image-3146" title="41" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/41.jpg" alt="41" width="495" height="336" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/51.jpg"><img class="aligncenter size-full wp-image-3147" title="51" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/51.jpg" alt="51" width="495" height="896" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/61.jpg"><img class="aligncenter size-full wp-image-3148" title="61" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/61.jpg" alt="61" width="495" height="301" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/71.jpg"><img class="aligncenter size-full wp-image-3149" title="71" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/71.jpg" alt="71" width="495" height="301" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/81.jpg"><img class="aligncenter size-full wp-image-3150" title="81" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/81.jpg" alt="81" width="495" height="371" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/91.jpg"><img class="aligncenter size-full wp-image-3151" title="91" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/91.jpg" alt="91" width="495" height="231" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/10.jpg"><img class="aligncenter size-full wp-image-3152" title="10" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/10.jpg" alt="10" width="495" height="513" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/111.jpg"><img class="aligncenter size-full wp-image-3153" title="111" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/111.jpg" alt="111" width="495" height="231" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/12.jpg"><img class="aligncenter size-full wp-image-3154" title="12" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/12.jpg" alt="12" width="495" height="266" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/13.jpg"><img class="aligncenter size-full wp-image-3155" title="13" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/13.jpg" alt="13" width="495" height="476" /></a></p>
<p><a href="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/14.jpg"><img class="aligncenter size-full wp-image-3156" title="14" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/14.jpg" alt="14" width="495" height="371" /></a></p>
<p><img class="aligncenter size-full wp-image-3142" title="15" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/02/15.jpg" alt="15" width="495" height="480" /></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.imamuseum.org/blog/2009/02/10/survey-results/&amp;title=Survey+Results%3A+imamuseum.org" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.imamuseum.org/blog/2009/02/10/survey-results/&amp;title=Survey+Results%3A+imamuseum.org" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.imamuseum.org/blog/2009/02/10/survey-results/&amp;title=Survey+Results%3A+imamuseum.org" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.imamuseum.org/blog/2009/02/10/survey-results/&amp;t=Survey+Results%3A+imamuseum.org" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Survey+Results%3A+imamuseum.org+-+http://b2l.me/fcrjv+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.imamuseum.org/blog/2009/02/10/survey-results/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.imamuseum.org/blog/2009/02/10/survey-results/&amp;title=Survey+Results%3A+imamuseum.org&amp;summary=For%20those%20of%20you%20who%20are%20regular%20blog%20readers%2C%20you%27ll%20probably%20remember%C2%A0a%20post%20from%20earlier%20this%20year%20where%20we%20talked%20a%20little%20bit%20about%20user%20personas%20and%20how%20we%20use%20them%20at%20the%20IMA%20to%20try%20and%20improve%20the%20ways%20we%20produce%20web%20content.%C2%A0%20In%20that%20post%2C%20we%20asked%20for%20help%20in%20taking%20a%20survey%20that%20would%20r&amp;source=Indianapolis Museum of Art Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Survey+Results%3A+imamuseum.org&amp;link=http://www.imamuseum.org/blog/2009/02/10/survey-results/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.imamuseum.org%2Fblog%2F2009%2F02%2F10%2Fsurvey-results%2F&amp;t=Survey+Results%3A+imamuseum.org" rel="nofollow" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.imamuseum.org/blog/2009/02/10/survey-results/&amp;n=Survey+Results%3A+imamuseum.org&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2009/02/10/survey-results/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<enclosure url='http://www.imamuseum.org/blog/wp-content/uploads/2009/02/15-150x150.jpg' length ='7232'  type='image/jpg' />	</item>
		<item>
		<title>You&#8217;ve got Mail</title>
		<link>http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/</link>
		<comments>http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 19:23:07 +0000</pubDate>
		<dc:creator>Meg Liffick</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[demographics]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[enewsletters]]></category>
		<category><![CDATA[Jerry Maguire]]></category>
		<category><![CDATA[preference]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/</guid>
		<description><![CDATA[When I was a junior in  high school we got the internet at home . Every night while watching tv, I would check my email. After 5 minutes of whistling and whining while our PC attempted a dial-up connection, I would hear the computer exclaim  &#8220;You&#8217;ve Got Mail!&#8221; WOW! Email is amazing I [...]]]></description>
			<content:encoded><![CDATA[<p>When I was a junior in  high school we got the internet at home . Every night while watching tv, I would check my email. After 5 minutes of whistling and whining while our PC attempted a dial-up connection, I would hear the computer exclaim  &#8220;You&#8217;ve Got Mail!&#8221; WOW! Email is amazing I remember thinking. It was so fun and new that even SPAM email was okay because I like to hear the computer was greet me in such an enthusiastic way. Just knowing that there was something waiting for me in the inbox made me happy.<a href="http://www.imamuseum.org/sites/default/modules/ima/enews/subscribe_form.php" title="enews3.JPG"><img src="http://www.imamuseum.org/blog/wp-content/uploads/2008/02/enews3.JPG" alt="enews3.JPG" align="right" hspace="15" vspace="15" /></a></p>
<p><!--[if gte vml 1]><v:shapetype id="_x0000_t75"<br />
<v:stroke joinstyle="miter"/>  <v:formulas>   <v:f eqn="if lineDrawn pixelLineWidth 0"/>   <v:f eqn="sum @0 1 0"/>   <v:f eqn="sum 0 0 @1"/>   <v:f eqn="prod @2 1 2"/>   <v:f eqn="prod @3 21600 pixelWidth"/>   <v:f eqn="prod @3 21600 pixelHeight"/>   <v:f eqn="sum @0 0 1"/>   <v:f eqn="prod @6 1 2"/>   <v:f eqn="prod @7 21600 pixelWidth"/>   <v:f eqn="sum @8 21600 0"/>   <v:f eqn="prod @7 21600 pixelHeight"/>   <v:f eqn="sum @10 21600 0"/>  </v:formulas>  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>  <o:lock v:ext="edit" aspectratio="t"/> </v:shapetype><v:shape id="_x0000_i1025" \type="#_x0000_t75" style='width:6in;  height:308.25pt'>  <v:imagedata src="file:///C:\DOCUME~1\mliffick\LOCALS~1\Temp\msohtml1\01\clip_image001.jpg"   o:title="MCj03854290000[1]"/> </v:shape><![endif]--></p>
<p>Email has certainly evolved in the last 10 years. I now receive upwards of 100 emails a day. With that many messages streaming into my inbox morning, noon and night, I no longer have the same tolerance for junk mail that I once did. I don&#8217;t have time to sort through SPAM. I  don&#8217;t even have time to read eNewsletters that I have signed up for. I just can&#8217;t spend my time sorting through long eNewsletters looking for information that might interest me.I&#8217;m not saying that eNewsletters are useless. I&#8217;m pretty sure that I&#8217;d read them if they interested me, but they typically don&#8217;t&#8230;not even from organizations that I adore. Instead, I think that marketers, like myself, need to attempt to engage audiences through email in more unique and perhaps, direct ways.</p>
<p>In recent months, the IMA has tackled how to make our eNews more interesting, exciting, and interactive. We&#8217;ve included more imagery, more links to the Web sites, more calls to action, and more videos. We want our subscribers to look forward to receiving IMA eNews. We want subscribers to feel the same excitement at seeing an email from the IMA that I felt years ago when I heard the phrase &#8220;You&#8217;ve Got Mail.&#8221;<span id="more-110"></span></p>
<p>The greatest challenge  is actually one of our greatest strengths as an organization: diversity. Our eNews subscribers are diverse in their demographics and interests.  Some folks geek out about contemporary art, others get excited for horticulture. We have die-hard art-film-only fans and die-hard Summer Nights blockbuster movie fans. We have 80-year-old retirees  and 20-year-old college students. How do we get everyone equally excited by the same email?</p>
<p>Our new enewsletter software has provided us with the solution &#8211; Dynamic Content. Based on preferences that our subscribers indicate in their individual eNews profile, we can tailor our message. If a person has a specific interest in family programs, they may receive additional information about<a href="http://www.imamuseum.org/calendar/onprocessionfamilysat"> IMA&#8217;s Family Saturdays</a>.  If they indicate a preference for film, we might include a <em>New York Time&#8217;s</em> review of a featured film in addition to the typical calendar listing. In other words, the eNewsletter you receive will not be the same as the eNewsletter your neighbor receives. Everyone receives the same key messages, but some folks will receive more information tailored just for them.  Consider us the Burger King of eCommunicators &#8211; &#8220;Have it your way!&#8221;</p>
<p>The IMA&#8217;s monthly eNews now has over 12,000 subscribers. Our goal is to reach 20,000 by the end of the year. More importantly, I hope to increase the percentage of subscribers that open our emails (our software tracks that info.). The open rate of our emails will be a direct indicator of the subscriber&#8217;s level of interest in and excitement for the content.</p>
<p><strong>So in the words of Jerry Maguire: &#8220;Help me, help you.&#8221;</strong></p>
<ul>
<li><strong><a href="http://www.imamuseum.org/sites/default/modules/ima/enews/subscribe_form.php">I</a><a href="http://www.imamuseum.org/sites/default/modules/ima/enews/subscribe_form.php">f you ARE NOT already a subscriber to our eNews you can sign up by clicking this link. </a></strong>We&#8217;ll send you a monthly letter highlighting the latest happenings at the Museum as well as special invites and discounts.</li>
<li><strong>If you ARE a subscriber: </strong>Next time you receive an eNewsletter (March 3) click the link at the very bottom of the email that says &#8220;update contact information.&#8221;  That will lead you to your own profile where you will be able to tell us your preferences so that we can use dynamic content to tailor your enews just for you.</li>
<li><strong>Finally, </strong>if you have ideas for how we can improve our eNews, please respond to this blog. I&#8217;d love to hear what your favorite eNewsletters are and why.</li>
</ul>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/&amp;title=You%27ve+got+Mail" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/&amp;title=You%27ve+got+Mail" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/&amp;title=You%27ve+got+Mail" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/&amp;t=You%27ve+got+Mail" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=You%27ve+got+Mail+-+http://b2l.me/fd8pq+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/&amp;title=You%27ve+got+Mail&amp;summary=When%20I%20was%20a%20junior%20in%20%20high%20school%20we%20got%20the%20internet%20at%20home%20.%20Every%20night%20while%20watching%20tv%2C%20I%20would%20check%20my%20email.%20After%205%20minutes%20of%20whistling%20and%20whining%20while%20our%20PC%20attempted%20a%20dial-up%20connection%2C%20I%20would%20hear%20the%20computer%20exclaim%20%20%22You%27ve%20Got%20Mail%21%22%20WOW%21%20Email%20is%20amazing%20I%20remember%20thinki&amp;source=Indianapolis Museum of Art Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=You%27ve+got+Mail&amp;link=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.imamuseum.org%2Fblog%2F2008%2F02%2F28%2Fyouve-got-mail%2F&amp;t=You%27ve+got+Mail" rel="nofollow" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/&amp;n=You%27ve+got+Mail&amp;pli=1" rel="nofollow" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2008/02/28/youve-got-mail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<enclosure url='http://www.imamuseum.org/blog/wp-content/uploads/2008/02/enews.JPG' length ='2514'  type='image/jpg' />	</item>
	</channel>
</rss>
