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”
Category Archives: Development
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”
How to use media qurey mixin in SASS
media-breakpoint-between($lower, $upper) Dependencies The mixins are declared in mixins/_breakpoints.scss, and depend on the $grid-breakpoints map, found in _variables.scss. Example Breakpoint map: $grid-breakpoints: ( xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px ) Mixin: @include media-breakpoint-between(sm, md) { // your code } Compiles to @media (min-width: 576px) and (max-width: 991px) {} Important notice Media-breakpoint-between mixin usesContinue reading “How to use media qurey mixin in SASS”
SASS and the power of Mixins!
Introduction: Sass is a style sheet language initially designed by Hampton Catlin and developed by Natalie Weizenbaum. After its initial versions, Weizenbaum and Chris Eppstein have continued to extend Sass with SassScript, a scripting language used in Sass files . Credit goes to Josh Pollock a wordpress developer and educator. What is it a nutshell: Continue reading “SASS and the power of Mixins!”
Angular 8:Child to Parent Component
Parent Component ===================== (notify) = “handler()” ================== Child Component @Output notify =================== If you want to pass some data from child to parent component, we create an EventEmitter and decorate with @Output() decorator to be communicated to the parent. The Parent will have an event binding with the name of the eventEmitter bound to aContinue reading “Angular 8:Child to Parent Component”