Skip to content

Commit dc4e0ba

Browse files
committed
working on web analytics page
1 parent 18c7bfb commit dc4e0ba

File tree

3 files changed

+45
-13
lines changed

3 files changed

+45
-13
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-10T18:37:55Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-11T13:04:45Z</updated></feed>

source/content/pages/08-monitoring-analytics/0805-web-analytics.markdown

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,18 @@ choice4text: How do I run code outside the HTTP request-response cycle?
1717

1818

1919
# Web analytics
20-
Analyzing web traffic involves collecting, calculating, visualizing
21-
and critically thinking about the data generated by visitors' web browsers
22-
while they are viewing webpages. The resulting data provides insight into
20+
Web analytics involves collecting, processing, visualizing web data to enable
21+
critical thinking about how users interact with a web application.
22+
23+
24+
## Why is web analytics important?
25+
User clients, especially web browsers, generate significant data while users
26+
read and interact with webpages. The data provides insight into
2327
how visitors use the site and why they stay or leave. The key concept to
2428
analytics is *learning* about your users so you can improve your web
2529
application to better suit their needs.
2630

31+
## Web analytics concepts
2732
It's easy to get overwhelmed at both the number of analytics services and
2833
the numerous types of data points collected. Focus on just a handful of
2934
metrics when you're just starting out. As your application scales and you
@@ -34,7 +39,8 @@ as heatmaps and action funnels. The
3439
post is an amusing read and provides context for how to begin and then grow
3540
tracked metrics over time.
3641

37-
## User funnels
42+
43+
### User funnels
3844
If your application is
3945
selling a product or service you can ultimately build a
4046
[user funnel](http://moz.com/blog/building-your-marketing-funnel-with-google-analytics) (often called "sales funnel" prior to a user becoming a customer)
@@ -43,7 +49,17 @@ a funnel you can visualize drop-off points where visitors leave your
4349
application before taking some action, such as purchasing your service.
4450

4551

46-
## Web Analytics Third Party Services
52+
## Open source web analytics projects
53+
* [Piwik](http://piwik.org/) is a web analytics platform you can host yourself.
54+
Piwik is a solid choice if you cannot use Google Analytics or want to
55+
customize your own web analytics platform.
56+
57+
* [Open Web Analytics](http://www.openwebanalytics.com/) is another
58+
self-hosted platform that integrates through a JavaScript snippet that
59+
tracks users' interactions with the webpage.
60+
61+
62+
## Hosted web analytics services
4763
* [Google Analytics](http://www.google.com/analytics/) is a widely used
4864
free analytics tool for website traffic.
4965

@@ -64,7 +80,7 @@ application before taking some action, such as purchasing your service.
6480
movements.
6581

6682

67-
## Web Analytics Resources
83+
## Web analytics resources
6884
* [Google Analytics for Developers](http://blog.arkency.com/2012/12/google-analytics-for-developers/)
6985

7086
* [Pandas and Google Analytics](http://blog.yhathq.com/posts/pandas-google-analytics.html)

web-analytics.html

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,15 @@
4545
<div class="row">
4646
<div class="col-md-8">
4747
<h1>Web analytics</h1>
48-
<p>Analyzing web traffic involves collecting, calculating, visualizing
49-
and critically thinking about the data generated by visitors' web browsers
50-
while they are viewing webpages. The resulting data provides insight into
48+
<p>Web analytics involves collecting, processing, visualizing web data to enable
49+
critical thinking about how users interact with a web application.</p>
50+
<h2>Why is web analytics important?</h2>
51+
<p>User clients, especially web browsers, generate significant data while users
52+
read and interact with webpages. The data provides insight into
5153
how visitors use the site and why they stay or leave. The key concept to
5254
analytics is <em>learning</em> about your users so you can improve your web
5355
application to better suit their needs. </p>
56+
<h2>Web analytics concepts</h2>
5457
<p>It's easy to get overwhelmed at both the number of analytics services and
5558
the numerous types of data points collected. Focus on just a handful of
5659
metrics when you're just starting out. As your application scales and you
@@ -60,14 +63,27 @@ <h1>Web analytics</h1>
6063
<a href="http://spenczar.com/posts/2013/Sep/07/seven-stages-analytics-grief/">seven stages of startup analytics grief</a>
6164
post is an amusing read and provides context for how to begin and then grow
6265
tracked metrics over time.</p>
63-
<h2>User funnels</h2>
66+
<h3>User funnels</h3>
6467
<p>If your application is
6568
selling a product or service you can ultimately build a
6669
<a href="http://moz.com/blog/building-your-marketing-funnel-with-google-analytics">user funnel</a> (often called "sales funnel" prior to a user becoming a customer)
6770
to better understand why people buy or don't buy what you're selling. With
6871
a funnel you can visualize drop-off points where visitors leave your
6972
application before taking some action, such as purchasing your service.</p>
70-
<h2>Web Analytics Third Party Services</h2>
73+
<h2>Open source web analytics projects</h2>
74+
<ul>
75+
<li>
76+
<p><a href="http://piwik.org/">Piwik</a> is a web analytics platform you can host yourself.
77+
Piwik is a solid choice if you cannot use Google Analytics or want to
78+
customize your own web analytics platform.</p>
79+
</li>
80+
<li>
81+
<p><a href="http://www.openwebanalytics.com/">Open Web Analytics</a> is another
82+
self-hosted platform that integrates through a JavaScript snippet that
83+
tracks users' interactions with the webpage.</p>
84+
</li>
85+
</ul>
86+
<h2>Hosted web analytics services</h2>
7187
<ul>
7288
<li>
7389
<p><a href="http://www.google.com/analytics/">Google Analytics</a> is a widely used
@@ -94,7 +110,7 @@ <h2>Web Analytics Third Party Services</h2>
94110
movements. </p>
95111
</li>
96112
</ul>
97-
<h2>Web Analytics Resources</h2>
113+
<h2>Web analytics resources</h2>
98114
<ul>
99115
<li>
100116
<p><a href="http://blog.arkency.com/2012/12/google-analytics-for-developers/">Google Analytics for Developers</a> </p>

0 commit comments

Comments
 (0)