<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Google Data Studio Archives &#8211; Maths Guy</title>
	<atom:link href="https://www.mathsguy.com/tag/google-data-studio/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.mathsguy.com/tag/google-data-studio/</link>
	<description>Place to hunt and share the new knowledge</description>
	<lastBuildDate>Mon, 24 Oct 2022 06:54:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.mathsguy.com/wp-content/uploads/2020/10/cropped-Maths-Guy-Logo-White-32x32.png</url>
	<title>Google Data Studio Archives &#8211; Maths Guy</title>
	<link>https://www.mathsguy.com/tag/google-data-studio/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">120650152</site>	<item>
		<title>Google Data Studio or Looker Studio?</title>
		<link>https://www.mathsguy.com/google-data-studio-looker-studio/</link>
					<comments>https://www.mathsguy.com/google-data-studio-looker-studio/#respond</comments>
		
		<dc:creator><![CDATA[MathsGuy]]></dc:creator>
		<pubDate>Mon, 24 Oct 2022 06:54:17 +0000</pubDate>
				<category><![CDATA[Data Analysis]]></category>
		<category><![CDATA[News and Updates]]></category>
		<category><![CDATA[Best Data Visualization Tool]]></category>
		<category><![CDATA[Google Data Studio]]></category>
		<category><![CDATA[Google Looker Studio]]></category>
		<guid isPermaLink="false">https://www.mathsguy.com/?p=529</guid>

					<description><![CDATA[<p>Today I am not going to provide any insights or findings. The article is based on my experience and what I think might happen in&#8230; </p>
<p>The post <a href="https://www.mathsguy.com/google-data-studio-looker-studio/">Google Data Studio or Looker Studio?</a> appeared first on <a href="https://www.mathsguy.com">Maths Guy</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fl-builder-content fl-builder-content-529 fl-builder-content-primary" data-post-id="529"><div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-q8u3a64wfps2 fl-row-default-height fl-row-align-center" data-node="q8u3a64wfps2">
	<div class="fl-row-content-wrap">
						<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-74vr8xa6wb1k" data-node="74vr8xa6wb1k">
			<div class="fl-col fl-node-r4c28xo5l7ki" data-node="r4c28xo5l7ki">
	<div class="fl-col-content fl-node-content"><div class="fl-module fl-module-rich-text fl-node-9xjpd8s61qlv" data-node="9xjpd8s61qlv">
	<div class="fl-module-content fl-node-content">
		<div class="fl-rich-text">
	<p>Today I am not going to provide any insights or findings. The article is based on my experience and what I think might happen in the future.</p>
<p>Recently, <strong>Google Data Studio</strong> was renamed <a href="https://www.looker.com/" target="_blank" rel="noopener"><strong>Looker Studio</strong></a>. Now you may be wondering, why may Google acquired Looker. Actually, Google paid <a href="https://techcrunch.com/2019/06/06/google-to-acquire-analytics-startup-looker-for-2-6-billion/" target="_blank" rel="noopener">$2.6 billion in 2020 for the acquisition</a>. By that time, Google has its own data visualization platform, which is Google Data Studio. Google Data Studio was free but, by that time there were so many limitations with the platform.</p>
<p>Ok, let me tell one of my experiences. In 2021 September (I guess), I wanted to sort my insights by Day of Week (which is Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, and Sunday) but, there was no such function to do that (At the moment I write this article, they have developed a short key for this function). I had to write a code for that. For those who are interested, I'll share my code.</p>
<pre style="padding-left: 40px;"><span style="font-size: 14px;">AVG(CASE</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "0" ) THEN 6</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "1" ) THEN 0</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "2" ) THEN 1</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "3" ) THEN 2</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "4" ) THEN 3</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "5" ) THEN 4</span>
<span style="font-size: 14px;">WHEN REGEXP_MATCH(WEEKDAY(Date), "6" ) THEN 5</span>
<span style="font-size: 14px;">END )</span></pre>
<p>Now, back to my point. Google is a data company, which collects, stores, and sells data. Selling insights to businesses has become a key part of this. For that, they have built the Data Studio platform. But, in comparison to <a href="https://www.tableau.com/" target="_blank" rel="noopener">Tableau</a> and <a href="https://powerbi.microsoft.com/en-au/" target="_blank" rel="noopener">PowerBI</a>, Google Analytics was far behind. To compete with these giants, Google had two options, either improve its existing platform or acquire a platform.</p>
<ul>
<li>Google owns Google Maps.</li>
<li>Google owns Android. As of September 2022, android has a 71.55% market share. (Source: <a href="https://gs.statcounter.com/browser-market-share" target="_blank" rel="noopener">statcounter.com</a>)</li>
<li>Google owns the Google Search Engine. Again as of September 2022, they have over 92% market share. (Source: <a href="https://gs.statcounter.com/browser-market-share" target="_blank" rel="noopener">statcounter.com</a>)</li>
<li>Google owns YouTube.</li>
<li>Google owns Google chrome and as of September 2022, they have over 64% of the market share. (Source: <a href="https://gs.statcounter.com/browser-market-share" target="_blank" rel="noopener">statcounter.com</a>)</li>
<li>Google owns the biggest web analytics platform. With the launch of GA4, users now get the ability to analyze data and enhance their online business opportunities. (Source: <a href="https://www.statista.com/" target="_blank" rel="noopener">Statistica.com</a>)</li>
</ul>
<p>All these are the strategies for Looker, and I believe that Looker will start challenging Tableau and PowerBI products. As a result of competition, users could expect innovative products.</p>
<p>The following Video by the Google Cloud team already hints about the future.</p>
<p><iframe title="YouTube video player" src="https://www.youtube.com/embed/Bc_hcLVyFJI?start=1037" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<p>&nbsp;</p>
<p>These products may be challenged by web 3.0 and blockchain-based technologies. But, it will also lead to a better version of insight creation and storytelling tools.</p>
<p>&nbsp;</p>
</div>
	</div>
</div>
</div>
</div>
	</div>
		</div>
	</div>
</div>
</div><p>The post <a href="https://www.mathsguy.com/google-data-studio-looker-studio/">Google Data Studio or Looker Studio?</a> appeared first on <a href="https://www.mathsguy.com">Maths Guy</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.mathsguy.com/google-data-studio-looker-studio/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">529</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using disk: enhanced 

Served from: www.mathsguy.com @ 2024-05-09 22:40:12 by W3 Total Cache
-->