Introduction Previously, we showed you a high-level version of the “Audience Overview” report. At the bottom of that report, there’s a link to “view full report,” where you can see expanded versions of each Audience report in the left-hand navigation. Now, let’s check out a full report. When you open up the full report, you’llContinue reading “Navigating full reports: Part 1”
Author Archives: anthonykuong
Audience Overview Report
Date range At the top of every report is a date-range. This lets you set the time period in which you want to analyze report data. Click the date range to open up the date range selector. Date range selector This opens up a calendar on the left where you can select your date ranges.Continue reading “Audience Overview Report”
Google Analytics Components
Account/Property/View switcher If you have multiple accounts, properties, or views set up, you can easily switch between them by clicking on the pulldown menu with the title of your View in the upper-left corner. When you open up the account picker, you can select by account, property, or view. You can also search any ofContinue reading “Google Analytics Components”
The Analytics account structure
All of your Google Analytics accounts can be grouped under an “Organization,” which is optional. This allows you to manage multiple Google Analytics accounts under one grouping. Large businesses or agencies could have multiple accounts, while, medium to small-sized businesses generally (only) use one account. When you create an account, you also automatically create aContinue reading “The Analytics account structure”
How to set up account views with filters
Check out these links to learn more about setting up Google Analytics: Set up the Analytics tag Verify your tracking code installation with Google Tag Assistant Chrome extension View the history of account changes Diagnostics messages Common account issues User permissions Using App + Web properties Next, let’s look at how to set up customizedContinue reading “How to set up account views with filters”
The process of collecting Analytics data
Google Analytics is a platform that collects data and compiles it into useful reports. Tracking a Website To track a website, you first have to create a Google Analytics account. Then you need to add a small piece of Javascript tracking code to each page on your site. Every time a user visits a webpage,Continue reading “The process of collecting Analytics data”
Google Analytics for Beginners
Defining Digital Analytics To begin, let’s start by defining “digital analytics” and why it’s important. In marketing, we have the concept of a purchase funnel. There are different stages within the funnel that describe customer interactions. A basic purchase funnel includes the following steps: Acquisition involves building awareness and acquiring user interest Behavior is whenContinue reading “Google Analytics for Beginners”
How To Create a Node.js Module that gets Covid-19 data
Introduction Why we’re using Node.js: Node.js came into existence because we can only run JS in a browser and wanted it to run on your machine as a standalone application. Node.js® is a JavaScript runtime built on Chrome’s V8 JavaScript engine. using non-blocking I/O What is a module? In Node.js, a module is a collection of JavaScriptContinue reading “How To Create a Node.js Module that gets Covid-19 data”
RxJS Empty Observables!
Empty observables can be dangerous when not understanding how they affect callbacks. In this post I will try to explain how you can avoid getting fooled by empty observables. The subscribe operator The subscribe operator in RxJS provides three callbacks: success, error and complete: Success -> Whenever the Observable emits an item. Error -> Oops something wentContinue reading “RxJS Empty Observables!”
Change Detection Strategy
👉 Change Detection Strategy By default Angular uses the ChangeDetectionStrategy.Default change detection strategy. The default strategy doesn’t assume anything about the application anything from a click event to data received from an ajax call causes the change detection to be triggered. @Component({ template: ` <h1>Hello {{name}}!</h1> {{runChangeDetection}} ` }) export class HelloComponent { @Input() name: string;Continue reading “Change Detection Strategy”