<?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>AgilOne &#124; Cloud-Based Predictive Business Analytics</title>
	<atom:link href="http://www.agilone.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.agilone.com</link>
	<description>Powering Decisions</description>
	<lastBuildDate>Tue, 21 May 2013 22:11:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Data Clustering? don&#8217;t worry about the algorithm.</title>
		<link>http://www.agilone.com/email-marketing/data-clustering-dont-worry-about-the-algorithm/</link>
		<comments>http://www.agilone.com/email-marketing/data-clustering-dont-worry-about-the-algorithm/#comments</comments>
		<pubDate>Tue, 07 May 2013 21:23:00 +0000</pubDate>
		<dc:creator>Jari Koister</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/147389/73021854-5678-4823-a679-e0d9aba808dd</guid>
		<description><![CDATA[We are constantly pushing to improve our underlying algorithms and make them as adaptive as possible. Taking a step back, our problem generally is to fit classes of models and algorithms to customer data sets of varying data quality. In addition, we need to automate this so that we can scale delivery of our offerings [...]]]></description>
			<content:encoded><![CDATA[<p>We are constantly pushing to improve our underlying algorithms and make them as adaptive as possible. Taking a step back, our problem generally is to fit classes of models and algorithms to customer data sets of varying data quality. In addition, we need to automate this so that we can scale delivery of our offerings from a business perspective.</p>
<p>This high-level business goal boils down to a number of technical requirements. It means we need to find ways of automatically evaluating results based on customer data and adaptations, and we need to do this in many different contexts.</p>
<p>One of our engineers, Gianmario Spacagana<a href="#_ftn1" title="">[1]</a> took a fresh look at how to tune clustering algorithms. In this blog post, I will briefly introduce validation of clustering algorithms so that you can later more easily appreciate and understand Gianmario&#8217;s upcoming blog post.</p>
<p>The American writer Mark Russell once said &#8220;The scientific theory I like best is that the rings of Saturn are composed entirely of lost airline luggage.&#8221; I believe many developers and marketers feel just as lost when exposed to some supposedly great clustering. That is, it is very difficult to evaluate supposed optimal data clustering without understanding some basic concepts about how to evaluate and dissect clustering results. Lacking at least apprentice cluster validation&nbsp; knowledge, confirming or disapproving an assertion of optimal data clustering is difficult and becomes more of a leap of faith than a reasoned judgment. I will attempt to give you enough information to ask the right questions.</p>
<p><img src="http://www.agilone.com/wp-content/uploads/ringsofsaturn.jpg" alt="" title="ringsofsaturn" width="508" height="398" class="aligncenter size-full wp-image-4412" /></p>
<p>Clustering involves grouping individuals in a population so that individuals in the same cluster share some properties of interest. Algorithmically, the goal of a clustering algorithm is to minimize or maximize some function related to the individuals in the same cluster. We call this the <em>objective function</em>. Frequently, we think of it as some type of distance between the individuals in a population. For example, let&#8217;s say we group customers based on their lifetime value. Once we have predicted the lifetime value for each customer we can use this to group customers based on these values and potentially other values such as gender, age etc. In addition to formulating an objective function, it is key for clustering that you pick the appropriate values related to the individuals to consider in your clustering. These values are often called the <em>features</em>.</p>
<p>There are many different algorithms for actually performing the clustering. Clustering algorithms are potentially very process intensive and the complexity grows quickly with the size of the data set. Each algorithm is attempting to deal with the complexity in a different way.&nbsp; We will not delve into these methodological details, but if you are looking for a detailed technical survey of them, you can start with this paper by Jain et al.<a href="#_ftn2" title="">[2]</a></p>
<p>One common technique in clustering is to use some kind of heuristic that allows the algorithm to reduce the number of calculations. As an example, the K-MEANS algorithm guesses clusters as a starting point. It then uses this guess to reduce the computations, while hoping to converge on an adequate clustering by iterating and moving individuals between clusters as the structure evolves.</p>
<p>The key question I&#8217;d like to explore is how we can determine if a clustering is valid or not. The procedure of evaluating the result of a clustering algorithm is called <em>cluster validity.</em> There are three different perspectives on cluster validation: <em>external</em>, <em>internal</em> and <em>relative</em>. <em>External</em> involves comparing the result to some external pre-defined structure that reflects an intuition about what should characterize a cluster. It could be as simple as eying the cluster or it could be more sophisticated, using pre-labeled data.</p>
<p><em>Internal</em> validation refers to some internal properties of the clustering. <em>Compactness</em> is one criterion, and it requires that clustered individuals be as close to each other as possible given an objective function. <em>Separation</em> is another criterion, and it requires that clustered individuals be as clearly separated from each other &nbsp;given an objective function.</p>
<p>Gianmario employs a few different techniques in his internal evaluation, including AIC, David-Boudin and Silhouette. For external validation, he uses AdjustedRand, which is a statistical measure of cluster similarity. He uses that to compare clustering results with previously known clusters determined to be of a certain quality. This way, we achieved an external validation of clustering results.</p>
<p>So, when presented with a clustering, don&#8217;t worry too much about the algorithm. Instead ask:</p>
<ol>
<li><span style="font-size: 1em;">What was the evaluation criteria used in validating the clusters. Were they internal or external?</span></li>
<li><span style="font-size: 1em;">What was the objective function of the algorithms?</span></li>
<li><span style="font-size: 1em;">What properties were considered for internal validation, and what were the results?</span></li>
<li><span style="font-size: 1em;">If external validation was done, what pre-defined structure or intuition was used?</span></li>
</ol>
<ol></ol>
<p>If you are curious about the algorithm, ask about what assumptions or heuristics the algorithms uses. Each scalable algorithm makes some assumptions; the question is does it makes sense for your problem? We will expand on this in a future blog post.</p>
<p>During 2012, Gianmario Spacagana looked into auto-tuning of clustering. He titled his thesis &#8220;TunUp: A Distributed Cloud-based Genetic Evolutionary Tuning for Data Clustering.&#8221; &nbsp;Gianmario was a student of Polytechnic of Turin and the Royal Institute of Technology on Stockholm. He will provide a more detailed summary of his work in an upcoming blog post.&nbsp;</p>
<p>In the meantime, if you would like more information, you can read Gianmario&#8217;s thesis presentation, which he posted here: <a href="http://www.slideshare.net/gmspacagna">http://www.slideshare.net/gmspacagna</a>. He and AgilOne also published the source code on GitHub if you are interested in looking into it in more detail: <a href="https://github.com/gm-spacagna/tunup">https://github.com/gm-spacagna/tunup</a>.</p>
<p><b>&nbsp;</b></p>
<div>
<hr align="left" size="1" width="33%">
<div>
<p><a href="#_ftnref1" title="">[1]</a> Gianmario Spacagana . TunUp: A Distributed Cloud-based Genetic Evolutionary Tuning for Data Clustering. Master Thesis at the Royal Institute of Technology. Stockholm Sweden. March 2013.</p>
</div>
<div>
<p><a href="#_ftnref2" title="">[2]</a> Ak. Jain, M.N Murty and P.J Flynn. Data Clustering: A Review. ACM Computing Surveys. Vol. 31, No. 3. September 1999.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/data-clustering-dont-worry-about-the-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Consulting the Braintrust: Wharton&#8217;s Research Center for Customer Analytics</title>
		<link>http://www.agilone.com/email-marketing/consulting-the-braintrust-whartons-research-center-for-customer-analytics/</link>
		<comments>http://www.agilone.com/email-marketing/consulting-the-braintrust-whartons-research-center-for-customer-analytics/#comments</comments>
		<pubDate>Fri, 03 May 2013 20:15:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/147239/0eccc056-b1aa-483b-8370-f6a43039c8f5</guid>
		<description><![CDATA[Are you looking for answers, and not getting help from your internal analytics and business intelligence team? Is there a fundamental question that even your company’s biggest data nerd can’t answer? Well, if you present a problem to Wharton&#8217;s Research Center for Customer Analytics, you won&#8217;t get an answer right away, but you’ll be guaranteed [...]]]></description>
			<content:encoded><![CDATA[<p><span>Are you looking for answers, and not getting help from your internal </span><a href="http://agilone.com/blog/?Tag=business+intelligence"><span>analytics and business intelligence</span></a><span> team? Is there a fundamental question that even your company’s biggest data nerd can’t answer?</span> </p>
<p><span>Well, if you present a problem to Wharton&#8217;s Research Center for Customer Analytics, you won&#8217;t get an answer right away, but you’ll be guaranteed maximum brainpower and a decidedly objective view of the issue. </span></p>
<p><a href="http://www.wharton.upenn.edu/wcai/" target="_blank"> <img class="aligncenter size-full wp-image-4420" title="Wharton" src="http://www.agilone.com/wp-content/uploads/Wharton1.jpg" alt="" width="327" height="154" /></a></p>
<p><span>As </span><a href="http://data-informed.com/inside-whartons-research-center-for-customer-analytics/" target="_blank"><span>pointed out</span></a><span> by Stephanie Overby of DataInformed, Wharton&#8217;s </span><a href="http://www.wharton.upenn.edu/wcai/" target="_blank"><span>Research Center for Customer Analytics</span></a><span> offers a crowdsourcing-like approach to solving data-centric business problems. The “crowd,” though, is limited to academic experts in customer data analysis, so you will have a longer wait for an answer.</span> </p>
<p><span>Launched by veteran marketing professors, Dr. Eric T. Bradlow and Dr. Peter S. Fader, the center has six dedicated staff members, a small team of research assistants and more than 1,100 scholars in its research network. </span> </p>
<p><span>Research from Around the Globe</span> </p>
<p><span>Here’s how it works: In exchange for providing access to a customer data set and making a financial contribution toward the center’s operating costs, Wharton’s Research Center develops a research project addressing a problem suggested by the sponsor and presents it to prospective researchers from academic institutions around the globe who then submit proposals. The sponsoring company selects six proposals and each research team devotes a year to a solution.</span> </p>
<p><span>The Waiting is the Hardest Part</span> </p>
<p><span>Overby quoted Tom Thomas, executive director of marketing intelligence for digital ad agency Organic, which leveraged its parent company Omnicom’s sponsorship with the center to help take the agency’s analytics to the next level, as saying: “Predicting, indexing, and more dynamic measurement of online consumer behavior requires advanced mathematical, econometric and statistical skills. It’s hard to find this combination of skills in other agencies or consultancies.”</span> </p>
<p><span>For those marketers with time on their side, Wharton&#8217;s Research Center for Customer Analytics may be worth the wait. </span><a href="http://lifelonglearning.wharton.upenn.edu/videos/"><span>Visit</span></a><span> its Lifelong Learning webpage for free video lectures by Wharton faculty members.</span> </p>
<p><span>Of course, organizations looking for quicker solutions to their marketing analytics problems, can check out <a href="http://www.agilone.com/">www.agilone.com</a> and request a demo of our easy to use, ‘data scientist in the cloud’ solution.</span></p>
<p class="EM-Normal"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/consulting-the-braintrust-whartons-research-center-for-customer-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s More Important: Brand Marketing or Predictive Marketing?</title>
		<link>http://www.agilone.com/email-marketing/whats-more-important-brand-marketing-or-predictive-marketing/</link>
		<comments>http://www.agilone.com/email-marketing/whats-more-important-brand-marketing-or-predictive-marketing/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 19:08:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/147075/4a736ca9-b7fd-49f9-9ec9-c54a98dc8e56</guid>
		<description><![CDATA[For decades marketers have debated whether marketing be more art than science or vice versa. Today that question couldn&#8217;t be more relevant when discussing the virtues of predictive analytics versus brand experience. An article on Content Equals Money points out the dichotomy between the two, and whether the collection of&#160; &#8220;1&#8217;s and 0&#8217;s&#8221; should win [...]]]></description>
			<content:encoded><![CDATA[<p>For decades marketers have debated whether marketing be more art than science or vice versa.</p>
<p>Today that question couldn&#8217;t be more relevant when discussing the virtues of <a href="http://agilone.com/blog/?Tag=predictive+analytics">predictive analytics</a> versus brand experience. An <a href="http://contentequalsmoney.com/brand-experience-vs-big-data/" target="_blank">article</a> on Content Equals Money points out the dichotomy between the two, and whether the collection of&nbsp; &#8220;1&#8217;s and 0&#8217;s&#8221; should win out over observation of human interaction.</p>
<p><a href="http://predictiveanalytics.org/" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/predictive-analytics1.jpg" alt="" title="predictive analytics" width="275" height="183" class="aligncenter size-full wp-image-4426" /></a></p>
<p><strong>Predictive Models Result in Better Marketing Decisions</strong></p>
<p>The article makes good cases for both sides. Predictive analytics allows companies to make better decisions on what marketing content to run, where to run it, and who to target it to. <br />Predictive analytics also helps suggest products customers might like, figures out what devices to optimize your campaign for, and devises the most effective calls to action for driving sales.</p>
<p><strong>But Emotions Play a Huge Part in Marketing </strong></p>
<p>Nonetheless, there&#8217;s a lot to be said for human interaction. Buying a product or spending money on a service is no longer a simple transaction based on a consumer seeing an ad, deciding to fork over some dollars, and getting a physical product in return.</p>
<p>Thanks in large part to social networks; the brand experience is a huge component of gaining loyal customers. Predictive analytics simply can&#8217;t account for a customer&#8217;s emotional response to a video that&#8217;s gone viral.</p>
<p><strong>Predictive Analytics Drive Brand Experience </strong></p>
<p>While the article concludes that predictive analytics and the understanding of the brand experience should both be employed for maximum effect, I believe that the answer is both-and, not either-or. Predictive analytics can help illuminate the brand experience.</p>
<p>Work we did at AgilOne for a market intelligence company bears this out. With a growing business, the company was looking for a better way to deepen engagement with its clients. Through predictive analytics, AgilOne developed a system that provided clients with timely and engaging content, customized specifically for them.</p>
<p>If that&#8217;s not enhancing the brand experience, I don&#8217;t know what is.</p>
<p>(Check out <a href="http://www.agilone.com/customers/case-studies/">case studies</a> on how AgilOne&#8217;s cloud-based predictive marketing has helped clients better understand their customers and lift the business bottom line.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/whats-more-important-brand-marketing-or-predictive-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Data versus Right Data: The Customer Intelligence Revolution</title>
		<link>http://www.agilone.com/email-marketing/big-data-versus-right-data-the-customer-intelligence-revolution/</link>
		<comments>http://www.agilone.com/email-marketing/big-data-versus-right-data-the-customer-intelligence-revolution/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 18:37:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/146261/3e206336-b03b-4ffe-a745-b48a26db1137</guid>
		<description><![CDATA[If you&#8217;re like me, Forrester&#8217;s new report by analyst Fatemeh Khatibloo, Navigating the Future of Customer Intelligence&#160;is sure to light a fire under you, if not several fires. Customers are completely changing the game, and if we don&#8217;t change with them, we will miss key opportunities and our businesses may not even survive the disruption [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, <a href="http://pages.agilone.com/2013WebsiteLandingPages_ForresterNavigatingFutureWPoffer.html?leadsource=Website" title="Forrester&#8217;s new report by analyst Fatemeh Khatibloo, Navigating the Future of Customer Intelligence" target="_blank">Forrester&#8217;s new report by analyst Fatemeh Khatibloo, Navigating the Future of Customer Intelligence</a>&nbsp;is sure to light a fire under you, if not several fires. Customers are completely changing the game, and if we don&#8217;t change with them, we will miss key opportunities and our businesses may not even survive the disruption we all find ourselves in.</p>
<p>We are seeing massive shifts in consumer behavior. They are mobile, they are social, and they are impatient. We have to engage them on their terms, across channels. We have to leverage the data we have about them: not just big data, but what Forrester calls &#8220;right data.&#8221; </p>
<p>On top of this trend, we have the flood of information coming at us from sensors of all kinds. Some of these sensors customers are even willing to wear 24/7 to help them improve their health (Nike FuelBand, FitBit). But even setting aside these types of leading-edge consumers, we still need to find in all that data the right data that provides us with customer intelligence to drive engagement.</p>
<p>We have to overhaul how we think about recognition and identification of customers to tailor our messages. To quote Forrester, &#8220;Marketers need strategies and systems in place to follow their consumers as they flit from one channel to the next. CI professionals need to consider recognition &#8211; knowing who an individual actually is &#8211; together with broader customer context &#8211; what we can know about them, all in a privacy-compliant way.&#8221;</p>
<p>And we all know that there&#8217;s a sea of big data ready to help us, but how, in all of that, can we find the right data? Resources to deal with those exabytes of data are still beyond many of us. This is the elephant in the room when it comes to big data. But to be honest, this insight from the report did not discourage me at all. Although Forrester said, &#8220;the resources required to make those exabytes of data meaningful &#8211; data scientists, decisioning engines, and text and natural language processing tools &#8211; are still out of reach for many organizations,&#8221; here at AgilOne we have taken the power of machine learning and PhD analytics and packaged it for marketers just like you, and we stand ready to help you.</p>
<p>You don&#8217;t have to take it from me. You can download Forrester&#8217;s report and read it in its entirety.</p>
<p><a href="http://pages.agilone.com/2013WebsiteLandingPages_ForresterNavigatingFutureWPoffer.html?leadsource=Website" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/navigating-the-future-of-customer-intelligence1.jpg" alt="" title="navigating the future of customer intelligence" width="300" height="391" class="aligncenter size-full wp-image-4429" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/big-data-versus-right-data-the-customer-intelligence-revolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Your Email Marketing Optimized?</title>
		<link>http://www.agilone.com/email-marketing/is-your-email-marketing-optimized/</link>
		<comments>http://www.agilone.com/email-marketing/is-your-email-marketing-optimized/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 21:40:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/146179/4f6216fe-79cd-4a93-86a5-1ce0c54709df</guid>
		<description><![CDATA[I&#8217;m very excited to share this Email Marketing Scorecard&#160;with you, a piece by leading Forrester analyst Shar VanBoskirk. This 15-page report is packed with tips to help you evaluate your email marketing programs and improve your use of email as a marketing optimization tool. The email marketing game is always changing, and Forrester continues to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very excited to share this <a href="http://pages.agilone.com/2013WebsiteLandingPages_ForresterEmailMktingScorecard.html?leadsource=Website" title="Email Marketing Scorecard" target="_blank">Email Marketing Scorecard</a>&nbsp;with you, a piece by leading Forrester analyst Shar VanBoskirk. This 15-page report is packed with tips to help you evaluate your email marketing programs and improve your use of email as a <a href="http://agilone.com/blog/?Tag=marketing+optimization+tool">marketing optimization tool</a>. The email marketing game is always changing, and Forrester continues to evolve its methodology so you can make your campaigns more effective, incorporating criteria about how easy it is to share email with friends and colleagues, how engaging email is on mobile devices, and how using interactive elements such as video can help.</p>
<p>Forrester&#8217;s scorecard helps you evaluate your email marketing program from a business process and a user experience perspective since both dimensions are key and offers recommendations for gauging your program&#8217;s performance.</p>
<p>Here are a few highlights. Shar suggests expanding your analytics criteria. Typical analytics criteria includes clicks, opens, and conversions. These are important, but Shar suggests supplementing them with more advanced analytics, creating a framework to determine the business value of email. The report states that &#8220;the best practice here is to measure email&#8217;s influence on a long-term customer loyalty and profitability.&#8221;</p>
<p>You&#8217;ll find high level information about topics like governance as well as key marketing topics like segmentation. There are also important down to earth tips such as making sure that the header invites opening. With the volume of email coming in, a tantalizing subject line is more important than ever.</p>
<p>You&#8217;ll also find gems like the following: &#8220;Successful email marketers combine preference-based segmentation with behavioral data; incorporate advanced email analytics with overall marketing analytics to optimize multichannel campaigns; and leverage long-term, profit-based metrics to benchmark their email programs.&#8221;</p>
<p>I found this report thought-provoking and helpful in my own work here at AgilOne and I hope you find it just as valuable.</p>
<div><a href="http://pages.agilone.com/2013WebsiteLandingPages_ForresterEmailMktingScorecard.html?leadsource=Website" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/email-marketing-scorecard1.jpg" alt="" title="email marketing scorecard" width="274" height="409" class="aligncenter size-full wp-image-4432" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/is-your-email-marketing-optimized/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s not the last click; it’s the social activation that matters</title>
		<link>http://www.agilone.com/email-marketing/its-not-the-last-click-it%e2%80%99s-the-social-activation-that-matters/</link>
		<comments>http://www.agilone.com/email-marketing/its-not-the-last-click-it%e2%80%99s-the-social-activation-that-matters/#comments</comments>
		<pubDate>Sun, 07 Apr 2013 15:00:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/145773/1d611c4f-a69e-4018-9501-5271ba35a954</guid>
		<description><![CDATA[We all like to be liked. But obsessing over Facebook &#8220;likes&#8221; and last-click attribution does not a social media marketing strategy make, nor is it any kind of litmus test for customer lifetime value. An eMarketer.com survey stated that 60 percent of marketers used &#8220;the number of people linking as friends, followers, or placing &#8216;likes&#8217;&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>We all like to be liked. But obsessing over Facebook &#8220;likes&#8221; and last-click attribution does not a social media marketing strategy make, nor is it any kind of litmus test for customer <a href="http://www.agilone.com/category/lifetime-value/">lifetime value</a>. An eMarketer.com survey stated that 60 percent of marketers used &#8220;the number of people linking as friends, followers, or placing &#8216;likes&#8217;&#8221; on a brand&#8217;s Facebook page as the means of measuring social media marketing success. But according to <a href="http://socialmediatoday.com/errol-apostolopoulos/1039151/new-framework-quantifying-social-media-investments-infographic" target="_blank">Moontoast</a>, only 20 percent of marketers found quantifiable ROI from social media. Coincidence? Probably not. Revenue attribution is notoriously hard and last-touch attribution leaves us with an incomplete set of clues.</p>
<p><a href="http://fbadvance.com/surefire-ways-to-get-more-facebook-likes/" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/like-us-on-facebook-button2-300x114.png" alt="" title="like-us-on-facebook-button" width="300" height="114" class="aligncenter size-medium wp-image-4437" /></a></p>
<p>In &#8220;<a href="http://www.business2community.com/social-media/the-importance-of-social-activation-and-going-beyond-last-click-attribution-0398648" target="_blank">The Importance of Social Activation and Going Beyond Last-Click Attribution</a>,&#8221; Marcus Whitney, CEO of Moontoast, explains that these tactics leave a lot of meaning on the table. He instead recommends trying to understand the &#8220;social activation&#8221; of your customers.</p>
<p>Social activation is a much more thorough way to measure online revenue generation, because it takes a holistic view of social value across brand awareness, user engagement, and the use of multiple touch points. Whitney urges us to step away from &#8220;likes&#8221; and last-click attribution, and use something he calls the <a href="http://socialmediatoday.com/errol-apostolopoulos/1039151/new-framework-quantifying-social-media-investments-infographic" target="_blank">DITE Framework</a> to drive engagement</p>
<ul>
<li>Discovery: Draw casual fans through building brand awareness</li>
<li>Interaction: Create purchase intent with engaging posts</li>
<li>Transaction: Drive purchases and email subscriptions by offering high customer value</li>
<li>Endorsement: Facilitate advocacy with clear calls to action and sharing incentives</li>
</ul>
<p>According to a Facebook / Datalogix study cited by Whitney, campaigns focused on maximizing reach through social activation saw a 70 percent higher ROI than those that only focused on clicks. That&#8217;s not to say I think that this is easy. Revenue attribution isn&#8217;t easy to track. This is why a two-pronged approach makes sense. Develop an engagement strategy such as the one Whitney outlines. To properly attribute revenue, however, you&#8217;ll need to consolidate all of the consumer&#8217;s behavior and better assess customer <a href="http://www.agilone.com/category/lifetime-value/">lifetime value</a>. Technologies such as &nbsp;<a href="http://www.agilone.com/">machine learning</a> can help you leverage that data across all channels and touchpoints and give you insight about where your revenue is really coming from.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/its-not-the-last-click-it%e2%80%99s-the-social-activation-that-matters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accenture tracks progress toward data-driven decision-making, cites rise in predictive analytics</title>
		<link>http://www.agilone.com/email-marketing/accenture-tracks-progress-toward-data-driven-decision-making-cites-rise-in-predictive-analytics/</link>
		<comments>http://www.agilone.com/email-marketing/accenture-tracks-progress-toward-data-driven-decision-making-cites-rise-in-predictive-analytics/#comments</comments>
		<pubDate>Thu, 04 Apr 2013 15:00:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/145925/2f27dc39-03e0-4709-a9ca-e799cf1e6d84</guid>
		<description><![CDATA[Recently I came across a Computer Weekly article that confirmed what I already knew: the use of predictive analytics is definitely on the rise. In the article, Brian McKenna summarized Accenture&#8217;s latest research on analytics in the enterprise. Since 2009, the use of predictive analytics has tripled. Considering that many executives still make decisions based [...]]]></description>
			<content:encoded><![CDATA[<p class="EM-Normal">Recently I came across a Computer Weekly <a href="http://www.computerweekly.com/news/2240178986/Predictive-analytics-adoption-triples-says-Accenture" target="_blank">article</a> that confirmed what I already knew: the use of predictive analytics is definitely on the rise. In the article, Brian McKenna summarized Accenture&#8217;s latest research on analytics in the enterprise. Since 2009, the use of <a href="http://www.agilone.com/">predictive analytics</a> has tripled. Considering that many executives still make decisions based on gut feel, this increase, from 12% in 2009 to 33% in 2012, is significant. Nick Millman, digital, data and analytics lead at Accenture, said, &#8220;There has been a reasonable shift from gut feel to data [as a basis of decision-making], and that will accelerate.&#8221;</p>
<p class="EM-Normal">Other key trends uncovered by Accenture&#8217;s survey included the rise of the Chief Data Officer. About 66% of the 600 organizations surveyed have appointed a CDO and of those who haven&#8217;t, 71% plan to in the near future. This certainly stacks up with what I have seen about the critical importance of data to companies large and small.</p>
<p class="EM-Normal">It&#8217;s not surprising, however, that companies are far from satisfied with their current use of analytics, with only 22% claiming that they are very satisfied. And all companies report an analytics skills gap: they need more analysts than they have. Accenture suggests building your analytics capability but notes that while data stewardship is hard to outsource&#8212;after all, who knows your data needs better than you do&#8212;getting help with predictive analytics and modeling is definitely an option. Here at <a href="http://www.agilone.com/">AgilOne</a>, we stand ready to help you expand your predictive analytics capabilities, offering you fresh insight with our business-friendly cloud-based solution.</p>
<p class="EM-Normal">And by the way, Accenture summarized some of its findings in a cool <a href="http://bit.ly/15uW9N6" target="_blank">infographic</a>, if you&#8217;re interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/accenture-tracks-progress-toward-data-driven-decision-making-cites-rise-in-predictive-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ready for Analytics 3.0? Predictive Analytics Software Gets You There</title>
		<link>http://www.agilone.com/email-marketing/ready-for-analytics-3-0-predictive-analytics-software-gets-you-there/</link>
		<comments>http://www.agilone.com/email-marketing/ready-for-analytics-3-0-predictive-analytics-software-gets-you-there/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 15:00:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/145772/79ac15d7-ce69-4ea7-bfb8-a41df92f4367</guid>
		<description><![CDATA[Tom Davenport is a key thought leader in the analytics space whose work I have been following. When I saw he had written an article called &#8220;Ready for Analytics 3.0?&#8221; I jumped on it. Davenport gives us a guided tour of the journey from Analytics 1.0 to 2.0 and now 3.0. He traces the evolution [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><a href="http://www.tomdavenport.com/" target="_blank">Tom Davenport</a></span> is a key thought leader in the analytics space whose work I have been following. When I saw he had written an article called &#8220;<a href="http://iianalytics.com/2013/02/preparing-for-analytics-3-0/" target="_blank">Ready for Analytics 3.0</a>?&#8221; I jumped on it. Davenport gives us a guided tour of the journey from Analytics 1.0 to 2.0 and now 3.0. He traces the evolution of analytics, talking about changes in the types of data in use, internal, external, structured, and unstructured, as well as advances in technology such as in-memory databases and <a href="http://www.agilone.com/">predictive analytics software</a>. Every bit as interesting is the movement of analytics from a back-office function to the center of the C-suite. As I read this, I thought about how true this is for those of us in marketing &#8211; analytics is right at the center of every marketing plan and every conversation. &nbsp;</p>
<p><a href="http://www.optier.com/blog/analytics-3-0-is-coming-great-article-by-tom-davenport/" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/3.01.jpg" alt="" title="3.0" width="276" height="183" class="aligncenter size-full wp-image-4444" /></a></p>
<p>Davenport sees Analytics 1.0 stretching across a long time period &#8211;&nbsp; about 1954 to 2009. It&#8217;s characterized largely by the use of internal data from traditional systems of record. Models, when they were created, took several months to generate. Analytics was a back office function and almost no one <span style="text-decoration: underline;">competed</span> with analytics, a topic that Davenport wrote a groundbreaking <a href="http://www.tomdavenport.com/books/#3" target="_blank">book</a> about in 2007.&nbsp;</p>
<p>Around 2010, we enter Analytics 2.0, and we start hearing about big data. Companies start using Hadoop to process all that unstructured data and we see visual analytics begin to come to the fore, which he sees as a form of descriptive analytics. In this phase, descriptive analytics is still crowding out predictive and prescriptive analytics. Predictive analytics makes predictions about future events; prescriptive analytics uses business rules to suggest actions that we should take based on those predictions. Both of these types of analytics heavily leverage machine learning. &nbsp;But I&#8217;m getting ahead of myself: that&#8217;s part of Analytics 3.0.</p>
<p>Analytics 2.0 also heralded a shift in the place of analytics in the organization. Analysts move closer to the business and competing with analytics becomes the norm. Data scientists are in high demand.</p>
<p>Lots of people would say we are still in Analytics 2.0, but Davenport suggests multiple reasons why he believes that we have entered Analytics 3.0. He gives several reasons:</p>
<ul>
<li>Companies are combining numerous internal and external data sources to drive predictive and prescriptive models</li>
<li>Software that leverages agile analytical methods and machine learning is taking data from all of these sources and driving faster predictive and prescriptive analytics</li>
<li>Analytics is playing a central role in driving strategy to the point that it&#8217;s entering the C-suite: take a look at how many organizations now have a Chief Analytics Officer</li>
</ul>
<p>It&#8217;s an exciting and challenging time to be a marketer. We have so much data available; the potential is high for us to devise more effective marketing actions. But honing in on the most meaningful information to take just the right action is the key. Analytics 3.0 will take us there. And with all the attention coming from the C-suite, as Davenport says, we&#8217;ll actually compete with analytics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/ready-for-analytics-3-0-predictive-analytics-software-gets-you-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Efficient Development of Predictive Cloud Applications</title>
		<link>http://www.agilone.com/email-marketing/efficient-development-of-predictive-cloud-applications/</link>
		<comments>http://www.agilone.com/email-marketing/efficient-development-of-predictive-cloud-applications/#comments</comments>
		<pubDate>Wed, 27 Mar 2013 20:56:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/145390/7948290f-187f-41e6-a9a3-4feb3d2eec31</guid>
		<description><![CDATA[Introduction Basketball great Michael Jordan said, &#8220;Talent wins games, but teamwork and intelligence wins championships&#8221;. I fundamentally believe that the way a company thinks about their way of working and the structure &#160;of teams can either become a millstone around the neck or a competitive advantage. I received quite a few questions on how we [...]]]></description>
			<content:encoded><![CDATA[<p><b>Introduction</b></p>
<p>
<p><b></b>Basketball great Michael Jordan said, &#8220;Talent wins games, but teamwork and intelligence wins championships&#8221;. I fundamentally believe that the way a company thinks about their way of working and the structure &nbsp;of teams can either become a millstone around the neck or a competitive advantage. I received quite a few questions on how we develop software. So in this blog post I will talk about how we think about engineering teams at AgilOne for building marketing focused big data predictive applications.</p>
<p><span id="more-4269"></span></p>
<p>As is illustrated in the &#8220;marchitecture&#8221; diagram below, the depth of AgilOne technology is extraordinary. &nbsp;As a consequence there is tremendous variety and depth of skills that are required to deliver features in our applications. Each of our features require domain expertise in the specific predictive techniques we are developing. We have to make sure our calculated results are relevant and better than user&#8217;s intuition. The predictions need to be actionable and valid. Development also requires skills in data science and machine learning and an understanding of how to translate an idea into real algorithms. Implementing an algorithm requires very particular skills in understanding the limitations of data available as well as dependencies in data. In addition we need to address architectural objectives in making the solution scalable, robust, extensible, etc. &nbsp;All features are exposed as functions in a highly graphical user interface, requiring skilled front-end designers and developers. In addition, we make features and predictions available through our APIs.</p>
<div>
<hr align="left" size="1" width="33%"></div>
<p>
<p><img src="http://www.agilone.com/wp-content/uploads/pic-resized-6001.png" alt="" title="pic-resized-600" width="454" height="255" class="aligncenter size-full wp-image-4447" /></p>
<p>
<p>All these things taken together make it quite challenging to iteratively deliver enterprise-grade, easy to use, accurate, predictive features on a big data platform. But we have found a way.</p>
<p>
<p><b>How do we execute?</b></p>
<p>
<p>Like many other companies we use an agile methodology based on <a href="http://en.wikipedia.org/wiki/Scrum_(development)" title="scrum" target="_blank">scrum</a>&nbsp;. In fact we use scrum for all teams in our technology organization, including technical operations and IT. Each scrum team has the skills to deliver complete features end to end. As in many other engineering organizations this implies each team has an associated UI designer, front-end developers, and back end developers. For us it also means each team has knowledge in technologies such as Hadoop, hBase, R, Cascading, and OLAP. Last but not least our teams need to have the skill set of a data scientist. They need to understand the data, detect the patterns, and apply the right algorithms.</p>
<p>
<p>Within AgilOne we do have data scientists working closely with clients (who are all high-volume marketers with large data volumes) exploring what can be found out by analyzing their data. Their work is tremendously valuable for our customers and ultimately also for us. It allows us to learn what customers are interested in. We can generalize patterns and analysis across our client base. This results in great benefit for AgilOne as well as our customers.</p>
<p>
<p>In the engineering team we have taken the data scientist role one step further by defining a role we call <em>Product Data Scientist</em>. A product data scientist is a data scientist who is also part of an engineering scrum team. They perform generalized analysis that it can be applied across organizations in a multi-tenant cloud application. The product data scientist is a very rare individual. They must have a specific skillset, particular interests, and a unique personality. An AgilOne product data scientist is a world class mathematician with an analytical mind. But they are also a developer who can help turn an algorithm into a scalable working implementation. Some of our product scientists are mathematicians who have learned the art of software engineering while others are experienced software engineers what have had a lifelong interest in math and modeling. This role has enabled us to develop new analysis and models &#8212; and implement them within the same team &#8212; avoiding the &#8220;throw over the wall&#8221; problem.</p>
<p>
<p>To lead the delivery of these applications we have product managers that are extraordinary drivers. They are customer-oriented having worked directly with clients and have an analytical background and mindset.</p>
<p>
<p>I believe that our team set up has enabled us to deliver our predictive applications in a a more iterative fashion than a more traditional analyst v.s engineering structure. The reason is that teams have the analytical competency to understand where trade-offs can be made while keeping features useful and relevant. Since we removed the wall between data science and engineering we improve features and algorithms, and ship, very efficiently.</p>
<div>
<div>
<p><b>What we have learned so far</b></p>
</div>
</div>
<p>
<p>I have been amazed on how our team composition has multiplied the competency of each individual.&nbsp; We have teams that can iteratively deliver advanced machine learning-based, scalable, multi-tenant predictive applications with great UI. The product data science role has worked out well. We have been experimenting with having product data scientists work alongside client data scientists. That cross pollination has been great as these individuals speak the same language which make sharing ideas and knowledge essentially effortless.</p>
<p>
<p>I believe we have turned the difficult problem of delivering functionality of extreme depth and breadth into a competitive advantage.&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/efficient-development-of-predictive-cloud-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flavors of Lifetime Value</title>
		<link>http://www.agilone.com/email-marketing/flavors-of-lifetime-value/</link>
		<comments>http://www.agilone.com/email-marketing/flavors-of-lifetime-value/#comments</comments>
		<pubDate>Sun, 24 Mar 2013 17:19:00 +0000</pubDate>
		<dc:creator>omer</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/145417/33c6daf3-053f-42f3-bc13-f007b80fbb1c</guid>
		<description><![CDATA[Observation and definition of the question Although often over quoted, the term Life Time Value (LTV) is one of the most underutilized but fundamental marketing concepts. The concept is based on the belief that the customer is the unit value for an enterprise and the sum total of customer value is equal to the enterprise [...]]]></description>
			<content:encoded><![CDATA[<p><b>Observation and definition of the question</b></p>
<p><p>Although often over quoted, the term Life Time Value (LTV) is one of the most underutilized but fundamental marketing concepts. The concept is based on the belief that the customer is the unit value for an enterprise and the sum total of customer value is equal to the enterprise value ( see <a href="http://www.amazon.com/Customer-Equity-Building-Managing-Relationships/dp/0875847641" target="_blank"><em>Customer Equity</em></a>). &nbsp; How useful is this concept for those involved in the daily grind of running a marketing department?</p>
<p><span id="more-4268"></span></p>
<p><a href="http://dmanalytics.org/academic-research/a-customer-lifetime-value-framework-for-customer-selection-and-resource-allocation-strategy/" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/customer-lifetime-value-600x4001.jpg" alt="" title="customer-lifetime-value-600x400" width="600" height="400" class="aligncenter size-full wp-image-4452" /></a></p>
<p><p>We&#8217;ve been talking to several potential customers who have talked with marketing intelligence companies that provide on-demand LTV predictions that are updated nightly. &nbsp;While most organizations are interested in understanding the future value of their customers, they don&#8217;t necessarily know how they&#8217;ll use LTV predictions because it can be interpreted in several different ways.</p>
<p><p><strong>Value &#8211;</strong> can be revenue, margin, variable contribution margin and may include or exclude acquisition cost depending on the use case</p>
<p><p><strong>LT&nbsp;&#8211; Lifetime :</strong> &nbsp;can be historical, projected, upside etc.</p>
<p><p>Based on these definitions, LTV could be <br /><strong>1)&nbsp;LTV-Historical:</strong> Historical value of customer looking back since acquisition or last X months <br /><strong>2)&nbsp;LTV-Projected:</strong> &nbsp;Projected value of a customer looking forward X years <br /><strong>3)&nbsp;LTV-Upside:</strong> Potential upside in customer value per year</p>
<p><p>These three different measurements/predictions can be utilized in different ways:</p>
<p><p><strong>1)</strong>&nbsp;<b>LTV-H:</b>&nbsp;&nbsp;This metric can be used to understand customer value trends, including whether a customer&#8217;s value is trending up or down, or if they are new/reactivated, or lapsed or inactive.&nbsp; The change in LTV-H can be used to trigger lifecycle campaigns.&nbsp;</p>
<p><p><strong>2) LTV-P:</strong> &nbsp;This metrics is best used for both acquisition source optimization and customer onboarding. &nbsp;</p>
<ul>
<li><strong>Acquisition Source Optimization:</strong> Based on short term LTV-P projections, a marketer can estimate which acquisition channels provide the best customers. &nbsp;It is best to use short-term data for this calculation due to the changing nature of sources of acquisitions and offers. &nbsp;If a marketer makes decisions based on projected LTV derived from old data, the calculations will not account for fast changing digital flows that happen in ad networks, keyword trends, and other modern acquisition channels.</li>
</ul>
<ul>
<li><strong>New Customer Onboarding:</strong>&nbsp;Another application of LTV-P is onboarding customers. &nbsp;When a new customer is acquired, utilizing LTV-P and other observed and implicit properties of the customer (e.g., demographics, first order revenue, categories, email, web behavior, etc.), marketers should devise an onboarding process to ensure a successful second order from the customer. &nbsp;Customers are usually very expensive to acquire, and more than 50% of new customers never come back to make a second purchase. &nbsp;Successfully onboarding a customer could significantly increase LTV, impacting value in a compounding manner. &nbsp;In other words, increasing new customer retention metrics will have a compounding downstream effect on the value of customers, and thus the value of the company.</li>
</ul>
<p><p><strong>3) LTV-U:</strong>&nbsp;&nbsp;This is the most underutilized LTV metric. &nbsp;Most organizations observe and predict value based on customer transactions. &nbsp;However, very few companies calculate and utilize the upside potential of a customer. &nbsp;Successfully calculating and operationalizing this metric will allow marketers to focus on the high potential customer within the context of acquisition, reactivation and growth objectives. <br /><b>&nbsp;</b> <br /><strong>How to calculate LTV &#8211; components of the equation </strong></p>
<p><p>LTV is defined as the net present value of profits from the customer.&nbsp; Profit incorporates the following components that are the levers to increase the lifetime value:</p>
<ul>
<li>Number of Orders</li>
<li>Products per order (product mix)</li>
<li>Product Margin %</li>
<li>Product Price</li>
<li>Quantity per product</li>
<li>Discount cost</li>
<li>Promotion cost (cost to reach)</li>
<li>Acquisition cost</li>
<li>Retention rate</li>
<li>Cost of capital</li>
</ul>
<p><p>In various cases, acquisition cost can be included or excluded in the calculation depending on the use case.&nbsp; In other words, if a customer is acquired, putting the customer acquisition cost in the equation will not be actionable, since this is already a sunk cost and we need to make sure for all these customers, we need to maximize the future profits.&nbsp; Whereas if we&#8217;re trying to allocate resources for acquisition sources, we should include the LTV by source including the Acquisition cost, since we want to acquire customers who will deliver positive ROI within a certain period of time. &nbsp;</p>
<p><p><strong>It changes, keep up</strong></p>
<p><p>The lifetime value of a customer, whether predicted or calculated, changes over time.&nbsp; This change signals underlying trends, risks and opportunities.&nbsp; Make sure you don&#8217;t have a static view of LTV calculations, but look at as snapshots in time and calculate transitions.&nbsp; When a High LTV customer is trending to Low LTV over the past year, it signals a valuable at-risk customer.&nbsp; You as a marketer need to focus on this.&nbsp; Each customer lost, especially a high value customer is extremely expensive to replace. &nbsp;</p>
<p><p><strong>Conclusion </strong><br />Focusing on LTV is very important, but using LTV to create actionable triggers is perhaps more important than knowing exactly what the LTV is. &nbsp;Additionally, once triggers have been set, it&#8217;s the campaign effectiveness that allows a marketer to achieve customer objectives.&nbsp; I&#8217;ll discuss campaign effectiveness in a separate post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/flavors-of-lifetime-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AgilOne Names Saravanan Chettiar as New VP Finance</title>
		<link>http://www.agilone.com/news/agilone-names-saravanan-chettiar-as-new-vp-finance/</link>
		<comments>http://www.agilone.com/news/agilone-names-saravanan-chettiar-as-new-vp-finance/#comments</comments>
		<pubDate>Wed, 20 Mar 2013 12:36:23 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.agilone.com/?p=4206</guid>
		<description><![CDATA[Leading Predictive Marketing Analytics Company Taps Proven Finance Executive to Guide Next Phase of Growth MOUNTAIN VIEW, Calif. – March 20, 2013 &#8211; AgilOne, the leader in cloud-based predictive marketing analytics, today announced that Saravanan Chettiar, formerly of Castlight Health and Salesforce.com, has joined the company as vice president of finance. Chettiar comes to AgilOne [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><em>Leading Predictive Marketing Analytics Company Taps Proven Finance Executive to </em><br /><em>Guide Next Phase of Growth</em></p>
<p>MOUNTAIN VIEW, Calif. – March 20, 2013 &#8211; <a href="http://agilone.com">AgilOne</a>, the leader in cloud-based predictive marketing analytics, today announced that Saravanan Chettiar, formerly of Castlight Health and Salesforce.com, has joined the company as vice president of finance. Chettiar comes to AgilOne with more than 15 years of diverse finance and operations experience which will be invaluable in his new role leading the company’s finance, HR, and legal functions.</p>
<p>“AgilOne is at a significant growth stage coming out of our Series B round at the end of 2012. This is the year of growing sales and marketing and Saravanan’s finance leadership will prove invaluable in helping the company get to the next phase of success,” said Omer Artun, CEO of AgilOne. “His experience with some of the most successful SaaS companies in the world is an essential addition to our team. We are thrilled to welcome him to AgilOne.”</p>
<p>“AgilOne is dominating the market for predictive marketing analytics. Some of the biggest companies in the world are powering their marketing functions with AgilOne. I looked at many opportunities in the cloud computing space, and AgilOne truly stood out – both for the tremendous traction it has today and for the potential it has to extend its leadership in this space.  I am truly excited to join the team and to help lead the company’s financial and operational growth to the next stage,” said Chettiar.<br />Prior to AgilOne, Chettiar was vice president of finance at Castlight Health, a SaaS healthcare IT company with over $180M in capital raised.  Before that, he held leadership roles in the corporate planning and sales operations teams at Salesforce.com.  Chettiar has also held banking, public accounting, and internal audit roles at Credit Suisse, KPMG, and the Siemens Group. Chettiar has an MBA from the University of Michigan and a Bachelor’s in Accounting from Nanyang Technological University. <br />About AgilOne<br />AgilOne is a cloud-based predictive intelligence application for marketers. It is used by hundreds of brands including Shazam, Sports Authority, Moosejaw, ideeli, and shopPBS.org. AgilOne helps marketers connect with the individual in every customer. AgilOne prescribes exactly the right marketing offer, makes each relationship more profitable, and simplifies the science of marketing.  Based on a data-scientist approach, AgilOne makes big customer data clean and smart. Then, AgilOne recommends what immediate actions to take to increase revenue.  AgilOne is based in Mountain View, CA and is venture-funded by Sequoia Capital and Mayfield Fund. For more information, please visit <a href="http://www.agilone.com">www.agilone.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/news/agilone-names-saravanan-chettiar-as-new-vp-finance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Quality is King ⎯ When a Prediction API is Inadequate.</title>
		<link>http://www.agilone.com/email-marketing/data-quality-is-king-%e2%8e%af-when-a-prediction-api-is-inadequate/</link>
		<comments>http://www.agilone.com/email-marketing/data-quality-is-king-%e2%8e%af-when-a-prediction-api-is-inadequate/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 21:30:00 +0000</pubDate>
		<dc:creator>Jari Koister</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/144337/78223cb1-fed8-47fd-9d66-0a5a22e4c1b5</guid>
		<description><![CDATA[Not as easy as it seems There is a lot of excitement about being able to introduce predictions and recommendations into applications. The goal is to improve the user experience, increase adoption and improve conversion rates. In some instances services want to analyze fairly structured data such as transactions and web-clicks. Other times the analysis [...]]]></description>
			<content:encoded><![CDATA[<p><b>Not as easy as it seems</b></p>
<p>
<p>There is a lot of excitement about being able to introduce predictions and recommendations into applications. The goal is to improve the user experience, increase adoption and improve conversion rates. In some instances services want to analyze fairly structured data such as transactions and web-clicks. Other times the analysis concerns unstructured data such as text or short posts with their own &#8220;language&#8221; such as tweets. This has created an opportunity for cloud based Prediction API&#8217;s. In the last few years I have seen many different Prediction API&#8217;s appear, and some of them disappeared.</p>
<p><span id="more-4270"></span></p>
<p>In this post I will argue that most prediction API are not as easy to make useful as may first appear. I am arguing that the &#8220;prediction&#8221; part is not the main challenge associated with the incorporation of prescriptive features into an application. I am not saying that you shouldn&#8217;t use these API&#8217;s but don&#8217;t expect the current breed of Prediction API&#8217;s to give you an out-of-the-box experience. Let me explain why.</p>
<p>
<p><b>Steps of a machine-learning process</b></p>
<p>
<p>When you compute predictions you normally use some sort of machine learning algorithm. These algorithms need good data to give good results. The GIGO idiom (garbage in, garbage out) is more applicable than ever. Supervised algorithms rely on good training data to create good models and provide adequate scoring. Unsupervised algorithms need features that are representative to work properly. The common theme is that garbage-data in results in garbage-predictions out.</p>
<p>
<p>The figure below illustrates the high level steps and algorithms that data typically must pass through to provide adequate results. [Admittedly somewhat of a simplification]</p>
<p>
<p><img src="http://www.agilone.com/wp-content/uploads/untitled1-resized-6001.png" alt="" title="untitled1-resized-600" width="600" height="105" class="aligncenter size-full wp-image-4458" /></p>
<p>
<p><em>Data Quality</em> is the step that involves taking raw data and cleaning so that we have a base data set that satisfies certain fundamental quality criteria.&nbsp; If we are concerned with semi-structured data, quality may encompass things like making sure we have addresses that are valid and complete, names are sensible, numbers that are expected to be positive are positive, garbage rows are removed, etc. It can also include doing entity resolution and record linkage so that we get a more accurate picture of what is going on.</p>
<p>
<p><em>Data preparation</em> is the next step in the process. And I consider this step somewhat model specific. By this I mean that what you do in this step depends largely on what type of model that you are trying to build. For example, in this step, we identify and remove outliers that will skew our model in addition we may normalize data. When records are missing data in specific fields we may try to approximate them. The goal is to have a representative data set that allows us to create as good a model as possible. Since models are also domain specific, I believe it Is safe to say that if you are building predictive models for a specific problem domain area you can do a better job preparing the data. This is simply due to the fact that you can make more accurate assumptions and hence prepare the data better.</p>
<p>
<p><em>Feature selection</em> involves selecting the data from records that we use for the model building. The term <em>feature</em> refers to the attributes or fields of the data that are most relevant for the model we are building. A feature could be taken straight from the input data or be generated by a function applied to the feature. An example of a feature would be to decide that each noun in a text is a feature, a generated feature could be that we map words to their stem base. One goal is reduce dimensions to avoid redundant or interrelated features. We also do not want to include features that are not relevant to the model at hand. For structured data, the features may be specific attributes such as revenue, last purchase date, number of purchases etc. For unstructured data features are often words, stem base of words, n-grams etc.</p>
<p>
<p><em>Model Building</em>, <em>Model Selection</em> and <em>Scoring</em> refer to the traditional steps of machine learning. When you look at software and literature related to machine learning, these are the steps they tend to focus on. Based on labeled data, features and possibly target variables (if supervised learning) we create a model that is later used for scoring.</p>
<p>
<p>I am sure you realize by now that if we get bad quality data in we will ultimately end up with models that will not perform well. Missing values or outliers can significantly impact models. Analysis of unstructured data will be impacted if we have a lot of bad data such as bad words, misspellings, and words that are not &#8220;real&#8221; words.</p>
<p>
<p><b>Predictive API&#8217;s</b></p>
<p>
<p>There is a long list of services that provide predictive API&#8217;s. Google Prediction API has been around for a while, and so has Saplo.com. Last year or so has brought some new ones such as BigML, Sociocast and PriorKnowledge<a href="#_ftn1" title="">[1]</a>. I am sure there are quite a few more that I omitted [sorry]. AgilOne also provides a Prediction API, although with a different twist than many other vendors.</p>
<p>
<p>All vendors naturally provide various ways of uploading or referring to data. &nbsp;Data can of course be in many different format &nbsp;and at many different levels of quality as illustrated by the diagram below. For the purpose of this discussion I view it as a continuum from completely unstructured data such as text, to very structured data were we can expect a very well defined format and well defined manifest types. As far as I can see Prediction API&#8217;s tend to address one of two extremes. Either they process unstructured data such as texts of different sizes, providing tagging and various forms of text analysis. Or they focus on fairly structured data requiring that users have prepared and cleansed the data before uploading, or they are making predictions on very structured machine generated data such as web click data.</p>
<p>
<p><img src="http://www.agilone.com/wp-content/uploads/untitled21.png" alt="" title="untitled2" width="600" height="183" class="aligncenter size-full wp-image-4459" /></p>
<div>
<p>By focusing on these two extremes they avoid as much of the data problem as possible. This means that all these services mainly focus on the Model Building and Scoring steps assuming customers can provide adequate quality data.&nbsp; That said, some services do provide some limited data preparation capabilities. If you are building an application that is business and marketing oriented much of your data will be in the middle semi-structured category.</p>
<p>
<p><b>The importance of data quality</b></p>
<p>
<p>This essentially means anyone who wishes to use predictive services that involve data that is semi-structure and dirty will need to do the Data Quality to Feature Selection steps in some other way. And I claim that if you are doing anything related to business transactions, marketing analytics, etc. you will likely have data that needs preparation. You also need to understand enough of what you are trying to do to do features selection [separate post in this in the future] and that is not trivial. On the contrary it often requires you understand the data so that you can reduce the number of features, look at interdependencies, remove noise etc. There are algorithms that can help you with this, but you still need significant in-depth knowledge about this step.</p>
<p>
<p>The diagram below illustrates the fact that Prediction API&#8217;s are great at handling certain machine learning algorithms; however, often lacking what you need for the earlier steps on the data processing pipeline.</p>
<p>
<p><img src="http://www.agilone.com/wp-content/uploads/Untitled3-resized-6001.png" alt="" title="Untitled3-resized-600" width="600" height="341" class="aligncenter size-full wp-image-4461" /></p>
<p>
<p><b>Ok? What now?</b></p>
<p>
<p>Before you make assumptions on what predictions you can do in your application and what service you should be using make sure you know your data. Are you dealing with Bad Data that may need to be corrected and completed? Do you deal with structured, semi-structured or unstructured data or all of the above? Even if it is clean, is it likely you have outliers, incorrect or missing data. If you, against all odds in my mind, have good understanding of the structure of the data and the data is clean and well prepared, you can go ahead and pick a Prediction API and off you go. If you think you may have data issues you must first decide how you want to deal with the data. Do you want to use a service for preparing it. Do you do it in house? What tools and algorithms do you need to prepare the data?</p>
<p>
<p>I am not suggesting you have to do a large time consuming analysis before you can get started. You should make sure you start with clean data for your initial trials, or at least manage your own expectation about the results based on the quality of the data. Ultimately you need to address your data if want to have something useful. But no predictions is better than inaccurate or bad predictions that could be misleading.</p>
<p>
<p>At AgilOne we strongly believe the truth of GIGO. That&#8217;s why we developed a sophisticated data quality infrastructure that can process billions of records effectively. The cleansed data feeds directly into our predictive pipeline so that our customers do not need to worry about GIGO. Predictions can drive tremendous benefits, but must be based on best possible input.</p>
<p><br clear="all"></p>
<hr align="left" size="1" width="33%">
<div>
<p><a href="#_ftnref1" title="">[1]</a> This service was shutdown in the last 6 months since the team got acquired.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/data-quality-is-king-%e2%8e%af-when-a-prediction-api-is-inadequate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What you shouldn&#8217;t need to know about Big Data and Machine Learning.</title>
		<link>http://www.agilone.com/email-marketing/what-you-shouldnt-need-to-know-about-big-data-and-machine-learning/</link>
		<comments>http://www.agilone.com/email-marketing/what-you-shouldnt-need-to-know-about-big-data-and-machine-learning/#comments</comments>
		<pubDate>Thu, 21 Feb 2013 22:17:00 +0000</pubDate>
		<dc:creator>Jari Koister</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[big data]]></category>
		<category><![CDATA[big data analytics]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/143627/1ae820de-4078-47e6-8f5b-b799bd349d95</guid>
		<description><![CDATA[As an end-user of an analytics application you should really not need to worry about how machine learning and Big Data relate. But if you are considering how to provide analytics services to your company or customers you should at least have a high level understanding of how these technologies interact. My goals of this [...]]]></description>
			<content:encoded><![CDATA[<p>As an end-user of an analytics application you should really not need to worry about how machine learning and Big Data relate. But if you are considering how to provide analytics services to your company or customers you should at least have a high level understanding of how these technologies interact. My goals of this post is to help clarify the relationship between Big Data and Machine Learning. When do you need to be able to handle Big Data to benefit from Machine Learning, and when does Machine Learning benefit from Big Data?<span></span></p>
<p>Big Data and machine learning are two hot areas that are driving loads of innovation. Some people think they need a lot of data to apply machine learning and others think they need machine learning to do anything with their Big Data.&nbsp; But is this always true? You can learn a lot from your Big Data without complex machine learning algorithms; transformation of data and calculation of aggregates are two such examples. With that said, you can enable very powerful analysis by using machine learning techniques on large data sets. This post will help you better understand the relationship between Big Data and machine learning and when to use them together.</p>
<p><strong>What do we mean by Big Data?</strong></p>
<p>Big Data is a very active topic right now. We generate more data than ever before, and everyone agrees that we should use it to improve decisions, understand customers, detect system anomalies, etc. A study by the IBM Institute of Business Value [Analytics: the real-world use of big data] states that businesses associate Big Data with&nbsp;a greater scope of data collection and analysis. Companies also associate it with the techniques&nbsp;for handling massive amounts of data.</p>
<p>According to the IBM study, only 10% of companies say that Big Data is about large volumes of data. 18% of organizations consider Big Data to be related to an increasing scope of available information. 17% associate it with new kinds of analysis while 16% associate real-time analysis with Big Data.&nbsp;</p>
<p>For the purpose of this post Big Data refers to a system&#8217;s ability to handle a dataset regardless of its size. These data sets can be huge: billions of purchase transactions or much smaller. With Big Data methods, we can process the data &nbsp;regardless of size within a time that makes results practical and useful.</p>
<p><strong>Learning is the key word in Machine Learning.</strong></p>
<p>Machine learning refers to many different techniques, from the statistical, mathematical, and computer science communities. But at their core, these methods are all about creating data models that help us understand and predict the world. For example, we can create a language detection model using texts and their associated language such as English or Swedish. [training data]. Then, we can use this model to derive, with some acceptable accuracy, a specific text&#8217;s language. There are many Machine Learning algorithms. At the highest level we categorize them into supervised and unsupervised. A supervised model learns to predict a specific outcome using labeled data. For example, we build models that predict propensity to buy, using training data that labels people, which did and did not buy. Statistical regression is a typical example of a supervised learning algorithm. In contrast, an unsupervised algorithm finds patterns in your data, when that data does not have any labels. For example, we can build a customer segmentation model, when you do not know how many types of customers you have. But both supervised and unsupervised learning has two major stages: model building and scoring. Model building is when we create the model using training data, scoring occurs when we use the model to make a prediction about some new data.</p>
<p><b>What data is required to learn?</b></p>
<p>So what is the connection between machine learning and big data? Do you need big data to do machine learning? To cut to the chase: no. You do not always need big data. However, if you can apply machine learning to Big Data, then you can create some very powerful tools and insights you wouldn&#8217;t see any other way.</p>
<p>In many situations you can apply machine learning to a sample [subset] of the population that you care about. A sampled data set can be quite small and in many cases you can do the processing on a simple computer. This works when you are looking for a simple relationship such as normal distribution. For example, will one campaign return at least $10 more per customer, than another campaign? In this hypothetical situation, we only care about big effect sizes and so we should be able to reliably detect this effect in a small sample. If the effect size is small, we may not detect them, but it would be uninteresting anyway.</p>
<p><strong>The key to good results: data, samples and effect size.</strong></p>
<p>Problems occur when the distribution [in a statistical sense] we are trying to model is not a simple distribution. Another problem occurs if there is noise in the data. Noise makes it more difficult to detect patterns in the data and leads to the need for more data to create accurate models. For instance, noise could be that some&nbsp; customers have missing or incorrect data.</p>
<p>An even bigger problem occurs if you create a sample with a bias, relative to the population. If the sample is biased, the model will be biased and of course lead to biased scoring. Bias is of course not a problem if we use the complete data set (you have all the data!). Lets assume we want to predict lifetime of people across the whole world. If we limited our training set to US population we would create a large, but biased training data set. If we used data from the whole world, we would more accurately be able to predict the lifetime of any newborn child anywhere in the world.</p>
<p><strong>May we have some simple rules?</strong></p>
<p><span>The table below provides a simplified synopsis of how Big Data and machine learning are related. In this context Big Data denotes the ability to apply machine learning to complete data sets.</span></p>
<p><span></span>If you are looking for a large effect size and for a simple relation, then using Big Data is an overkill. If the relations are complex or noisy you will benefit from using the complete data set [Big Data] but large samples may be sufficient. If you have biased samples you are in trouble, but Big Data can prevent this problem, while a large sample may give acceptable results in some situations.</p>
<p><img src="http://www.agilone.com/wp-content/uploads/table-resized-6001.png" alt="" title="table-resized-600" width="600" height="192" class="aligncenter size-full wp-image-4464" /></p>
<p>One should note that even if model building can sometimes be done with sampling, in many situations scoring is still done on the complete data set. Scoring is normally less computationally intensive so the benefit of using subsets is diminished even if scoring on a subset would be make sense in a particular situation.</p>
<p><strong>If you take away anything, take away this.</strong></p>
<p>There is no direct dependency by machine learning on Big Data. Machine learning can be just as useful, even when you have a small sample of data as when you process a massive data set. In general, the ability to process Big Data will provide more accurate and powerful predictions and insights. Sometimes you will need Big Data to produce useful results due to issues with data, relations, effect sizes etc. but Big Data is not always required.</p>
<p>Correspondingly, think of Big Data completely independent from machine learning. For example, you might want to know how many of your customers have purchased items from at least three distinct product categories, no machine learning is involved in that calculation. Even for these types of data analytics, sampling can be useful. For example, let&#8217;s assume you want to know the average salary of individuals in a particular zip code. You can create a highly accurate estimate of this value, by calculating the average over a sample.</p>
<p>If you build your own data processing infrastructure you need to know how to deal with all this. When you can sample and when you really need Big Data. If you are one of our customers we are managing this for you. If &nbsp;you are a Marketer you really should not need to know all this detail to become a data driven organization.</p>
<p><em>Thanks to Daragh Sibley for interesting feedback and discussions on the topic.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/what-you-shouldnt-need-to-know-about-big-data-and-machine-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to go beyond managing and start learning from Big Data Analytics</title>
		<link>http://www.agilone.com/email-marketing/how-to-go-beyond-managing-and-start-learning-from-big-data-analytics/</link>
		<comments>http://www.agilone.com/email-marketing/how-to-go-beyond-managing-and-start-learning-from-big-data-analytics/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 19:00:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[big data analytics]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/143434/756fdf9a-1864-487d-830a-01205d76a81d</guid>
		<description><![CDATA[Big data shouldn&#8217;t be about moving around massive piles of bits. Instead, it should be about learning what will make a difference&#8211; separating the &#8220;signals&#8221; that contain actionable information from the &#8220;noise&#8221; &#8211; everything else. Mark Barrenecha, CEO of Open Text, points out in a Forbes article &#8220;Big Data: Big Hype?&#8221; that improving management of [...]]]></description>
			<content:encoded><![CDATA[<p>Big data shouldn&#8217;t be about moving around massive piles of bits. Instead, it should be about learning what will make a difference&#8211; separating the &#8220;signals&#8221; that contain actionable information from the &#8220;noise&#8221; &#8211; everything else. Mark Barrenecha, CEO of Open Text, points out in a <em>Forbes</em> article &#8220;<a href="http://www.forbes.com/sites/ciocentral/2013/02/04/big-data-big-hype/">Big Data: Big Hype</a>?&#8221; that improving management of unstructured data can be a huge step forward. We just spend way too much time talking about big data storage and not nearly enough about <a href="http://www.agilone.com/">big data analytics</a>.</p>
<p><img src="http://www.agilone.com/wp-content/uploads/blog-11-image1.png" alt="" title="blog 11 image" width="809" height="458" class="aligncenter size-full wp-image-4468" /></p>
<p>We&#8217;re so intimidated by unstructured data &#8211; fully 80 percent of all data &#8211; that we don&#8217;t spend enough time improving it. This prevents us from recognizing that our hands and our feet are attached to the same body. We don&#8217;t connect the well-organized transactional data we already have with the flood of new data. We&#8217;re so flummoxed by the big &#8220;Vs&#8221; &#8211; volume, variety, velocity &#8211; that only 0.5 percent of all data is being analyzed, according to IDC.</p>
<p>It&#8217;s time to shake off that mantle of fear. As Barrenecha says, &#8220;We have arrived at the point where we have practical solutions to address all aspects of enterprise information management.&#8221; Absolutely true. What we don&#8217;t always have is a CIO who takes a holistic view of setting big data strategy &#8211; a leader with vision is critical for leading us out of the valley of despair to implement not just centralized information management <em>technology</em>, but also <em>policy</em> that can prioritize data to be analyzed. That 0.5 percent analysis number sounds pathetic &#8211; and it is &#8211; but we certainly don&#8217;t need to analyze 100 percent of all the data we encounter &#8211; that&#8217;s not just noise; it&#8217;s a cacophony. We need to set priorities and collapse age-old obstacles between divisions. The <a href="http://www.agilone.com/">technology for signal extraction</a> is already here; we just need leaders who can reach across the aisles and get above the hype.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/how-to-go-beyond-managing-and-start-learning-from-big-data-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Real View of Customer Experience Demands Big Data</title>
		<link>http://www.agilone.com/email-marketing/a-real-view-of-customer-experience-demands-big-data/</link>
		<comments>http://www.agilone.com/email-marketing/a-real-view-of-customer-experience-demands-big-data/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 23:51:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[multichannel campaign management]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/143279/9ccbbe3a-042f-411b-a796-324c9c6c515c</guid>
		<description><![CDATA[Is it possible to do your job as a customer experience officer without a trove of big data about your customer&#8217;s behavior? Probably not. Do most companies really know how to listen to the Voice of the Customer? Definitely not. If we expect to make any headway in multichannel campaign management and have a meaningful [...]]]></description>
			<content:encoded><![CDATA[<p>Is it possible to do your job as a customer experience officer without a trove of big data about your customer&#8217;s behavior? Probably not. Do most companies really know how to listen to the Voice of the Customer? Definitely not. If we expect to make any headway in <a href="http://www.agilone.com/">multichannel campaign management</a> and have a meaningful dialogue with our customers, we&#8217;re going to have to break data out of silos and make the customer experience a C-level priority, according to Ryan Hollenbeck in the <em>InformationWeek </em>article, &#8220;<a href="http://www.informationweek.in/storage/13-01-10/big_data_driving_the_role_of_customer_experience_officer.aspx" target="_blank">Big Data driving the role of Customer Experience Officer</a>.&#8221;</p>
<p>If we are going to take action on big data, we need to stop focusing on &#8220;data management&#8221; and start focusing on actionable events &#8211; Hollenbeck suggests all departments, not just marketers, funnel their data through an &#8220;Office of The Customer Experience.&#8221; These days every business unit from customer service to product management gathers information in its own way, and can&#8217;t see the big data picture. In each of these silos, the Voice of the Customer sings, but companies don&#8217;t hear it as harmony. Customers get frustrated because they want a company to listen to them across all of the channels they use. The best way to solve this problem is through a unified, company-wide effort to capture and analyze big data that really pays attention to the customer experience.</p>
<p><a href="http://bcpd.biltmore.com/2013/uncategorized/providing-good-customer-service-could-be-the-difference-between-successor-not/" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/customer-service2.jpg" alt="" title="Customer service feedback" width="369" height="278" class="aligncenter size-full wp-image-4472" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/a-real-view-of-customer-experience-demands-big-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Practical Advice on Customer Retention: Yaz Says it Right: Don’t Go</title>
		<link>http://www.agilone.com/email-marketing/practical-advice-on-customer-retention-yaz-says-it-right-don%e2%80%99t-go/</link>
		<comments>http://www.agilone.com/email-marketing/practical-advice-on-customer-retention-yaz-says-it-right-don%e2%80%99t-go/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 18:14:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[retail retention]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/143150/bc6f601b-664c-48e2-950a-2eeab9a8aaf9</guid>
		<description><![CDATA[Baby make your mind up give me what you got Fix me with your lovin&#8217; shut the door and turn the lock Hey go get the doctor, doctor came too late Another night i feel alright my love for you can&#8217;t wait&#160; Don&#8217;t go. Universal plea from all marketers to our best customers. But wait [...]]]></description>
			<content:encoded><![CDATA[<p><em>Baby make your mind up give me what you got<br /> Fix me with your lovin&#8217; shut the door and turn the lock<br /> Hey go get the doctor, doctor came too late<br /> Another night i feel alright my love for you can&#8217;t wait&nbsp;</em></p>
<p><em></em>Don&#8217;t go. Universal plea from all marketers to our best customers. But wait &#8211; do we even know who they are? Do we have a great program to retain them?</p>
<p>Retention is a huge priority for us marketers. And a huge pain.</p>
<p>According to an RSR Research surveyfeatured in a <em>MarketingCharts</em> article, &#8220;<a href="http://www.marketingcharts.com/wp/direct/customer-retention-and-loyalty-seen-a-big-battle-for-retailers-23461/" target="_blank">Customer Retention and Loyalty Seen a Big Battle for Retailers</a>,&#8221; we cited retention as our top marketing priority.</p>
<p>But the question remains, how exactly can marketers start to develop loyalty with our customers? According to the respondents (and at no surprise to the AgilOne team) predictive analytics is the most important weapon in <a href="http://www.agilone.com/">retail retention</a>. Marketers are starting to realize that customer demand is much more important than what we make or sell &#8211; 57% of respondents said customer purchase analytics are &#8220;very valuable.&#8221; But even more telling &#8211; and alarming &#8211; only 56% of the respondents said they knew who their best customers were, down from 73% in 2011.</p>
<p>In order to make leaps and bounds in customer retention &#8211; and start to really identify your biggest and most frequent spenders &#8211; marketers will need to push more heavily into predictive analytics. The RSR report goes on to say that 33% of respondents believed predictive analytics would be &#8220;very valuable,&#8221; while 26% had made a budget to build or acquire predictive analytics, and 23% were implementing or had already implemented a solution. Expect to see these priorities increase even more throughout 2013! So we can avoid, as Yaz says, the situation where &#8220;the doctor came too late&#8221;.&nbsp;</p>
<p><img src="http://www.agilone.com/wp-content/uploads/220px-Yaz_-_Dont_Go1.jpg" alt="" title="220px-Yaz_-_Don&#039;t_Go" width="220" height="223" class="aligncenter size-full wp-image-4474" />&nbsp;<a href="http://en.wikipedia.org/wiki/Don't_Go_(Yazoo_song)" title="(image source)" target="_blank">(image source)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/practical-advice-on-customer-retention-yaz-says-it-right-don%e2%80%99t-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do Marketers Lack the Optimization Tools They Need?</title>
		<link>http://www.agilone.com/email-marketing/do-marketers-lack-the-optimization-tools-they-need/</link>
		<comments>http://www.agilone.com/email-marketing/do-marketers-lack-the-optimization-tools-they-need/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 21:08:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[marketing optimization tool]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/143056/60a5ceea-28d8-40e1-afe4-305d4f75e42e</guid>
		<description><![CDATA[Have you ever read through an article, then read back through it again because it felt like something was missing? That&#8217;s what I did when I read Steve Olenski&#8217;s article in Forbes, &#8220;Content Marketing And E-Commerce Tops Digital Marketers Priority List for 2013,&#8221; which chronicles a report from Econsultancy on marketers&#8217; priorities for 2013. What [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever read through an article, then read back through it again because it felt like something was missing? That&#8217;s what I did when I read Steve Olenski&#8217;s article in <em>Forbes</em>, &#8220;<a href="http://www.forbes.com/sites/marketshare/2013/01/11/content-marketing-and-e-commerce-tops-digital-marketers-priority-list-for-2013/" target="_blank">Content Marketing And E-Commerce Tops Digital Marketers Priority List for 2013</a>,&#8221; which chronicles a report from Econsultancy on marketers&#8217; priorities for 2013. What caught my attention was a little cognitive dissonance &#8211; even though &#8220;social media engagement&#8221; was listed as one of the top priorities for 2013, with 38% of respondents listing it as among the top three priorities, the report also showed a decrease in prioritization of &#8220;social media analytics,&#8221; from 19% to only 9%.</p>
<p>How can that be? How can we engage effectively, without conducting analysis of every touch point, even the hard ones? Does this mean that marketers are de-prioritizing social media analytics because they have it all figured out? Or is it because the social media analytics they&#8217;ve attempted to date haven&#8217;t helped them optimize their engagement with customers and partners? Are the social media analytics these folks have investigated in a silo, or do they meld with other data sources? The Econsultancy &#8220;<a href="http://econsultancy.com/us/reports/quarterly-digital-intelligence-briefing-digital-trends-for-2013" target="_blank">Quarterly Digital Intelligence Briefing</a>&#8221; report says the consultants interviewed &#8220;more than 700 digital professionals&#8221; and have themselves concluded that &#8220;social media analytics as a focus is (worryingly) not on the radar as a priority for many companies.&#8221; </p>
<p>From this report, Olenski infers that although marketing optimization matters, few marketers know how they will go about it, which begs the question of whether they are finding <a href="http://www.agilone.com/">marketing optimization tools</a> to fill the gap between interest and action. <a href="http://www.agilone.com/products/">Here at AgilOne, we have the answer!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/do-marketers-lack-the-optimization-tools-they-need/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Industry luminary Scoble on AgilOne: How to Understand Your Customers on a 360 View</title>
		<link>http://www.agilone.com/email-marketing/industry-luminary-scoble-on-agilone-how-to-understand-your-customers-on-a-360-view/</link>
		<comments>http://www.agilone.com/email-marketing/industry-luminary-scoble-on-agilone-how-to-understand-your-customers-on-a-360-view/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 17:12:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/142984/a4e0fe33-563c-4ed1-b87b-4586ead7059e</guid>
		<description><![CDATA[Check out this video interview with our CEO Omer Artun and Robert Scoble &#8211; a key industry influencer, blogger, and author. He covers all of the big players in Silicon Valley &#8211; including Facebook, Google, Apple, Yahoo! &#8211; but he also focuses on the up and comers as well &#8211; now including AgilOne! Take a [...]]]></description>
			<content:encoded><![CDATA[<p>Check out this video interview with our CEO Omer Artun and <a href="http://scobleizer.com/">Robert Scoble</a> &#8211; a key industry influencer, blogger, and author. He covers all of the big players in Silicon Valley &#8211; including Facebook, Google, Apple, Yahoo! &#8211; but he also focuses on the up and comers as well &#8211; now including AgilOne!</p>
<p><a href="https://plus.google.com/+Scobleizer/posts/MqQMotoTWfH" target="_blank"><img src="http://www.agilone.com/wp-content/uploads/scoble1.jpg" alt="" title="scoble" width="410" height="137" class="aligncenter size-full wp-image-4479" /></a><br /><a href="https://plus.google.com/+Scobleizer/posts/MqQMotoTWfH" target="_blank"></a></p>
<p><a href="https://plus.google.com/+Scobleizer/posts/MqQMotoTWfH" target="_blank">Take a look at their conversation.</a>You&#8217;ll see: &nbsp;</p>
<ul>
<li><span style="font-size: 1em;">Omer&#8217;s inspiration for building AgilOne from the ground up</span></li>
<li><span style="font-size: 1em;">How marketing is changing now that consumers are in the driver&#8217;s seat with purchases</span></li>
<li><span style="font-size: 1em;">Omer&#8217;s background in machine learning and how it inspires our work in predictive analytics</span></li>
<li><span style="font-size: 1em;">How AgilOne allows marketers to take meaningful action to generate revenue</span></li>
</ul>
<p><span style="font-size: 1em;">Or, in Scoble&#8217;s own words: </span><em style="font-size: 1em;">AgilOne&#8217;s CEO Omer Artun explains how it uses data management, marketing intelligence and predictive analysis to become a marketer&#8217;s solution and not just a tool. With its smart features, it provides marketers the ability to pinpoint their campaigns to the customers they really want.</em><br /><span style="font-size: 1em;"></span></p>
<p><span style="font-size: 1em;">What do you think of the interview? Let us know in the comments section!&nbsp;</span><br /><em>&nbsp;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/industry-luminary-scoble-on-agilone-how-to-understand-your-customers-on-a-360-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Playing Whac-a-Mole: Accelerating Time to Answer</title>
		<link>http://www.agilone.com/email-marketing/stop-playing-whac-a-mole-accelerating-time-to-answer/</link>
		<comments>http://www.agilone.com/email-marketing/stop-playing-whac-a-mole-accelerating-time-to-answer/#comments</comments>
		<pubDate>Sun, 10 Feb 2013 15:00:00 +0000</pubDate>
		<dc:creator>AgilOne Marketing</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[business intelligence]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/142877/a8ff9c20-004d-45e1-83dd-2c7ece17466c</guid>
		<description><![CDATA[Ever been in a meeting where everyone is stepping on each other trying to be the first to answer a question? It&#8217;s like Whac-a-Mole for grownups.&#160; It&#8217;s even worse in the world of big data. Everyone is embracing it &#8211; but how fast can you get a meaningful answer? First, a company needs to prioritize [...]]]></description>
			<content:encoded><![CDATA[<p>Ever been in a meeting where everyone is stepping on each other trying to be the first to answer a question? It&#8217;s like <a href="[http://en.wikipedia.org/wiki/Whac-A-Mole]" title="Whac-a-Mole" target="_blank">Whac-a-Mole</a> for grownups.&nbsp;</p>
<p>It&#8217;s even worse in the world of big data. Everyone is embracing it &#8211; but how fast can you get a meaningful answer?</p>
<p><b>First, a company needs to prioritize big data projects</b>.</p>
<p>NewVantage Partners interviewed C-level executives at more than 50 enterprise-size companies and found that over 75%&nbsp;&nbsp; were investing greater than $1 million per year on big data technology. Want to make your eyebrows raise even higher? 25% of large companies were investing more than $10 million! And according to a Computerworld/IDG News Service article on the study, &#8220;<a href="http://news.idg.no/cw/art.cfm?id=A4BDE71D-C7F1-3DFA-249B962FB9FF69A3" target="_blank">How to Use Big Data to Make Faster and Better Business Decisions</a>,&#8221; their investment is paying off.&nbsp; &#8220;They made it absolutely clear they could not do the programs they were doing without Big Data,&#8221; said Paul Barth, founder and managing partner of NewVantage Partners.So what exactly is the benefit behind embracing big data?</p>
<p><b>Second, how fast can you answer?</b></p>
<p>According to these surveyed companies, the real value comes from speeding up the time it takes to get to a business decision, or time-to-answer (TTA).</p>
<p>As Barth put it, &#8220;If your time-to-answer is 30 minutes in one case and 30 seconds in another, it really changes your business processes. It makes you much more effective as a business analyst.&#8221; &nbsp;Of course, just having more data won&#8217;t speed up time-to-answer, and this has implications&nbsp; across the organization. One flaw in thinking about big data is that it requires separate organizational responsibility and infrastructure. As if data is in a silo. Traditionally, organizations have separated <a href="http://www.agilone.com/">analytics and business intelligence</a> from data management. To improve TTA, the most cutting-edge companies are combining data management, analytics and business intelligence, and all data &#8211;&nbsp; creating a big data &#8220;ecosystem&#8221;.</p>
<p>What <em>is</em> different about big data is that is can be explored as it arrives, without the need to clean, sort and write complex queries against it. Big data tells us what&#8217;s &#8220;new,&#8221; while enterprise data warehouses and traditional business intelligence tells us what&#8217;s &#8220;known.&#8221; We need both. Getting it to all work together will make us better marketers, and better businesses. And keep Whac-a-Mole in the arcade where it belongs!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/stop-playing-whac-a-mole-accelerating-time-to-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping up with big data query technologies?</title>
		<link>http://www.agilone.com/email-marketing/keeping-up-with-big-data-query-technologies/</link>
		<comments>http://www.agilone.com/email-marketing/keeping-up-with-big-data-query-technologies/#comments</comments>
		<pubDate>Fri, 08 Feb 2013 22:18:00 +0000</pubDate>
		<dc:creator>Jari Koister</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[big data]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://info.agilone.com/blog/bid/142848/7c54ebb0-b3a9-42c0-85fa-222d1fb7b919</guid>
		<description><![CDATA[Keeping up with big data query technologies is a real challenge. Luckily for AgilOne customers, we do the work for them. But if you are sifting through all the different offerings, I have some advice from our evaluations. At AgilOne we use a number of databases and data storage technologies. We provide our customers with [...]]]></description>
			<content:encoded><![CDATA[<p>Keeping up with big data query technologies is a real challenge. Luckily for AgilOne customers, we do the work for them. But if you are sifting through all the different offerings, I have some advice from our evaluations. At AgilOne we use a number of databases and data storage technologies. We provide our customers with features that require a variety of techniques spanning from state-of-the-art machine learning to speed-of-thought query services. Clearly there is no one technology that will satisfy all our needs. A general high-level categorization labels the various offerings as supporting batch, interactive, or streaming analytics. For the purpose of this blog post we focus on technologies for interactive big data queries.</p>
<p>Picking the right technology and approach to these problems is of strategic importance to us; hence we constantly look at how to evolve our infrastructure. It is nice for our customers, as they do not need to keep up with all the developments in this fluid space. Recently we looked at new ways of implementing our query services. We use it to allow customer to conducted domain oriented business intelligence queries at speed-of-though.</p>
<p>How you compare and contrast technologies depends on the problem at hand. In our case we looked at it from the perspective of speed-of-thought queries in SQL or a SQL &#8220;like&#8221; language, as well as the possibility of providing a pivoting UI on top of the query engine. We did not intend to satisfy other needs such as implementing machine learning or data cleansing with this solutions.</p>
<p>&nbsp;The number of available technology offerings is growing day by day. Some solutions focus on providing very scalable analytics engines for very large datasets. Some focus on providing very fast query engines using columnar storage techniques. Other technologies try to provide both a NoSQL and RDBMS platform and solve the &#8220;thin pipe&#8221; problem. With the growing popularity of Hadoop, shuffling data between NoSQL stores (HDFS) and relational stores has become a bottleneck. The &#8220;thin pipe&#8221; refers to technologies like Scoop that provide a data transfer mechanism, but with relatively low transfer speeds. Other solutions provide massively scalable mechanisms for creating aggregated data allowing for quick queries, but requiring background aggregation processes. In addition traditional relational database vendors are combining columnar store or NOSQL implementations with traditional implementations of relations models so that enterprises can take advantage of both using one infrastructure component.</p>
<p>In our case we had additional consideration; being a cloud service we need to consider how well the solutions work for a multi-tenant solution storing lots of data. This is in fact a very significant consideration as it has both technical and economic implications.</p>
<p>&nbsp;As a first step to help guide what to look for in these technologies, I propose you consider the following dimensions:</p>
<p>1)&nbsp;&nbsp;&nbsp; How much data will you store? Is 100TB enough? Will you need several 100TB&#8217;s or do you need something that scales beyond that? For many enterprises 100TB is enough.</p>
<p>2)&nbsp;&nbsp;&nbsp; If you need to scale beyond 100TB&#8217;s are you prepared to invest money and resources into developing sharding over multiple data stores? The alternative is to require that the solution automatically takes care of the scaling-out for you.</p>
<p>3)&nbsp;&nbsp;&nbsp; What kind of query language do you need? Is it enough with a subset of SQL for simpler select queries or do you need the full SQL? Do you use tools that generate MDX queries?</p>
<p>4)&nbsp;&nbsp;&nbsp; Do you want a commercial product or are you comfortable using an open source solution. If you are comfortable with an open source solution do you think you need commercial support?</p>
<p>5)&nbsp;&nbsp;&nbsp; Is this strategic for you? and if so are you prepared to be an early adopter of a new technology that may give you an edge?</p>
<p>The diagram below informally illustrates some of the many aspects you may consider. Scale-up implies that the solutions architecture is not centered at a scale-out model. Super scale-out indicates the solutions main design center is around scaling to very very large data sets. The size of the circle indicates the price point, with more expensive offerings being larger circles than others. &nbsp;The color indicates maturity: green indicating very mature, yellow early in life cycle, and red very early.</p>
<p><img src="http://www.agilone.com/wp-content/uploads/untitled-resized-6001.png" alt="" title="untitled-resized-600" width="600" height="423" class="aligncenter size-full wp-image-4483" /></p>
<p>Things evolve quickly in the space of analytics databases right now. Solutions evolve and new solutions become available, and the strategies of emerging technology companies in this space are still evolving. You need to decide if this technology is strategic for your company and make your decision accordingly, and know what problem you are solving.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agilone.com/email-marketing/keeping-up-with-big-data-query-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
