<?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>Search Engine Land &#187; SEM Tools</title>
	<atom:link href="http://searchengineland.com/library/sem-tools/feed" rel="self" type="application/rss+xml" />
	<link>http://searchengineland.com</link>
	<description>Search Engine Land: News On Search Engines, Search Engine Optimization (SEO) &#38; Search Engine Marketing (SEM)</description>
	<lastBuildDate>Fri, 10 Feb 2012 01:45:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How To Track Emerging Search Engine Blekko In Web Analytics Systems</title>
		<link>http://searchengineland.com/how-to-track-emerging-search-engine-blekko-in-web-analytics-systems-106064</link>
		<comments>http://searchengineland.com/how-to-track-emerging-search-engine-blekko-in-web-analytics-systems-106064#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:01:40 +0000</pubDate>
		<dc:creator>Sean Carlos</dc:creator>
				<category><![CDATA[Blekko]]></category>
		<category><![CDATA[How To: Analytics]]></category>
		<category><![CDATA[Search & Analytics]]></category>
		<category><![CDATA[SEM Tools: Web Analytics]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=106064</guid>
		<description><![CDATA[More than a year has passed since search engine upstart blekko launched, yet Web marketing analysts using digital media measurement tools like Google Analytics won&#8217;t have seen any traffic attributed to blekko in organic search marketing reports. Instead, traffic supplied by blekko will show up in a referring websites report. It is possible to properly [...]]]></description>
			<content:encoded><![CDATA[<p>More than a year has passed since search engine upstart blekko <a href="http://searchengineland.com/blekko-the-slashtag-search-engine-goes-live-54447">launched</a>, yet Web marketing analysts using digital media measurement tools like Google Analytics won&#8217;t have seen any traffic attributed to blekko in organic search marketing reports. Instead, traffic supplied by blekko will show up in a referring websites report.</p>
<p>It is possible to properly attribute blekko search traffic referrals by implementing advanced Web analytics configuration techniques.</p>
<p>Is the extra effort worth the trouble? Certainly investors are betting on blekko. In late September, blekko received an addition $30 million <a href="http://company.yandex.com/press_center/press_releases/2011/2011-09-29_1.xml">investment</a>, half of which was from Russian search engine Yandex.</p>
<h2>Why Web Analytics Systems Can&#8217;t See Blekko&#8217;s Search Keywords</h2>
<p>The underlying difficulty many Web analytics systems encounter in recognizing blekko as a search engine is due to a reliance on search engines to specify the search keywords in the request for the destination webpage by using parameters in the referrer URL.</p>
<p>Unfortunately, blekko deviates from what has historically been the de facto standard for transmission of search query information. In the absence of advanced tool configuration, traffic from blekko will show up in a referring sites report instead of an organic search traffic report.</p>
<p>While this scenario is better than nothing, it makes keyword analysis difficult. Knowledge and analysis of search query keywords is a key element of search marketing as a user&#8217;s search keywords express their intent when selecting a site from a listing of search results.</p>
<p>In the following discussion, Google Analytics will be used to illustrate solutions, but the same data transformation logic can be applied to other tools as well. The technically inclined are encouraged to read on. Everyone else might want to pass this article on to their technical staff for analysis and implementation.</p>
<h2>Deconstructing &amp; &#8220;Fixing&#8221; The Blekko Search Referrer</h2>
<p>A typical blekko referrer URL contains blekko&#8217;s domain name, the parameter <em>ws</em> and the user query. Spaces between multiple query words are replaced with plus signs.</p>
<p>In the following example, the user&#8217;s search keywords <em>stop+blekko+indexing</em> follow <em>http://blekko.com/ws/</em> in the search engine results page URL, visible in the browser address bar.</p>
<div id="attachment_106067" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-106067 " src="http://searchengineland.com/figz/wp-content/seloads/2011/12/blekko-results-600.png" alt="A blekko search result with user keywords in the result URL" width="600" height="252" /><p class="wp-caption-text">Figure 1: A blekko search result with user keywords in the result URL</p></div>
<p>Unfortunately, this isn&#8217;t in the form most Web analytics systems were designed to recognize when processing organic search traffic.</p>
<p>The URL piece <em>ws/</em> needs to be expressed as a parameter, in the format name = value, i.e. <em>?ws=stop+blekko+indexing</em>.</p>
<p>Thus: <code>http://blekko.com/<strong>ws/</strong>stop+blekko+indexing</code> needs to be transformed into <code>http://blekko.com/<strong>?ws=</strong>stop+blekko+indexing</code></p>
<h2>Two Possible Solutions To Solving The blekko Attribution Problem</h2>
<p>There are two potential solutions to proper recognition of blekko as a search engine by Web analytics systems. The first approach is to modify the raw data sent to the Web analytics data collection system. The second is to transform the data collected by the Web analytics system before it is processed for reporting.</p>
<h2>Option 1: Modify The Search Referrer Sent To Google Analytics</h2>
<p>The blekko referrer URL needs to be transformed into the de facto standard format which includes the user query using URL parameters, e.g. <em>?query=keywords</em>, a format recognized by most Web analytics systems. JavaScript is well suited to this type of task.</p>
<p>The HTML standard doesn&#8217;t allow direct manipulation of the document (page) referrer, but the referrer sent to the Google Analytics data collection system can be changed by assigning the modified value to a special parameter, <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiCampaignTracking.html#_gat.GA_Tracker_._setReferrerOverride">_setReferrerOverride</a>.</p>
<p>In the asynchronous Google Analytics tracking code which follows, the code in bold will transform blekko referrer URLs and assign the result to <code>_setReferrerOverride</code>.</p>
<p>The code:</p>
<ul>
<li>assigns the page referrer to the variable <code>blekref</code></li>
<li>tests to see if <code>blekref</code> contains the string <code>http://blekko.com/ws/</code>
<ul>
<li>if so, tests to see if <code>http://blekko.com/ws/</code>already contains URL parameters, which start with a ?
<ul>
<li>if so, substitutes the ? with a &amp; which indicates successive URL parameters</li>
</ul>
</li>
<li>substitutes <code>ws/</code> with <code>?ws=</code></li>
<li>places the modified URL in the Google Analytics variable <code>_setReferrerOverride</code></li>
</ul>
</li>
</ul>
<p><code>&lt;script type="text/javascript"&gt; var _gaq = _gaq || []; _gaq.push(['_setAccount','UA-xxxxx-1']); <strong>var blekref = document.referrer ; if (~blekref.indexOf('http://blekko.com/ws/')) { if (~blekref.indexOf('?')) { blekref = document.referrer.replace('?','&amp;'); } blekref = blekref.replace('/ws/', '/?ws='); _gaq.push(['_setReferrerOverride',blekref]); }</strong> _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); &lt;/script&gt;</code></p>
<p><em>Note:</em> this code will need to be modified if blekko changes their URLs, such as using www.blekko.com in addition to blekko.com.</p>
<p>As with any code changes, do be sure to consult current Google documentation and fully test changes before putting them in production. JavaScript errors in a page can stop successive JavaScript from being executed. No warranties are provided, implied or otherwise!</p>
<h2>Tell Google Analytics How To Recognize blekko As A Search Engine</h2>
<p>Once blekko&#8217;s referrer string has been transformed into the standard <em>query parameter = keywords</em> format, the second and final step is to add blekko to Google Analytics&#8217; list of known search engines.</p>
<p>This also has to be done within the Google Analytics tracking code inserted in each page of the website.</p>
<p>The syntax to add a search engine is of the form:</p>
<pre style="padding-left: 30px;"><code>_gaq.push(['_addOrganic','blekko','ws']);</code></pre>
<p>where <em>blekko</em> is a string in the referrer domain and <em>ws</em> is the query parameter name.</p>
<p>This has to be inserted somewhere before the <code>['_trackPageview']</code> call, i.e. from the above example we can change</p>
<pre style="padding-left: 30px;"><code>_gaq.push(['_trackPageview']);</code></pre>
<p>to</p>
<pre style="padding-left: 30px;"><code>_gaq.push(<strong>['_addOrganic','blekko','ws'],</strong>['_trackPageview']);</code></pre>
<p>A more in depth discussion on working with the <code>_addOrganic</code> configuration option can be found in an article on Google Analytics <a href="http://antezeta.com/news/google-analytics-search-engines">search engines list customization</a>.</p>
<h2>Tracking Page Speed In Google Analytics?</h2>
<p>During testing, it emerged that Google Analytics would ignore the value of <code>_setReferrerOverride</code> if <code><a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._trackPageLoadTime">_trackPageLoadTime</a></code> was specified.</p>
<p>Using the Google Analytics debugger, it became clear that Google was deprecating <code>_trackPageLoadTime</code> so the message is simple: remove <code>_trackPageLoadTime</code> from existing tracking code to avoid unforeseen consequences.</p>
<h2>Option 2: Transforming Collected Data</h2>
<p>Should sites not be able to modify their Google Analytics tracking code, or should their Web analytics system not provide a referral override option, there is a second approach which should work as well. The technique involves transforming the collected data before reports are created.</p>
<p>In Google Analytics, <a href="http://support.google.com/googleanalytics/bin/answer.py?answer=55593">Profile filters</a> perform this task. Filters are a wonderful, but underutilized, Google Analytics feature and this is a great example to show off their potential. The process is:</p>
<ol>
<li>Identify search referrals from blekko</li>
<li>Update the <em>medium</em>, <em>source</em> and <em>term</em> campaign fields accordingly.</li>
</ol>
<p>Unfortunately, Google Analytics only allows a profile filter to update one field at a time, so it will be necessary to create multiple filters.</p>
<p>To do this, enter the Google Analytics administration area and create new advanced custom profile filters as illustrated below. Filters can be created at the account level, making it easy to quickly apply the filters to multiple profiles.</p>
<div id="attachment_106068" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-106068 " src="http://searchengineland.com/figz/wp-content/seloads/2011/12/blekko-set-medium-filter-600.png" alt="Blekko set campaign medium filter." width="600" height="419" /><p class="wp-caption-text">Figure 2: Blekko set campaign medium filter.</p></div>
<p>The above filter selects referral traffic from Blekko which contains <code>/ws/</code> in the URL and changes the Google Analytics Campaign Medium from <em>referral</em> to <em>organic</em> (required for blekko traffic to appear in the organic search report).</p>
<p>Currently, it isn&#8217;t strictly necessary to include the Field B requirement, but it may be helpful in order differentiate from paid search should Blekko offer it in the future. Note that the values <em>referral</em> and <em>organic</em> must be in English, even if the Google Analytics interface is in a different language.</p>
<div id="attachment_106069" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-106069 " src="http://searchengineland.com/figz/wp-content/seloads/2011/12/blekko-set-source-filter-600.png" alt="Blekko set campaign source filter" width="600" height="412" /><p class="wp-caption-text">Figure 3: Blekko set campaign source filter</p></div>
<p>Google Analytics will automatically identify blekko.com as the source of traffic, however, some may want to see the source report as &#8220;blekko&#8221; instead of &#8220;blekko.com&#8221; in their reports, so as to be consistent with the other search traffic sources. The above filter, which is optional, will do just that.</p>
<div id="attachment_106072" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-106072 " src="http://searchengineland.com/figz/wp-content/seloads/2011/12/blekko-set-terms-filter-600.png" alt="Blekko set campaign terms filter" width="600" height="418" /><p class="wp-caption-text">Figure 4: Blekko set campaign terms filter</p></div>
<p>The set campaign terms filter captures the user&#8217;s search query and places it in the <em>Campaign Term</em> field, the source of the keywords which appear in the Google Analytics organic search traffic report.</p>
<p>The key is in the regular expression specified in Field A:</p>
<p style="padding-left: 30px;"><code>^http://blekko\.com/ws/(.+)\??</code></p>
<p>It says, select referrers which start with <code>http://blekko.com/ws/</code>, capture everything that follows up to a question mark, which may or may not be present, and put the result in the campaign terms field.</p>
<p>Astute readers might note there is still one problem remaining: multiple keywords will still be separated by one or more plus signs which should be converted to spaces.</p>
<p>Unfortunately, it doesn&#8217;t seem that Google Analytics supports global (multiple) substitution using filters, but in the spirit of crowd sourcing, a reader may want to chime in to improve this last step.</p>
<p>One work around might be to create multiple substitution filters which will replace a single + with a single space:</p>
<div id="attachment_106073" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-106073 " src="http://searchengineland.com/figz/wp-content/seloads/2011/12/blekko-replace-plus-600.png" alt="Filter to substitute one plus sign, +, in blekko search keywords, with a space" width="600" height="422" /><p class="wp-caption-text">Figure 5: Filter to substitute one plus sign, +, in blekko search keywords, with a space</p></div>
<p>Once the profile filters are created, they need to be activated by apply them to each Google Analytics profile.</p>
<p>The order in which the filters are applied is not important, with the exception of the plus sign substitution filters, which must come after the set campaign term filter. A Google Analytics best practice is to keep at least one profile without any filters as once data has been transformed by filters as there isn&#8217;t any way to revert filter changes.</p>
<p>An unadulterated profile is also helpful in troubleshooting any issues which may arise. New filters can (and should) be tested on a new &#8220;throw-away&#8221; profile before being applied to production profiles.</p>
<h2>A Note About blekko&#8217;s Slash Tags</h2>
<p>One of Blekko&#8217;s distinguishing features is the ability, encouraged by blekko, of users to further restrict their search queries using search operators and filters, what blekko calls <em>slashtags</em>. As the slash tags do condition the user&#8217;s query, and to a degree express the user&#8217;s intent, neither of the approaches illustrated above attempts to remove slashtags, if present, from the search query keywords.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/how-to-track-emerging-search-engine-blekko-in-web-analytics-systems-106064/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link Building Tool Review: Majestic SEO</title>
		<link>http://searchengineland.com/link-building-tool-review-majestic-seo-103646</link>
		<comments>http://searchengineland.com/link-building-tool-review-majestic-seo-103646#comments</comments>
		<pubDate>Tue, 13 Dec 2011 14:25:04 +0000</pubDate>
		<dc:creator>Julie Joyce</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[Link Building: General]]></category>
		<category><![CDATA[Link Week]]></category>
		<category><![CDATA[SEM Tools: Links]]></category>
		<category><![CDATA[link tool review]]></category>
		<category><![CDATA[link tools]]></category>
		<category><![CDATA[Majestic SEO]]></category>
		<category><![CDATA[Majestic SEO review]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=103646</guid>
		<description><![CDATA[Next up in our tool review series is Majestic SEO&#8216;s suite. There are 4 levels of access with one being free (and limited) and the others being grouped by the amount of reports/access to their API needed. (Note: the free package may still require you to register in order to see a fuller dataset.) Paid plans [...]]]></description>
			<content:encoded><![CDATA[<p>Next up in our tool review series is <a title="Majestic SEO" href="http://www.majesticseo.com/">Majestic SEO</a>&#8216;s suite. There are 4 levels of access with one being free (and limited) and the others being grouped by the amount of reports/access to their API needed. (Note: the free package may still require you to register in order to see a fuller dataset.) Paid plans range from £29.99 to £250.00 per month, excluding VAT (and for those of you not familiar with VAT, it&#8217;s a value-added tax on the purchase price.)</p>
<p>For our purposes here in Link Week, I&#8217;ll be reviewing the Site Explorer, Backlink History, Neighbourhood Checker, and Clique Hunter.</p>
<h2>Basic Tool Functions</h2>
<p>First up is the <a title="Majestic SEO Site Explorer" href="http://www.majesticseo.com/reports/site-explorer">Site Explorer</a>, which takes your URL and returns tons of information: Summary, Top Backlinks, Referring Domains, and Top Pages. Each section is represented on the results page, but you can click on the tabs and get more in-depth info if you like. You can choose the Fresh Index or the Historic Index and run the report on either the domain, the subdomain, or the page itself.</p>
<p>My favorite tool, the Backlink History, also shows up here in the results page but not in its own tab. Now, a note on the <a title="Fresh vs Historic Index" href="http://blog.majesticseo.com/development/site-explorer-fresh-index/">Fresh vs. Historic Index</a>: the Fresh index gives you information from a rolling 30 day period and is more, um, fresh, while the Historic index gives you everything in Majestic&#8217;s history for a site.</p>
<p>The Domain Information gives you your Referring Domains and External Backlinks, so you can quickly tell if you have a lot of sitewides (if you have 10k backlinks and 10 referring domains, yes, you have a lot of sitewides.)</p>
<p>Your backlinks and referring domains are broken down into educational and governmental and the following information is displayed: Referring IP Addresses, Class C Subnets, Indexed URLs, Images, Nofollow Links, Redirects, Frames, and Deleted Links. You&#8217;ll also see a number called the <a title="Majestic Million" href="http://www.majesticseo.com/reports/majestic-million">Majestic Million</a> which is a list of the top one million domains as rated by Majestic SEO.</p>
<p>The Backlink History shows your 2 charts: 1 is your external backlinks discovery over the past 12 months and the other is your referring domains discovery over the past 12 months. You can click on these two charts in order to go directly to the Backlink History tool and get more information.</p>
<p>The Top Backlinks area shows the Source URL, Anchor Text, Target URL, and Last Crawl Date.</p>
<p>The Referring Domains area lists the top domains that link to your URL.</p>
<p>The Top Pages area lists your top pages: Title, URL, <a title="AC Rank" href="https://www.majesticseo.com/support/glossary#ACRank">AC Rank</a> (which is a measure of how important a page is based on the number of unique referring external root domains), Date, External Backlinks, and Referring Domains.</p>
<h2>How To Interpret The Link Data</h2>
<p>This is a wealth of information for analyzing a backlink profile. If you&#8217;re analyzing your own site, I see numerous uses:</p>
<ul>
<li>Identifying the top pages that link to you and making sure these links stay up. It&#8217;s tricky to watch all your backlinks if you have a lot of them, but if you&#8217;re too overwhelmed, just identify the top ones and track those.</li>
</ul>
<ul>
<li>Identifying your site&#8217;s top pages so that you can continue to build good links to these in particular (and go through your site to ensure that your top pages link to other pages that you think are critical but aren&#8217;t viewed as top ones just yet.)</li>
</ul>
<ul>
<li>Identifying pages of lower importance so that you can work on their content in hopes of generating more backlinks.</li>
</ul>
<p>For competitive analysis, this information can easily be used to see where you stand compared to others in your niche.</p>
<p>For potential link partners, use this data to identify the top pages on a site and go after a link on that page. With so much information, there are truly countless ways of using this data to help better your link building efforts.</p>
<p>Note: I&#8217;d love to include a screenshot here but the information you get takes up a large amount of space and I don&#8217;t think I can do it justice. Since you can see the Site Explorer for free, even if you can&#8217;t get all the detailed data, I&#8217;d suggest checking it out for yourself.</p>
<p>Next up is the <a title="Backlink History" href="http://www.majesticseo.com/reports/compare-domain-backlink-history">Backlink History</a>, which has been something I have relied upon many times (especially when clients are trying to convince me that they know their competitors aren&#8217;t matching/beating their own link building efforts.) You can again use either the fresh or historic index here and you can compare up to five domains. Currently, subdomains are ignored.</p>
<p>This tool shows backlink discovery by month, so let&#8217;s get a screenshot of a few SEO sites to compare (Disclaimer: I write for the three sites used here):</p>
<p style="text-align: center;"><img class="size-large wp-image-103734 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/12/backlinkhistory-600x348.jpg" alt="backlink history" width="600" height="348" /></p>
<p>What you see here is the default view, which is a set of two graphs: backlinks discovery and referring domains discovery in non-cumulative view.</p>
<p>You can view the charts in Monthly, Cumulative, or Normalized forms, see them as a Spline, Line, Column or Area chart, and choose whether you want to see data from 1 year, 2 years, 5 years, or all time.</p>
<p>Majestic SEO advises that you use the Normalized view and/or compare domains in order to get the most comparable data down at the bottom of the page. In these charts, you&#8217;ll see how you compare to your competitors.</p>
<p>It&#8217;s interesting to compare the two charts as well because of the difference in referring domains and backlinks discovery (and for those of you who are new to link building concepts, referring domains would show a value of 1 even if there were 150 links to a site on that same site, but it would show a value of 150 if you were looking at backlinks.)</p>
<p>According to the chart in the screenshot, Search Engine Land has traditionally built more backlinks than the other two but the referring domains numbers between SEL and Search Engine Journal are quite close. (Poor SEO Chicks.) This would make me suspect that Search Engine Land is generating more instances of multiple links on the same domain. In any case, this is a seriously great tool to use to see how your backlinks/referring domains compare with others.</p>
<p>Now we&#8217;ll turn to the <a title="Neighbourhood Checker" href="http://www.majesticseo.com/reports/neighbourhood-checker">Neighbourhood Checker</a>, which accepts either a domain or an IP address. As usual, you can choose either fresh or historic data. This tool shows you the most backlinked domains hosted on any IP or subnet so that you can get a better idea of potentially dangerous cohosted sites.</p>
<p>When you enter your site or IP, you get two lists: one that shows what is cohosted on your IP, and one that shows what is cohosted on your subnet. Here&#8217;s an edited screenshot, as I don&#8217;t want to rile anyone up:</p>
<p style="text-align: center;"><img class="size-large wp-image-103735 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/12/neighCheck-600x181.jpg" alt="Neighbourhood Checker" width="600" height="181" /></p>
<p>The data shown lets you check the site out by visiting it, going to the Site Explorer, or seeing its Backlink History, so checking out what&#8217;s cohosted is pretty simple. You&#8217;re shown the location of the IP, referring domains, and external backlinks to each domain listed.</p>
<p>I would recommend using this tool in conjunction with others that give you a fuller picture, of course, since with the rise in spammy sites over the past decade, it&#8217;s truly difficult to run a report like this and not find something that might seem a bit dangerous at first glance. There are many ways in which this data could be interpreted, so I&#8217;ll leave that up to you.</p>
<p>Last but not least is the <a title="Clique Hunter" href="http://www.majesticseo.com/reports/cliquehunter">Clique Hunter</a> which allows you to enter up to ten unique root domains (with a minimum of two) and shows you a representation of the main sites that link to the sites you&#8217;ve entered, therefore identifying your cliques.</p>
<p>The thickness of the line indicates that more links come from that domain to the domain it points to, so as you can see in the screenshot below, there are lots of links on blogspots that point to Search Engine Land.</p>
<p style="text-align: center;"><img class="size-large wp-image-103736 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/12/cliquehunter-600x201.jpg" alt="Clique Hunter" width="600" height="201" /></p>
<p>&nbsp;</p>
<p>Further down, you can better filter your results by increasing your minimum number of matches, number of results shown, and the depth of analysis. You can then sort the data by about a dozen metrics, ascending or descending, then sort further (like you&#8217;d do with a spreadsheet.)</p>
<p>You&#8217;ll see a list of domains along with the number of linked domains to those sites, matches, Alexa rank, and numbers for your queried domains. For each domain listed, you can visit the site, view the backlink history, see it in Site Explorer, or create an exportable CSV report. There are also links at the bottom that will allow you to view the queried domains in summary form on the Bulk Backlink Checker and the Backlink History.</p>
<p>Interestingly, this tool was inspired by Aaron Wall&#8217;s Hub Finder (my favorite of his set.) Just as with the Site Explorer, there is a multitude of great information here and I can see tons of ways to use it for link building but the main one is simple:</p>
<p style="padding-left: 30px;">Identify the sites that link to your competitors but not to you, yet. Pursue links on those sites.</p>
<p>It&#8217;s worth mentioning that <a title="Majestic Plugin" href="https://www.majesticseo.com/majestic-widgets">Majestic has a cool plugin</a> that works in either IE (gasp) or Firefox. It lists Majestic SEO as one of your search engines so you can simply choose it and go to the Site Explorer page for a site.</p>
<h2>Link Tool Takeaways</h2>
<p>So there you have it&#8230;another amazing suite of tools that can ramp up your link building efforts, complete with a blog, video tutorials, and a constantly updated index.</p>
<p>Overall, Majestic is extremely easy to use and is quite intuitive, so even for a true beginner, I can&#8217;t see these tools being overwhelming. The amount of data could potentially overwhelm someone but honestly, that&#8217;s not a bad thing in my opinion. I&#8217;d rather have more than less. With the different packages available, even a small or solo operation would be well-advised to use this system.</p>
<p>Majestic also has a great <a title="Majestic SEO Blog" href="http://blog.majesticseo.com/">blog</a> that is searchable and contains posts about latest updates, along with tons of training posts and videos. If you can&#8217;t figure out how to use one of their tools, it&#8217;s not for their lack of trying. I actually found it all quite straightforward and intuitive though, and even for a novice tool user, I don&#8217;t think you&#8217;ll be stumped.</p>
<p>Finally, there is the <a title="Majestic API" href="http://developer-support.majesticseo.com/">API</a>: I did not test this but it&#8217;s worth noting as it enables you to access key functions and gives you a development area where you can test applications without affecting your subscription resources (which include set numbers of reports you can run a month, for example.)</p>
<p>While we&#8217;re on the subject of reports, there are two types: standard and advanced. All subscription plans provide access to standard reports, which can be run for any website. A standard report gives you what Majestic believes is the key set of information including an overview, backlinks information, and anchor text information. Advanced reports gives you absolutely everything you could possibly want to know about a domain. These reports are also downloadable so that you can further analyze the data.</p>
<p>To sum it up, this is a massively powerful set of tools if you&#8217;re interested in link building. It&#8217;s intuitive, fast, and due to the different tiers of pricing, there&#8217;s an option for everyone. If you need less link-focused tools this may not be the suite for you, because there are no rank checkers or code validators, but for link building, it&#8217;s seriously top notch.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/link-building-tool-review-majestic-seo-103646/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Link Building Tool Review: SEO Book</title>
		<link>http://searchengineland.com/link-building-tool-review-seo-book-99792</link>
		<comments>http://searchengineland.com/link-building-tool-review-seo-book-99792#comments</comments>
		<pubDate>Tue, 15 Nov 2011 17:53:31 +0000</pubDate>
		<dc:creator>Julie Joyce</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[Link Building: General]]></category>
		<category><![CDATA[Link Week]]></category>
		<category><![CDATA[SEM Tools: Links]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=99792</guid>
		<description><![CDATA[For many search marketers, SEO Book is a legend. Founded by (another legend) Aaron Wall in 2003, SEO Book now includes Aaron&#8217;s wife Giovanna Villanueva, Peter Da Vanzo, and Eric Covino. Membership works out to around $10 a day ($300 a month) and includes over 100 custom training modules, a private forum, exclusive members-only tools, and [...]]]></description>
			<content:encoded><![CDATA[<p>For many search marketers, <a href="http://www.seobook.com/">SEO Book</a> is a legend. Founded by (another legend) Aaron Wall in 2003, SEO Book now includes Aaron&#8217;s wife Giovanna Villanueva, Peter Da Vanzo, and Eric Covino. Membership works out to around $10 a day ($300 a month) and includes over 100 custom training modules, a private forum, exclusive members-only tools, and much more. There are also free tools available including the ubiquitous SEO for Firefox.</p>
<p style="text-align: center;"><img class="size-large wp-image-99794 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/navbar-600x83.jpg" alt="SEO Book navbar" width="600" height="83" /></p>
<p>If you click on the SEO Tools link on the topnav, you&#8217;ll see a list of both free and paid tools. However, other pages on the site did lead me to a few other tools not specifically listed there, so I&#8217;ll do my best to give you a comprehensive list of what&#8217;s out there with regards to link building tools, since that&#8217;s the focus of this review.</p>
<p>Listed on the nav bar, we have the following tools that I have reviewed for link building purposes:</p>
<ul>
<li><a href="http://training.seobook.com/localrank/">Local Rank</a></li>
<li><a href="http://training.seobook.com/hubfinder">Hub Finder</a></li>
<li><a href="http://training.seobook.com/competitive-research-tool/">Competitive Research</a></li>
</ul>
<p>Other particularly interesting <a href="http://tools.seobook.com/link-tools/">public link tools</a> I found through digging on the site include:</p>
<ul>
<li><a href="http://tools.seobook.com/link-harvester/">Link Harvester</a></li>
<li><a href="http://tools.seobook.com/general/link-suggest/">Link Suggestion Tool</a></li>
<li><a href="http://tools.seobook.com/general/linkpop/">Link Popularity Comparison Tool</a></li>
</ul>
<p>There are also free Firefox add-ons (SEO for Firefox is included in this review), keyword tools, analytics tools, PPC tools, a rank checker, a site health check, and more. That&#8217;s one thing that makes this suite of tools so valuable; you don&#8217;t get tools that are only built for one aspect of marketing.</p>
<h2>SEO For Firefox Plugin</h2>
<p>First up is the free plugin SEO for Firefox. The <a href="http://tools.seobook.com/firefox/seo-for-firefox.html">SEO for Firefox plugin</a> is truly one of the most indispensable tools out there in my opinion. All of my link builders use it and it&#8217;s my go-to quick analysis tool.</p>
<p>PageRank is the only thing that is automatically pulled into the tool, so if you want other metrics, you&#8217;ll have to customize it. There is some very helpful advice from Aaron about how to configure the extension to use the least resources so I&#8217;d highly recommend reading his instructions.</p>
<p>This extension can easily be turned on and off so that it&#8217;s not running nonstop, which I really like. Firefox is slow enough. Obviously, there is a lot of link data here. Metrics are as follows (listed in as small a space as possible since there are so many):</p>
<blockquote>PR, Google Cache Date, Traffic Value, Age, del.icio.us, del.icio.us Page Bookmarks, Diggs, Diggs Popular Stories, Stumbleupon, Twitter, Y! links, Y! edu links, Y! gov links, Y! Page links, Y! edu page links, OSE links to page, OSE links to domain, Blekko domainlinks, Technorati, Alexa, Compete.com rank,, Compete.com uniques, Cached, Dmoz, Bloglines, Page blog links, wikipedia, dir.yahoo.com, BOTW, Business, Majestic SEO linkdomain</blockquote>
<p>You can doubleclick a metric in the popup window and be taken to the source for further digging. I didn&#8217;t get data for many of the metrics, however, but issues like this are discussed in the instructions, as some of the data sources might not always be reliably pingable.</p>
<p>You can use SEO for Firefox as an on-demand service, like I do (which means that you can easily just rightclick, go to SEO for Firefox, and look up the page) or you can run it all the time and you&#8217;ll see the data at the bottom of the SERPs like this:</p>
<p style="text-align: center;"><img class="size-full wp-image-99804 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/seoforFFSerps.jpg" alt="SEO for FF" width="531" height="203" /></p>
<p>Again, the data you see is clickable and leads you to the source for more information.</p>
<p>Another handy part of this tool is that you can highlight nofollow links and external links and see images&#8217; alt attributes through SEO XRay, which is a feature on the extension that gives you even more cool information such as is seen in the following screenshot:</p>
<p style="text-align: center;"><img class="size-full wp-image-99805 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/seoxray.jpg" alt="SEO XRay" width="546" height="585" /></p>
<p>How would you use this to help build links?</p>
<p>For starters, it tells you just about everything you need to know about a site that you&#8217;re thinking about getting a link on, and it&#8217;s a great way to do some competitive analysis. It&#8217;s not a tool to show you where to build links, but it&#8217;s a great analysis tool to firm up your decision.</p>
<p>As always though, don&#8217;t let metrics alone be the deciding factor in whether or not to pursue a link. Some sites may show low metrics for certain things (like the dreaded PageRank) so use caution when evaluating a site strictly by numbers.</p>
<h2>Pros</h2>
<ul>
<li>I love the on-the-fly capability of this, as I hate running tools that slow down my browser.</li>
<li>I like that you can either see the desired data by clicking and grabbing it on the page, or by viewing it in the SERPs.</li>
<li>For a quick overview on a site, I don&#8217;t know of anything that I find more useful.</li>
</ul>
<h2>Cons</h2>
<ul>
<li>If you aren&#8217;t using Firefox, you&#8217;re out of luck.</li>
<li>Not all of the data sources return information all the time.</li>
</ul>
<h2>Local Rank</h2>
<p>Next we have Local Rank. Local Rank is a Member&#8217;s Only tool. The tool runs on the premise that sites that are well linked to from top results might get a rankings boost in Google for certain keywords.</p>
<p>Fields are as follows:</p>
<ul>
<li>The Keyword field is where you enter the keyword&#8230;pretty self-explanatory.</li>
<li>The Scan First (x) Results lets you choose from the default 100 to 1000 results. This tells the tool how many results to scan.</li>
<li>The Find LocalRank links pointing at the top search results field lets you choose from the default 10 to 50 results and tells the tool how many top results to find links to.</li>
<li>The Region/Country field lets you choose where you want your query to be run, with Google.com as the default. From what I can tell, there are choices for just about every country-specific Google.</li>
</ul>
<p>When you submit your query, you&#8217;ll see results like the following:</p>
<p style="text-align: center;"><img class="size-full wp-image-99830 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/localrankresults.jpg" alt="Local Rank results" width="598" height="548" /></p>
<p>The tool lists the URLs found for the initial query along with crawl dates and both Yahoo and Majestic link counts.</p>
<p>It then uses a re-ranking algorithm to identify a list of sites that have are frequently cited from those sites. These are your likely link targets and they&#8217;re listed in the matrix below the initial results set. There is also a link to the Competitive Research Tool which is quite handy, and the matrix can be exported.</p>
<p>Here&#8217;s a screenshot:</p>
<p style="text-align: center;"><img class="size-large wp-image-99831 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/LocalRankexportable-600x445.jpg" alt="Local Rank exportable results" width="600" height="445" /></p>
<p>Each URL has associated numbers running across the top, along with checkmarks that indicate that the site to the right of it is linking to the site at the top of the matrix. (Note: I did have to ask Aaron to clarify this one.)</p>
<h2>Pros</h2>
<ul>
<li>The Yahoo and Majestic link count data is pretty cool and takes you to the source in case you want to do any extra digging.</li>
</ul>
<h2>Cons</h2>
<ul>
<li>While I was able to see the Yahoo data from the links in the results listed above the matrix, all of the non-URL results that I clicked on in the results matrix sent me to a Yahoo site explorer page with no results.</li>
</ul>
<h2>Competitive Research Tool</h2>
<p>Now we&#8217;ll turn to the Competitive Research module which is a tool that&#8217;s only available to members. Enter in a URL or keyword, choose a datacenter, and you&#8217;re provided with competitive information including organic <em>and</em> pay per click.</p>
<p>Since I also do PPC work, this is a particularly cool tool for me because I could use it to help make recommendations about where to put the marketing efforts.</p>
<p>If you put in a URL you&#8217;ll just get data for that one in particular, and if you input a keyword, you&#8217;ll see a list of URLs along with corresponding numbers but the results available are a bit different, so it&#8217;s worth playing around with, using both URLs and keywords, in order to get a full picture.</p>
<p>You can either enter a URL or a keyword for this one. For the first example, I&#8217;ve entered the keyword &#8220;umbrellas&#8221; as it&#8217;s looking a bit rainy outside today. You need to make sure to hit the Keyword button of course (and obviously the Domain button if you&#8217;re entering a URL) and then choose a Google datacenter.</p>
<p style="text-align: center;"><img class="size-large wp-image-99834 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/umbrellas-600x340.jpg" alt="umbrella results" width="600" height="340" /></p>
<p>The keyword report shows you CPC, Competition, and Ave. Volume for your keyword and several related ones.</p>
<p>To get even more specific domain-related information, choose the Domain option. For this example I&#8217;ll use the New York Times since they are a well-known site and certainly can&#8217;t complain about being outed anywhere for anything.</p>
<p>Here you&#8217;ll see the following: Domain, Rank, Organic Keywords, Organic Traffic, Organic Cost, Adwords Keywords, Adwords Traffic, and Adwords Costs for the domain summary itself.</p>
<p>Next, you&#8217;ll see the following for fields for keyword-specific organic data: Keyword, Pos, Traffic %, Costs %, Costs CPC, Volume, Total Keyword value, Value of #1 Ranking, Current Position Value, Upside Potential, Upside Potential %, and URL. That&#8217;s a plethora of great data.</p>
<p style="text-align: center;"><img class="size-large wp-image-99835 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/nytimes-600x320.jpg" alt="NYTImes" width="600" height="320" /></p>
<p>The data doesn&#8217;t stop here, however.</p>
<p>We also get tons of Adwords-specific information about the keywords (and quite honestly, I will just bore you if I continue to list all the fields so suffice it to say, you&#8217;ll be buried under information here), along with competitors&#8217; information (again in both organic and Adwords-specific formats), then Potential Ads/Traffic Buyers listed in both Organic to Adwords Competition and Potential Ads/Traffic Sellers listed in both Organic to Adwords Competition.</p>
<p>Wow. For all of the sets of data, you have the option to get even more information. This tool alone could take up an entire review and I doubt I&#8217;d still cover it all.</p>
<p>So how would you use this for link building?</p>
<p>Tons of ways, I&#8217;m sure &#8211; but I&#8217;ll cover just a few ways I&#8217;d use the data.</p>
<p style="padding-left: 30px;">1.  Just as it&#8217;s good to use organic data in conjunction with PPC data in order to maximize your outlay and resources, it&#8217;s good to use both of these to help decide where to hit links the hardest. By showing you what your URL ranks for in Google alongside the traffic percent and cost per click of that keyword, you can decide which anchors to go after.</p>
<p style="padding-left: 30px;">2.  By using a keyword, you can see a list of related competing keywords alongside their cost per click and current value. Depending upon my budget, I&#8217;d make decisions on where to spend the most money to get the best results.</p>
<p style="padding-left: 30px;">3.  Figure out how your competitors are doing in organic and paid search in order to better tailor your link efforts.</p>
<h2>Pros</h2>
<ul>
<li>This data is fantastic and the tool is easy to use. I love that it combines PPC and organic in a way that is applicable to link building. Usually, you don&#8217;t get that in one tool.</li>
<li>The report runs quite quickly which is always nice.</li>
<li>I like that you can either do this by keyword or by domain, depending upon your needs.</li>
</ul>
<h2>Cons</h2>
<ul>
<li>Honestly, I can&#8217;t think of any, unless you happen to be a person who hates great data.</li>
</ul>
<h2>Hub Finder<strong>
</strong></h2>
<p>The <a href="http://training.seobook.com/hub-finder/hubfinder.php">Hub Finder</a> is another member&#8217;s only tool that finds instances of co-occurring links. It runs on the premise that a site that links out to several competitors in the same field should have editorial integrity and be willing to link to you as well. You can plug in between two and ten of your competitors in order to identify sites that link to as many of them as you specify.</p>
<p>So let&#8217;s get started with the fields and what to do with each one. Straightforward for many of you, but I&#8217;m such a literalist that I did have to ask Aaron a few questions in order to understand what to do with two of the fields.</p>
<ul>
<li>The Subject can be used to pull a list of relevant sites to query from either Google or Yahoo. You can also just enter your own URLs.</li>
<li>The Results field is a dropdown list of 1 to a default value of 20 that simply specifies how many results you&#8217;d like to see when you run the tool.</li>
<li>The API field is used to specify whether you want to use the API or Yahoo, Google, or both of them at the same time.</li>
<li>Min Match tells the tool how many minimum matches to show, meaning that if you want to only see sites that link to all 5 of your competitors, you&#8217;d choose 5. If you wanted to see sites that linked to just 2 of your 10 competitors, you&#8217;d choose 2. Nice and straightforward stuff, even for me.</li>
<li>The Depth field is used to specify how many top inbound links you want to search through for each domain, ranging from the default of 50 to 250.</li>
<li>The optional Include This Site field is one that I did have to ask about, as I wasn&#8217;t sure what the purpose was. The answer made perfect sense: this field is used to force the inclusion of one URL in particular. I&#8217;ll share Aaron&#8217;s example here:</li>
</ul>
<blockquote>&#8220;an example&#8230;a site competing against one of my sites rebranded to a new URL. so I found links to them that were on any page that had links to other top sites in that vertical. figuring some of those are resources pages that might be willing to list more sites in the niche, I can then manually contact them &amp; let them know about the updated link or broken link or whatever &amp; then also pitch the link I want promoted as well.&#8221;</blockquote>
<ul>
<li>The Link Type field is used to select either Domain or Page values.</li>
<li>The Application field is used to select either Sort By or Must Link. Options are Sort By and Must Link.</li>
</ul>
<p>So let&#8217;s get started, using a nice SEO example with the major SEO sites listed, forcing the include for the SEO Chicks site.</p>
<p style="text-align: center;"><img class="size-large wp-image-99836 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/HubFinderdash-600x267.jpg" alt="Hub Finder" width="600" height="267" /></p>
<p style="text-align: center;"><img class="size-large wp-image-99837 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/11/HubFinderResults-600x432.jpg" alt="Hub Finder results" width="600" height="432" /></p>
<p>The results are mapped with a number corresponding to each competing URL, along with Xs that denote which sites have co-occuring links. There&#8217;s a highlight function that is activated if you click on one of the numbers that denotes a URL so you can more easily see specific instances of co-occurrences.</p>
<p>The results set also contains links to the following:</p>
<ul>
<li>Whois (W)</li>
<li>Archive.org (A)</li>
<li>Google cache (H)</li>
<li>DMOZ (D)</li>
<li>Yahoo Directory (Y)</li>
</ul>
<p>You&#8217;ll see the IP address for each URL and be able to click through to the sites themselves. The report is also downloadable which is always handy.</p>
<h2>Pros</h2>
<ul>
<li>There is a lot of documentation for the Hub Finder, which was helpful.</li>
<li>I love the results report, which makes it very easy to quickly see which sites link to competing URLs but not your own.</li>
<li>It uses Yahoo mainly, not Google. Hooray!</li>
<li>In addition to loving the results report, I love the results, period. Finding co-occuring links is a great way to find new opportunities for your own site.</li>
<li>The report is downloadable.</li>
<li>The report runs quickly.</li>
</ul>
<h2>Cons</h2>
<ul>
<li>Error checking messages are non-existent on this tool. If you do something wrong, you just won&#8217;t see results and you may not understand that it is because you have misused the tool. I had to ask a few questions in order to understand how to use this properly, even after reading the instructions. Once you understand how exactly to use it, it makes sense of course, but I do think that error messages would be helpful to users.</li>
<li>Some functionality just didn&#8217;t make sense to me. For example, if you choose the default Sort By in the Application, you will see results that don&#8217;t necessarily link to the site that you may have put into the Include This Site field. If you choose the Must Link, you&#8217;ll only see results that link to that site at a minimum. To me, this is a bit confusing since I&#8217;d assume that including a site would take care of this.</li>
<li>The example image used in the instructions page had a field in it that was not present in my current version.</li>
</ul>
<p><strong>Bottom line:</strong> I&#8217;ve used this tool before (long enough ago that I forgot how it worked, oddly enough) and always been a fan of it. I love the idea behind it and the fact that it&#8217;s a great source for new links. Error checking messages are something I seem to need due to being a bit of a clumsy user, but as I said, once you understand what to do, the tool is straightforward.</p>
<h2>Wrapup</h2>
<p>My favorite tool in this suite was the Hub Finder. It&#8217;s straightforward and applicable to the way I build links. I also rely upon the SEO for Firefox plugin but that&#8217;s a free tool. I could also use more error messages as I have said, due to being a bit spastic and clicking without reading things carefully.</p>
<p>I would probably not purchase a membership strictly for the tools. However, the forum alone is worth the price. Heck, the monthly wrapup that Aaron does is worth the price! I do keep up on what&#8217;s going on but his October wrapup, available only to members, alerted me to tons of articles that I had not seen. If you&#8217;re busy and can afford the cost, I&#8217;d become a member for that alone as it honestly did cover just about everything that happened. Participants in the forum seem to be extremely open and helpful and just in skimming a few topics, I learned a lot.</p>
<p>There are also training videos, tons of archived articles, downloadable strategy guides, and quick start checklists. If you&#8217;re just starting out in SEO, I&#8217;d say this program would definitely benefit you. If you&#8217;re a seasoned SEO and want to get the same kind of information that you tend to get only at bars after a conference, this is what you&#8217;re looking for.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/link-building-tool-review-seo-book-99792/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Majestic OpenApps &#8211; An Easier Way To Access Majestic SEO Data</title>
		<link>http://searchengineland.com/majestic-openapps-an-easier-way-to-access-majestic-seo-data-100190</link>
		<comments>http://searchengineland.com/majestic-openapps-an-easier-way-to-access-majestic-seo-data-100190#comments</comments>
		<pubDate>Tue, 08 Nov 2011 12:09:50 +0000</pubDate>
		<dc:creator>Barry Schwartz</dc:creator>
				<category><![CDATA[SEM Tools: Links]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=100190</guid>
		<description><![CDATA[Majestic SEO announced a new way to access data from the Majestic SEO tool. In short, it provides an easier way to get data from the tool over using the their API. Majestic SEO is a popular tool used by SEOs for competitive link analysis. The main alternatives to the tool include SEOmoz&#8217;s LinkScape, RankAbove&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://searchengineland.com/figz/wp-content/seloads/2011/11/majesticseo.jpeg" alt="" title="majesticseo" width="265" height="88" class="alignright size-full wp-image-100191" /> Majestic SEO <A href="http://blog.majesticseo.com/development/majestic-openapps/">announced</a> a new way to access data from the Majestic SEO tool.  In short, it provides an easier way to get data from the tool over using the <a href="http://developer-support.majesticseo.com/">their API</a>.</p>
<p>Majestic SEO is a popular tool used by SEOs for competitive link analysis.  The main alternatives to the tool include SEOmoz&#8217;s LinkScape, RankAbove&#8217;s SEO Drive and the soon defunct Yahoo Site Explorer, <a href="http://searchengineland.com/enterprise-seo-tools-part-2-the-cloud-46133">amongst others</a>.</p>
<p>The OpenApps feature allows developers and third-parties to build modules on the data. It allows developers to build modules to  let their users request data from the Majestic SEO toolset.  It is available to &#8220;all Majestic SEO subscribers on all plans,&#8221; while the commercial API is restricted to full reseller licensees.  There is also no service level commitment to use the Open App method.  </p>
<p>For more details on how to access the Majestic SEO OpenApps, see the <A href="http://blog.majesticseo.com/development/majestic-openapps/">blog</a> and the <a href="http://developer-support.majesticseo.com/">developer area</a>.  Finally, for an example tool, see <a href="http://openapp-example.majesticseo.com/">this page</a>.</p>
<h3>Related Stories:</h3>
<ul>
<li><a href="http://searchengineland.com/enterprise-seo-tools-part-2-the-cloud-46133">Enterprise SEO Tools, Part 2: The Cloud</a></li>
<li><a href="http://searchengineland.com/yahoo-shutting-down-site-explorer-this-year-85038">Yahoo Shutting Down Site Explorer This Year</a></li>
<li><a href="http://searchengineland.com/link-building-tool-review-seomoz-pro-91619">Link Building Tool Review: SEOmoz PRO</a></li>
<li><a href="http://searchengineland.com/worthy-alternatives-to-the-useless-seo-data-provided-by-search-engines-36424">Worthy Alternatives To The Useless SEO Data Provided By Search Engines</a></li>
<li><a href="http://searchengineland.com/seomozs-new-toolbar-linkscape-doubles-in-size-15760">SEOMoz’s New Toolbar &amp; Linkscape Doubles In Size</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/majestic-openapps-an-easier-way-to-access-majestic-seo-data-100190/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PPC Shop Tools: The Permutator</title>
		<link>http://searchengineland.com/ppc-shop-tools-the-permutator-99135</link>
		<comments>http://searchengineland.com/ppc-shop-tools-the-permutator-99135#comments</comments>
		<pubDate>Fri, 04 Nov 2011 15:32:24 +0000</pubDate>
		<dc:creator>Crosby Grant</dc:creator>
				<category><![CDATA[Search Marketing Toolbox]]></category>
		<category><![CDATA[SEM Tools: PPC]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=99135</guid>
		<description><![CDATA[We use a number of PPC shop tools in our everyday work as PPC campaign managers; today, I&#8217;d like to focus on the PPC Permutator. We use the PPC permutator to help us rapidly expand keyword lists from simple ideas. Let’s work with an example. Consider the following keyword ideas related to a hypothetical bicycle [...]]]></description>
			<content:encoded><![CDATA[<p>We use a number of PPC shop tools in our everyday work as PPC campaign managers; today, I&#8217;d like to focus on the PPC Permutator.</p>
<p>We use the PPC permutator to help us rapidly expand keyword lists from simple ideas. Let’s work with an example. Consider the following keyword ideas related to a hypothetical bicycle shop. Using the tool, we take three simple ideas and generate 48 keywords.</p>
<ul>
<li><strong>Terrain:</strong> mountain, road, touring</li>
<li><strong>Bike Synonyms:</strong> bike, bicycle, cycle</li>
<li><strong>Product:</strong> tire, tires, tube, tubes</li>
</ul>
<p>We enter them in the tool, like this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-99142" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/image0011.gif" alt="" width="624" height="158" /></p>
<h2>Push-Button List Generation</h2>
<p>The tool built an extensive list of keywords from a few keyword ideas. If you can imagine typing out a list like this, the time
savings might be an obvious benefit.</p>
<p>The more valuable benefit in my opinion is that it lets the campaign manager remain in “creative” mode without having to task-switch to “manual labor / typing” mode. The tool does the work of generating the list as the output. The campaign manager generates more ideas as the input. While this is valuable all by itself, there is more.</p>
<h2>Change Input Easily</h2>
<p>If we decide we also want to generate keywords like “bike tire” (i.e.: combining only the last two keyword ideas, skipping the first), then we just check a box and the tool makes it happen. Likewise, if we start selling “fixie” bike tires, we can simply add “fixie” to the list. The tool will generate the new keywords.</p>
<p>So another benefit is that it lets us change input easily without paying the penalty of having to produce the list again. We just refine the input and click a button.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-99141" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/image002.gif" alt="" width="624" height="223" /></p>
<p>Now if you have been doing PPC for some time, using tools to generate keyword lists may not be a new idea. Tools are available online, and you may have one of your own. Before you go, there is more. What if you want to place these keyword ideas into campaigns and ad groups?</p>
<h2>Organize Keywords Into Campaigns &amp; Ad Groups</h2>
<p>In PPC it is important to break long lists of keywords into tightly themed ad groups. The key benefits of putting keywords in separate,
tightly themed ad groups are clear: We can write targeted ads pointed at targeted landing pages.</p>
<p>We also get some sanity and manageability: ad level URLs, default ad group bidding, etc. The PPC permutator can help.</p>
<p>Let’s build ad groups based on the “root” idea of each keyword. We want separate ad groups for the terrain types, and for the tire
type, but do not want separate bike synonym ad groups because we believe they all perform similarly and we want them in the same ad group. (By the way, if we wanted to put the bike synonyms into separate ad groups, we could do that too. This is just an example.)</p>
<p>This is one feature that is not always found in a tool of this sort. We can add some “meta data” about the “root” of each word, and the tool carries that information forward for us to use. First, we add the roots for each word:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-99143" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/image003.gif" alt="" width="624" height="111" /></p>
<p>Then we use that information to help us generate campaigns and ad groups in the output:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-99147" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/image0041.gif" alt="" width="624" height="335" /></p>
<p>We have some options here. We could have changed the “sequence” of the ad group names if we wanted “Product(Tire) Type(Mountain)” rather than “Type(Mountain) Product(Tire)”, for example.</p>
<p>We also could have chosen to use the bike synonym root and generated ad group names like “Product(Tire) Type(Mountain) Bike(Cycle)”. We could use a different naming convention and change the separator to “+”, e.g.: “tire+mountain+cycle”. The tool helps us organize keywords into campaigns and ad groups according to our needs.</p>
<h2>Define Match Types</h2>
<p>In PPC, we also want to produce keyword lists with match types. Once again, the tool is ready to do the heavy lifting for us. Of course, in practice we would not blindly add “everything on all match types” &#8212; this is just an example.</p>
<p>The tool also works with AdWords’ Broad Match Modifier. We just add the “+” to the original words where we want it, and the tool caries it forward (and removes it for non-broad-match instances of the keyword).</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-99145" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/image005.gif" alt="" width="624" height="201" /></p>
<h2>Conclusion</h2>
<p>The PPC permutator is one of several tools we use around our PPC shop. The primary benefits we see are:</p>
<ul>
<li>Push-button list generation</li>
<li>Change input easily</li>
<li>Organize keywords into campaigns and ad groups</li>
<li>Define match types</li>
</ul>
<p>If you would like a copy of the PPC permutator, feel free to <a href="http://searchengineland.com/contact-author?id=7089">send me an email</a>. You could also adapt these ideas to your own tools. Have fun out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/ppc-shop-tools-the-permutator-99135/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Tweaks Competition Rank In AdWords Keyword Tool To &#8220;Low,&#8221; &#8220;Medium&#8221; or &#8220;High&#8221;</title>
		<link>http://searchengineland.com/google-tweaks-competition-rank-in-adwords-keyword-tool-98510</link>
		<comments>http://searchengineland.com/google-tweaks-competition-rank-in-adwords-keyword-tool-98510#comments</comments>
		<pubDate>Wed, 26 Oct 2011 18:14:33 +0000</pubDate>
		<dc:creator>Greg Finn</dc:creator>
				<category><![CDATA[Google: AdWords]]></category>
		<category><![CDATA[SEM Tools: Keyword Research]]></category>
		<category><![CDATA[Top News]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=98510</guid>
		<description><![CDATA[Many users are now seeing a change in the way that Google&#8217;s Keyword Ranking tool is providing competition data. Instead of the traditional bars to display competitiveness, Google is using text as the description. Up until now, this tool used small green bars to display the competitiveness of keywords. The more green in the bar, the more competitive the term [...]]]></description>
			<content:encoded><![CDATA[<p>Many users are now seeing a change in the way that Google&#8217;s <a href="https://adwords.google.com/o/Targeting/Explorer?__c=1000000000&amp;__u=1000000000&amp;__o=kt&amp;ideaRequestType=KEYWORD_IDEAS#search.none">Keyword Ranking</a> tool is providing competition data. Instead of the traditional bars to display competitiveness, Google is using text as the description.</p>
<p>Up until now, this tool used small green bars to display the competitiveness of keywords. The more green in the bar, the more competitive the term was:</p>
<p><img class="aligncenter size-full wp-image-98518" title="Search-Total-Bars" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/Search-Total-Bars.png" alt="" width="550" height="171" /></p>
<p>Now the Google tool is only showing text-based descriptions of competitiveness: Low, Medium or High:</p>
<p><img class="aligncenter size-large wp-image-98522" title="New-Competition-Metric" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/New-Competition-Metric-600x184.jpg" alt="" width="600" height="184" /></p>
<p>While the competitiveness has been replaced by text in the web version, the good news is that Google has maintained the granularity as to how this ranking was assigned. In the previous version of the tool, users could download a report to get the exact number that made up the green bar. This is still the case with the new changes. So users who require more information can still download the report to a spreadsheet and get the same information:</p>
<p><img class="aligncenter size-large wp-image-98524" title="Keyword-Ranking-Data" src="http://searchengineland.com/figz/wp-content/seloads/2011/10/Keyword-Ranking-Data-600x172.jpg" alt="" width="600" height="172" /></p>
<p>For any of those who regularly use this competition metric, the new competitive labeling is as follows:</p>
<ul>
<li><strong>Low</strong> &#8212; Competitiveness number under .33</li>
<li><strong>Medium</strong> &#8212; Competitiveness number between .33 and .66</li>
<li><strong>High</strong> &#8212; Competitiveness number over .67</li>
</ul>
<div>It should be known that the competitiveness score is directly related to AdWords, not organic search. Google defines the metric as:</div>
<blockquote>
<div>&#8220;This column shows the number of advertisers worldwide bidding on each keyword relative to all keywords across Google. The shaded bar represents a general low-to-high quantitative guide to help you determine how competitive ad placement is for a particular keyword.&#8221;</div>
</blockquote>
<div>Hat tip to George Fox from <a href="http://www.bluefountainmedia.com/">Blue Fountain Media</a>, a New York website design and online marketing firm, for alerting us of the change!</div>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/google-tweaks-competition-rank-in-adwords-keyword-tool-98510/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo Clues Relaunches With More Data, Wider Keyword Coverage</title>
		<link>http://searchengineland.com/yahoo-clues-relaunches-more-data-wider-keyword-coverage-83743</link>
		<comments>http://searchengineland.com/yahoo-clues-relaunches-more-data-wider-keyword-coverage-83743#comments</comments>
		<pubDate>Wed, 29 Jun 2011 21:04:53 +0000</pubDate>
		<dc:creator>Matt McGee</dc:creator>
				<category><![CDATA[SEM Tools: Keyword Research]]></category>
		<category><![CDATA[Yahoo: Search]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=83743</guid>
		<description><![CDATA[Yahoo has relaunched Yahoo Clues, its search trends product that doubles as an underrated keyword research tool. Among the new features, the most important from a search marketing perspective are these: Expanded data: Yahoo Clues now includes a full year of data, up from just a month Wider coverage: It includes all English-language searches made [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://searchengineland.com/figz/wp-content/seloads/2011/06/yahoo-clues-beta-logo.jpg" alt="yahoo-clues-beta-logo" width="266" height="36" class="alignright" />Yahoo <a href="http://www.ysearchblog.com/2011/06/29/new-yahoo-clues-launches/">has relaunched</a> Yahoo Clues, its search trends product that doubles as an underrated keyword research tool.</p>
<p>Among the new features, the most important from a search marketing perspective are these:</p>
<ul>
<li>Expanded data: Yahoo Clues now includes a full year of data, up from just a month
<li>Wider coverage: It includes all English-language searches made globally
</ul>
<p>The new Yahoo Clues also offers a &#8220;Top Trends&#8221; tab (as part of its new look-and-feel) that lets users explore and analyze the most popular search terms on Yahoo. But the expanded data is also part of the regular Trend Analysis tool that lets you compare two search terms and dissect the differences by demographic, location and more.</p>
<p><img src="http://searchengineland.com/figz/wp-content/seloads/2011/06/yahoo-clues.gif" alt="yahoo-clues" width="600" height="682" class="alignnone size-full wp-image-83746" /></p>
<p>The map you see at the bottom of that screenshot is another new feature that lets you map and visualize search activity.</p>
<p>Yahoo Clues <a href="http://searchengineland.com/yahoo-clues-new-fun-search-keyword-tool-56183">launched last November</a> and, in this writer&#8217;s opinion, it&#8217;s great to see the tool continuing to get attention from Yahoo.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/yahoo-clues-relaunches-more-data-wider-keyword-coverage-83743/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Correlate: A New Way To Research Keyword Popularity &amp; Trends</title>
		<link>http://searchengineland.com/google-correlate-more-search-data-to-mine-78560</link>
		<comments>http://searchengineland.com/google-correlate-more-search-data-to-mine-78560#comments</comments>
		<pubDate>Wed, 25 May 2011 20:47:49 +0000</pubDate>
		<dc:creator>Vanessa Fox</dc:creator>
				<category><![CDATA[Features: Analysis]]></category>
		<category><![CDATA[Google: Correlate]]></category>
		<category><![CDATA[Google: Labs]]></category>
		<category><![CDATA[SEM Tools: Keyword Research]]></category>
		<category><![CDATA[Top News]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=78560</guid>
		<description><![CDATA[I love search data. Being able to mine through millions of search queries to find out what people are really interested in is fascinating (and useful!). Google provides search data a number of ways, including Google Trends, Google Insights for Search, and via the Google AdWords Keyword Tool, and Microsoft has some great stuff via [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-78598" href="http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/picture-422"><img class="alignright size-medium wp-image-78598" style="border: 1px solid black; margin: 4px 16px;" title="Correlate: Red Bull" src="http://searchengineland.com/figz/wp-content/seloads/2011/05/Picture-422-300x205.png" alt="Correlate: Red Bull" width="300" height="205" /></a>I love search data. Being able to mine through millions of search queries to find out what people are really interested in is fascinating (and useful!). Google provides search data a number of ways, including <a href="http://www.google.com/trends">Google Trends</a>, <a href="http://www.google.com/insights/search">Google Insights for Search</a>, and via the <a href="https://adwords.google.com/o/Targeting/Explorer">Google AdWords Keyword Tool</a>, and Microsoft has some great stuff via its <a href="http://advertising.microsoft.com/small-business/adcenter-downloads/microsoft-advertising-intelligence">Excel Advertising Intelligence add in</a> (if you have Office 2007 or higher running on Windows).</p>
<p>Google has also done some cool things with search data, including forecasting <a href="http://www.google.org/flutrends/">Flu Trends</a> and predicting the <a href="http://googleresearch.blogspot.com/2011/03/reading-tea-leaves-in-tourism-industry.html">impact of the Gulf oil spill on tourism in Florida</a>. Now, they&#8217;ve <a href="http://googleblog.blogspot.com/2011/05/mining-patterns-in-search-data-with.html">created a tool to enable you to correlate search trends</a> with any data you might want to throw into the mix. How awesome is that? (Hint: very awesome.)</p>
<p>With Google Correlate, you can upload data charted over either time or space and Google will look for matching patterns in search volumes. If you don&#8217;t have data of your own to upload, you can simply specify search terms, and Google will calculate the trending pattern and show matching patterns.</p>
<p>As Google notes in their documentation, this is sort of the opposite of Google Trends:</p>
<blockquote>Google Correlate is like Google Trends in reverse. With Google Trends, you type in a query and get back a data series of activity (over time or in each US state). With Google Correlate, you enter a data series (the target) and get back a list of queries whose data series follows a similar pattern.</blockquote>
<p>It appears that right now, you can either upload time-based data or state-based data (but not international data). You can even just draw a line on a graph and see what correlates!</p>
<p style="text-align: center;"><a rel="attachment wp-att-78609" href="http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/picture-428"><img class="aligncenter size-medium wp-image-78609" style="border: 1px solid black;" title="Draw" src="http://searchengineland.com/figz/wp-content/seloads/2011/05/Picture-428-300x191.png" alt="Draw" width="300" height="191" /></a></p>
<p style="text-align: left;">I have apparently drawn the line that most correlates to people searching for Homelife Communities (an Atlanta builder):</p>
<p style="text-align: center;"><a rel="attachment wp-att-78612" href="http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/picture-429"><img class="aligncenter size-medium wp-image-78612" style="border: 1px solid black;" title="Draw" src="http://searchengineland.com/figz/wp-content/seloads/2011/05/Picture-429-300x161.png" alt="draw" width="300" height="161" /></a></p>
<p style="text-align: center;">&nbsp;</p>
<p>The comic Google created to explain the new tool is careful to point out (multiple times!) that correlation does not necessarily equal causation.  The states where Glee is performing in concert and searches for [the dreamiest] may have the same spikes, but that doesn&#8217;t necessarily mean the two are related.</p>
<p><a rel="attachment wp-att-78582" href="http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/picture-414"><img class="aligncenter size-medium wp-image-78582" title="Correlation Does Not Equal Causation!" src="http://searchengineland.com/figz/wp-content/seloads/2011/05/Picture-414-300x154.png" alt="Correlation Does Not Equal Causation!" width="300" height="154" /></a></p>
<p>They might be though. At O&#8217;Reilly&#8217;s Where 2.0 conference last month, I did an <a href="http://igniteshow.com/videos/where-20-2011-vanessa-fox-rebecca-black-memes">Ignite talk</a> showing that people were interested in <a href="http://en.wikipedia.org/wiki/Friday_(Rebecca_Black_song)">Rebecca Black</a> everywhere, but were only really interested in March Madness in states that had teams participating.</p>
<h3>Interest in Rebecca Black:</h3>
<p><a rel="attachment wp-att-78585" href="http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/picture-416"><img class="aligncenter size-medium wp-image-78585" title="Interest in Rebecca Black" src="http://searchengineland.com/figz/wp-content/seloads/2011/05/Picture-416-300x189.png" alt="Interest in Rebecca Black" width="300" height="189" /></a></p>
<p>Interest in March Madness (states with participating teams and state-based search interest):</p>
<p><a rel="attachment wp-att-78587" href="http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/picture-417"><img class="aligncenter size-medium wp-image-78587" title="March Madness Search Volume" src="http://searchengineland.com/figz/wp-content/seloads/2011/05/Picture-417-300x344.png" alt="March Madness Search Volume" width="300" height="344" /></a></p>
<p>I feel like there could be some really interesting integrations between this and <a href="http://www.google.com/publicdata/home">Google&#8217;s Public Data Explorer</a>, but Google Correlate is in labs, so give it some time.</p>
<p>If you want to check it out for yourself, Google has a <a href="http://correlate.googlelabs.com/tutorial/">tutorial</a>, <a href="http://correlate.googlelabs.com/faq">FAQ</a>, and <a href="http://correlate.googlelabs.com/whitepaper.pdf">whitepaper</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/google-correlate-more-search-data-to-mine-78560/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>A Guide To Understanding Google Analytics Reports &amp; Personality Types</title>
		<link>http://searchengineland.com/google-analytics-reports-and-personalities-72214</link>
		<comments>http://searchengineland.com/google-analytics-reports-and-personalities-72214#comments</comments>
		<pubDate>Fri, 15 Apr 2011 14:00:33 +0000</pubDate>
		<dc:creator>Daniel Waisberg</dc:creator>
				<category><![CDATA[Google: Analytics]]></category>
		<category><![CDATA[Search & Analytics]]></category>
		<category><![CDATA[SEM Tools: Web Analytics]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=72214</guid>
		<description><![CDATA[What is the first report you look at when you get access to a new Google Analytics account? Do you start by looking at the Dashboard, Ecommerce report, Content report, Traffic Sources or any of the technical reports? Psychology has shown that many of our day-to-day behaviors are deeply related to our personalities, beliefs, and [...]]]></description>
			<content:encoded><![CDATA[<p>What is the first report you look at when you get access to a new Google Analytics account? Do you start by looking at the Dashboard, Ecommerce report, Content report, Traffic Sources or any of the technical reports?</p>
<p>Psychology has shown that many of our day-to-day behaviors are deeply related to our personalities, beliefs, and cultures. In the same spirit, I believe we can learn about people&#8217;s professional inclinations from their analytical behavior.</p>
<h2>Google Analytics &amp; A Tour Of Jerusalem</h2>
<p>Recently, I presented at a Google Event in Israel on the subject of Analytics and Testing. Following the event, I traveled to Jerusalem with <a href="https://profiles.google.com/u/0/timojosten/about">Timo Josten</a>, Google Analytics Partner Program Manager for EMEA. As we approached Jerusalem, I decided to build the tour based on his Google Analytics preferences.</p>
<p>I asked him what is the first report he looks at when checking a new Google Analytics account, his answer: the <a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&amp;answer=60126">Traffic Sources report</a>. That&#8217;s because he believes that the sources of traffic tell a lot about the company&#8217;s marketing efforts and about the visitors themselves.</p>
<p>Based on that, we started by visiting the old city alleys (image below), as I understood that he is the kind of person that dives into the numbers to understand the visitors and then zooms out to understand the big picture. We started from inside and then moved out to a bird&#8217;s eye view.</p>
<p style="text-align: center;"><a rel="attachment wp-att-72215" href="http://searchengineland.com/google-analytics-reports-and-personalities-72214/jerusalem-alley"><img class="size-full wp-image-72215 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/04/Jerusalem-Alley.jpg" alt="Jerusalem Alley" width="570" height="270" /></a></p>
<p>In a different instance, I also had the pleasure of taking <a href="http://www.bryaneisenberg.com">Bryan Eisenberg</a> to Jerusalem. I asked a similar question: &#8220;what is the first report you look at when looking at a new Web Analytics account?&#8221;</p>
<p>Bryan explained that he usually looks at the big picture and then zoom in to see the details and understand visitor behavior better. Based on that, I took him to a spot where we could view the whole city and then we &#8220;zoomed in&#8221; to the old city alleys.</p>
<p style="text-align: center;"><a rel="attachment wp-att-72216" href="http://searchengineland.com/google-analytics-reports-and-personalities-72214/jerusalem-view"><img class="size-full wp-image-72216 aligncenter" src="http://searchengineland.com/figz/wp-content/seloads/2011/04/Jerusalem-View.jpg" alt="Jerusalem View" width="570" height="270" /></a></p>
<p>In summary, I believe that good analysts can be divided in two types of people: those who start broad and then drill down with the big picture in mind, and those who start on the details and broaden their view with a good notion about the numbers.</p>
<h2>Google Analytics Psychological Test</h2>
<p>People usually believe that one person&#8217;s friends can tell you a lot about that person&#8217;s beliefs and characteristics. Expanding on this same idea, I believe that the <a href="http://online-behavior.com/analytics">Web Analytics</a> industry should promote the saying: &#8220;tell me what is your preferred report, and I will tell you who you are.&#8221;</p>
<p>In a previous post, I discussed the <a href="http://online-behavior.com/analytics/web-analytics-process-measurement-optimization">Web Analytics Process</a> and the importance of building Key Performance Indicators that are customized based on a person&#8217;s interest. Below I provide a few personalities that can be discovered from Web Analytics behavior analysis.</p>
<h3>The Hawk &#8211; Dashboard View</h3>
<p>&nbsp;</p>
<p style="padding-left: 30px;">According to Wikipedia, &#8220;<a href="http://en.wikipedia.org/wiki/Hawk">Hawks</a> are widely reputed to have visual acuity several times that of a normal human being.&#8221; This enables them to fly very high and still be able to find the preys.</p>
<p style="padding-left: 30px;">The same is true for analysts that focus on the so called bird&#8217;s eye view: they analyze the big picture and are able to find insights that will show where to focus the attention.</p>
<p style="padding-left: 30px;">This view is especially important for online marketing managers or website owners, people that want to know the bottom line but also additional success metrics (such as engagement, campaign success, and visitors return rates).</p>
<h3>The Slot Machine &#8211; Ecommerce View</h3>
<p>&nbsp;</p>
<p style="padding-left: 30px;">When a person goes to a casino, he or she has one main objective: to make money. Especially slot machine addicts. This is not to say that they do not have fun along the way, but they are result driven and they will hardly move their focus.</p>
<p style="padding-left: 30px;">Some people, when looking at Google Analytics, cannot move their eyes from the ecommerce reports. This view is especially important for senior managers or sales people, who mainly want to check the website results and compare it to other channels.</p>
<h3>The Psychologist &#8211; Content View</h3>
<p>&nbsp;</p>
<p style="padding-left: 30px;">Some people like to understand what other people think and like. Those people usually become psychologists, but once in a while they miss the target and become web analysts. Their main interest is to understand what visitors are reading on the website and if they are enjoying it.</p>
<p style="padding-left: 30px;">The content reports are especially important for content specialists, editors, and analysts looking to understand what is the most engaging material on the website (which will bring insights into how to organize the website and where to advertise).</p>
<h3>The Historian &#8211; Sources View</h3>
<p>&nbsp;</p>
<p style="padding-left: 30px;">Historians are known for researching the past and trying to understand how we got where we are, and if history is likely to repeat itself. Traffic Sources tells us just that: how people got to the website (sometimes even their intentions via keywords) and how visitors from each background behave.</p>
<p style="padding-left: 30px;">Traffic sources are especially important for marketing managers looking to understand how marketing campaigns are working and for SEM managers looking to optimize SEM campaigns.</p>
<h3>The Geek &#8211; Technology View</h3>
<p>&nbsp;</p>
<p style="padding-left: 30px;">Geeks just can&#8217;t help themselves: they will open Google Analytics and go straight to the Operating Systems and Browsers report. With <a href="http://searchengineland.com/google-analytics-v5-unveils-a-new-user-experience-68685">Google Analytics v5</a> it is even easier, as there is a whole set of reports named Technology.</p>
<p style="padding-left: 30px;">As the name says, these reports are very important for IT personal in order to understand which technology visitors are using and how to optimize website performance for that. In addition, it might also be important to senior management to drive decisions regarding mobile strategy (see <a href="http://online-behavior.com/analytics/mobile-marketing-1119">Mobile Marketing for E-commerce</a>).</p>
<h2>Closing Thoughts</h2>
<p>In summary, I believe that online professionals have different ways and interests when looking at data. It is possible to understand more about a person&#8217;s perspective by asking questions related to how he or she approaches and analyzes the data.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/google-analytics-reports-and-personalities-72214/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quality Score Tracking Tool: An Interview With TenScores Founder Chris Thunder</title>
		<link>http://searchengineland.com/quality-score-tracking-tool-an-interview-with-tenscores-founder-chris-thunder-64744</link>
		<comments>http://searchengineland.com/quality-score-tracking-tool-an-interview-with-tenscores-founder-chris-thunder-64744#comments</comments>
		<pubDate>Fri, 18 Feb 2011 16:25:43 +0000</pubDate>
		<dc:creator>Josh Dreller</dc:creator>
				<category><![CDATA[Search Marketing Toolbox]]></category>
		<category><![CDATA[SEM Tools: PPC]]></category>
		<category><![CDATA[Fri Feb 18]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=64744</guid>
		<description><![CDATA[Long time readers of this column know that I am fascinated with the technology behind search engine marketing. In recent posts, I’ve highlighted tools that optimize the Google Display Network, help generate winning text ads, and even a platform for developing thousands of tiny ad groups for Quality Score optimization. With SEM representing almost half [...]]]></description>
			<content:encoded><![CDATA[<p>Long time readers of this column know that I am fascinated with the technology behind search engine marketing. In recent posts, I’ve highlighted tools that <a href="../../../../../../optimization-innovations-with-the-google-display-network-plus-q-a-with-scienceops-dr-bryan-minor-58675">optimize the Google Display Network</a>, <a href="../../../../../../new-wave-of-paid-search-tools-coming-qa-with-boostctrs-david-greenbaum-55924">help generate winning text ads</a>, and even a platform for developing thousands of tiny ad groups for <a href="../../../../../../speedppc-attacks-quality-score-head-on-43421">Quality Score optimization</a>.</p>
<p>With SEM representing almost half of the digital advertising industry revenues, this channel is more important than ever and new tools are popping up to help us get the most return on our investment.</p>
<p><a href="http://www.tenscores.com/">TenScores</a> is a perfect example of one of these laser-focused tools. Founded by Chris Thunder, TenScores is a tool that performs a very simple, yet powerful function. Once you link your AdWords account to the platform, you’ll be able to monitor your individual Quality Scores and their historical performance. Nice, eh?</p>
<p>For those of you who obsess over your Quality Score, this is the tool for you. And for those of you who aren’t following your QS obsessively…why not?</p>
<p>I spoke with Chris about his background, the history behind his tool, and what’s on the road map for TenScores.</p>
<p><strong><em>Q:</em> What’s your background in search marketing?</strong></p>
<p><em>Chris:</em> I got bit by the bug in late 2007. I had an idea for a website I wanted to create but I wanted to test if there would be interest in it before actually creating it. That’s when I discovered AdWords. I was fascinated by ad writing and how changing just one word would have a dramatic impact on my CTRs and conversions.</p>
<p><strong><em>Q:</em> How did you get the idea for TenScores?</strong></p>
<p><em>Chris:</em> When I started managing other people’s accounts, I noticed one thing: none of them knew anything about Quality Score and the dramatic affects it has. Often, Quality Score was the first thing I had to improve when I had a new client. I knew I could help a lot of people save money with AdWords if only they could learn what kind of ‘quality’ Google wants.</p>
<p>I was consistently getting 10/10 Quality Scores so I decided to write a how-to eBook about it, hence the name TenScores. As I was finishing the book, a long time friend of mine came to live in my city, little did I know it would spark the beginning of a business partnership. He has excellent programming skills and was interested in what I was doing.</p>
<p>Since AdWords doesn’t give any historical data on your QS, and since QS fluctuates quite a lot, I asked him to create a simple tool I could use to monitor quality score evolutions in the accounts I was managing. What he did for me was tremendous. I would upload a file every day and see how my client’s QS had evolved. I could see where I was making progress and where things were going in red.</p>
<p>I thought other people would enjoy using a tool like this one so we decided to create a free membership site for it and see if there was interest. And there was interest indeed.</p>
<p><strong><em>Q:</em> What’s your thoughts on Quality Score in general?</strong></p>
<p><em>Chris:</em> Mixed feelings. On one hand, it can get really frustrating when you seem to do everything right but Google doesn’t want to raise your QS and you end up paying high bids for no apparent reason. On the other hand, when you do manage to increase your QS to 10 for example, the reward is great! Your traffic increases and your costs drop dramatically.</p>
<p>What annoys me the most is the little cloud of secrecy that surrounds it. Google asks its advertisers to be 100% transparent but they don’t follow that advice themselves. QS is still hidden is new accounts, most people don’t know that other advertisers mistakes can impact your own QS and &#8230; many times you’ll have low QS but no one at the Google headquarters will be able to tell you exactly what you’ve done wrong.</p>
<p>It&#8217;s very, very frustrating</p>
<p><strong><em>Q: </em>What does the tool do? What are the benefits? What are the negatives (right now)?</strong></p>
<p><em>Chris:</em> The idea is to have historical data on your keywords’ quality scores (and first page minimum bids), see when they rise or fall so you can optimize accordingly.</p>
<p>For example, if you have keyword that has a QS of 6/10, you can look at its history. If you see that it was at 7/10 at some point in time, you know something happened and you can make the change easily to get it back to 7. The simple change from 6 to 7 can mean quite a lot in terms of ROI if it’s a high traffic keyword.</p>
<p>The manual tool we have can do that but the process is a little bit cumbersome. Uploading file after file everyday can be exhausting. The automatic tool that we’re launching in a few weeks will monitor whole accounts in regard to keywords’ quality score fluctuations – with no action needed from the user, except simply logging in.</p>
<p><strong><em>Q:</em> How do users win at QS management using TenScores?</strong></p>
<p><em>Chris:</em> Well, they simply get insights about the quality of their campaigns that are unavailable in AdWords. It helps them optimize quickly where it has the most impact. Not only that, but there’s a little bit of training for those who are not familiar with Quality Score.</p>
<p>Those who don’t know how important it is or how to optimize it, those who want to enhance their knowledge on effective ad copy writing, those who want to learn the right way to create ad groups … we give them access to the original TenScores eBook that I used to sell for $69.</p>
<p><strong><em>Q:</em> What are some upcoming changes/features?</strong></p>
<p><em>Chris:</em> Right now it is simply a reporting tool, it doesn’t make any changes in the AdWords account. We’ll first try to make the reporting features as complete as possible and then think of ways TenScores can interact with AdWords accounts to improve performance, if possible.</p>
<p>For example, we’ll add email alerts for quality score. That’s something not available in AdWords. We’d like our users to get alerts when an important keyword has fallen under a certain quality score threshold.</p>
<p>We will add the possibility for users to set goals of quality score achievements and be able to track their progress. For example, if you want your top 10 keywords to be above 7/10, you’ll be able set that goal, TenScores will give you optimization ideas and track the progress of that objective – until you reach it.</p>
<p>We’re thinking of creating a tool that can take a quick look at a landing page and spot potential problems that could lead to ‘poor landing page quality’. Those are things I think would be great for me, but I’m sure people will bring us better ideas and our ears are open. Very wide open.</p>
<p><em>Chris:</em> Now that I’ve answered your questions, I’d be delighted to hear your thoughts and feelings about TenScores. Maybe even give us some tips on how to move forward and the features you think would be most beneficial to you as a marketer or your readers.</p>
<p><em>Josh: </em>Ah, you turned this around on me.  Hey, I’m the one asking the questions around here. Ha! Okay, that is a good question. I’m glad to hear that you want to build it out so you are able to go beyond just monitoring your QS, but also are able to make changes to your accounts from inside the system.</p>
<p>Overall, I think it’s a handy piece of gear that can be in the toolbox of any search engine marketer. For some accounts, QS isn’t much of an issue, but for others, it’s holding back their success. It’s SEM accounts like these that would be benefit most from your tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/quality-score-tracking-tool-an-interview-with-tenscores-founder-chris-thunder-64744/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.499 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 01:17:32 -->
<!-- Compression = gzip -->
