Understanding Your Audience: Using Probabilistic Data Aggregation Jason Carey Software Engineer, Data

Size: px
Start display at page:

Download "Understanding Your Audience: Using Probabilistic Data Aggregation Jason Carey Software Engineer, Data"

Transcription

1

2 Understanding Your Audience: Using Probabilistic Data Aggregation Jason Carey Software Engineer, Data

3 The Vision

4 Insights Audience API Fast, ad hoc aggregate queries 10+ proprietary demographic models Device, Gender, Interest, Language, Location, TV Audience size up to tens of millions of users User privacy is of paramount importance

5 Birdseye View User: a Twitter user People tweeting about doughnuts People tweeting : a collection of users used to build audiences Audience: a collection of segments that can be queried Audience Audience Query: an audience and a collection of demographics Query Interest by Gender Audience Aggregate Results

6 Example Query For people tweeting about my brand, tell me the top TV shows by gender: { } Female : { Game of Thrones : 7, House : 24, The Daily Show : 4, Wimbledon : 14 }, Male : { Game of Thrones : 21, House : 9, The Daily Show : 18, Wimbledon : 16, } 7% of audience are females following Game of Thrones

7 Technical Approach

8 Technical Approach Users in a

9 Technical Approach Users in a Users in a Random Sample

10 Technical Approach When adding users to a segment, maintain a random customer add users to segment API

11 Technical Approach When adding users to a segment, maintain a random customer add users to segment API When creating an audience, merge segment s into an audience customer create audience API segment s audience

12 Technical Approach When adding users to a segment, maintain a random customer add users to segment API When creating an audience, merge segment s into an audience customer create audience API segment s audience When querying, call demographic index for users in audience and aggregate results customer query audience API audience demographic index

13 Sampling Technical Challenges customer can be updated over multiple requests Duplicate users may be sent in requests create segment add users customer API store segment add users API is sent in add update API update

14 Sampling Maintain a MinHash for each segment hash(@katy) Add 4 users to segment hash(@bob) API customer 9 7 MinHash Sample size: 2 hash(@bob) 7 (@jeff, 4) hash(@jeff) 4 MinHash is the random Store MinHash

15 Audience Sampling Technical Challenges Duplicate users across segments customer create audience API segment s audience Merging segment s into a single random 10,000 Users Doughnut 1,000,000 Audience

16 De-Duping Users In Samples If the same user exists in multiple segment s, does it matter how you de-dupe? 10,000 Users Doughnut 1,000,000 Audience

17 De-Duping Users In Samples If the same user exists in multiple segment s, does it matter how you de-dupe? No, it does not matter as long as the audience is constructed using a weighted selection based on the segment cardinalities. 10,000 Users Audience 1,000,000 Users

18 De-Duping Users In Samples 10,000 Users 1,000,000 Users Audience with higher probability with lower probability

19 De-Duping Users In Samples Option in Doughnut Option in Coffee 10,000 Users 1,000,000 Users 10,000 Users 1,000,000 Users Doughnut Coffee Audience Audience with higher probability with lower probability

20 De-Duping Users In Samples NEED TO KNOW THIS 10,000 Users 1,000,000 Users Doughnut Coffee HyperLogLog to the rescue! Audience with higher probability with lower probability

21 Did Somebody Say HyperLogLog? Estimates the number of unique items in a data stream A billion items requires only KBs of storage for an accuracy of 2% Intuition: I flip a coin a bunch of times and tell you the largest number of heads flipped in a row. I then ask you how many times I flipped the coin. Flajolet, P.; Fusy, E.; Gandouet, O.; Meunier, F. (2007). "HyperLogLog: the analysis of a near-optimal cardinality estimation algorithm" (PDF). AOFA 07: Proceedings of the 2007 International Conference on the Analysis of Algorithms.

22 Merging Samples Repeat until size is reached Weighted selection of segment based on segment s cardinality 10,000 Users Doughnut Sample 1,000,000 Users Coffee Sample Randomly choose a user from selected segment User 7 User 1 User 4 User 2 Audience Sample User 9

23 Sampling Recap MinHash for sampling users in a segment HyperLogLog for estimating segment cardinality s de-duped in any order Weighted selection of segment s for audience

24 User Privacy

25 Don t Forget About User Privacy Make it extremely difficult to reverse engineer a user s demographics Attack vectors Set balancing Side channel Homogenous group search

26 Set Balancing (Simple) Query 1 Query 2 Users 1 though 20 Users 1 though 21 Is information leaked?

27 Set Balancing (Simple) Users 1-20 Is information leaked?

28 Set Balancing (Simple) User 21 Is information leaked? Yes! Q2 - Q1 leaks info about User 21

29 Set Balancing (Complex) Execute a series of queries Query 1 Users 1 though 10 Query 2 Query 3 Query 4 User 1 plus users 11 through 20 Odd users between 1 and 20 Even users between 1 and 20 Is information leaked?

30 Set Balancing (Complex) Execute a series of queries Query 1 Users 1 though 10 Query 2 Query 3 Query 4 User 1 plus users 11 through 20 Odd users between 1 and 20 Even users between 1 and 20 Is information leaked?

31 Set Balancing (Complex) Execute a series of queries Query 1 + Query 2 Query 3 + Query 4 Is information leaked?

32 Set Balancing (Complex) Execute a series of queries User 1 Is information leaked? Yes! Q1 + Q2 - Q3 - Q4 leaks info about User 1

33 Mitigating Attacks Minimum audience size Random sampling Reporting thresholds Query auditing

34 Architectural Highlights Valuable insights while protecting user privacy Small storage footprint Query latency does not increase with audience size

35 Thank

Counting is Hard: Probabilistically Counting Views at Reddit. Krishnan Chandra, Data Engineer

Counting is Hard: Probabilistically Counting Views at Reddit. Krishnan Chandra, Data Engineer Counting is Hard: Probabilistically Counting Views at Reddit Krishnan Chandra, Data Engineer What is probabilistic counting? Overview How did probabilistic counting help us scale? What issues did we face

More information

OUR TOP DATA SOURCES AND WHY THEY MATTER

OUR TOP DATA SOURCES AND WHY THEY MATTER OUR TOP DATA SOURCES AND WHY THEY MATTER TABLE OF CONTENTS INTRODUCTION 2 MAINSTREAM WEB 3 MAJOR SOCIAL NETWORKS 4 AUDIENCE DATA 5 VIDEO 6 FOREIGN SOCIAL NETWORKS 7 SYNTHESIO DATA COVERAGE 8 1 INTRODUCTION

More information

Sliding HyperLogLog: Estimating cardinality in a data stream

Sliding HyperLogLog: Estimating cardinality in a data stream Sliding HyperLogLog: Estimating cardinality in a data stream Yousra Chabchoub, Georges Hébrail To cite this version: Yousra Chabchoub, Georges Hébrail. Sliding HyperLogLog: Estimating cardinality in a

More information

Distinct Stream Counting

Distinct Stream Counting Distinct Stream Counting COMP 3801 Final Project Christopher Ermel 1 Problem Statement Given an arbitrary stream of data, we are interested in determining the number of distinct elements seen at a given

More information

MinHash Sketches: A Brief Survey. June 14, 2016

MinHash Sketches: A Brief Survey. June 14, 2016 MinHash Sketches: A Brief Survey Edith Cohen edith@cohenwang.com June 14, 2016 1 Definition Sketches are a very powerful tool in massive data analysis. Operations and queries that are specified with respect

More information

A U T O M A T E D C O N T E NT P R O T E C T I O N, A N A L Y T I C S A N D M O N E T I Z A T I O N A C R O S S S O C I A L P L A T F O R M S

A U T O M A T E D C O N T E NT P R O T E C T I O N, A N A L Y T I C S A N D M O N E T I Z A T I O N A C R O S S S O C I A L P L A T F O R M S Presenting: Eyal Arad VIDEOCITES 1 ID LTD. 2018 A U T O M A T E D C O N T E NT P R O T E C T I O N, A N A L Y T I C S A N D M O N E T I Z A T I O N A C R O S S S O C I A L P L A T F O R M S VIDEOCITES

More information

Amusing algorithms and data-structures that power Lucene and Elasticsearch. Adrien Grand

Amusing algorithms and data-structures that power Lucene and Elasticsearch. Adrien Grand Amusing algorithms and data-structures that power Lucene and Elasticsearch Adrien Grand Agenda conjunctions regexp queries numeric doc values compression cardinality aggregation How are conjunctions implemented?

More information

Cardinality Estimation: An Experimental Survey

Cardinality Estimation: An Experimental Survey : An Experimental Survey and Felix Naumann VLDB 2018 Estimation and Approximation Session Rio de Janeiro-Brazil 29 th August 2018 Information System Group Hasso Plattner Institut University of Potsdam

More information

Making Session Stores More Intelligent KYLE J. DAVIS TECHNICAL MARKETING MANAGER REDIS LABS

Making Session Stores More Intelligent KYLE J. DAVIS TECHNICAL MARKETING MANAGER REDIS LABS Making Session Stores More Intelligent KYLE J. DAVIS TECHNICAL MARKETING MANAGER REDIS LABS What is a session store? A session store is An chunk of data that is connected to one user of a service user

More information

ONLINE TV VIEWING BY AGE

ONLINE TV VIEWING BY AGE 1 FIRST LOOK: ONLINE TV VIEWING PATTERNS REVEALED November 217 Whether it s Blue Planet II on iplayer or Love Island on the ITV Hub, watching television on your computer device (PC, tablet or smartphone)

More information

How to Register for a Developer Account Nick V. Flor

How to Register for a Developer Account Nick V. Flor How to Register for a Developer Account Nick V. Flor (professorf@gmail.com) Before you can scrape Twitter, you need a Consumer Key and Consumer Secret (codes). But before you can get these codes, you need

More information

DIGITAL MARKETING AND SOCIAL MEDIA COMMUNICATION FOR THE NSS EPALE CY TEAM AND STAKEHOLDERS

DIGITAL MARKETING AND SOCIAL MEDIA COMMUNICATION FOR THE NSS EPALE CY TEAM AND STAKEHOLDERS DIGITAL MARKETING AND SOCIAL MEDIA COMMUNICATION FOR THE NSS EPALE CY TEAM AND STAKEHOLDERS 6 και 7 Ιουνίου, 8:00 π.μ.-15:00 μ.μ. Παιδαγωγικό Ινστιτούτο Κύπρου, Αίθουσα Π206 THE SEMINAR WAS HELD DURING

More information

Using Metadata Queries To Build Row-Level Audit Reports in SAS Visual Analytics

Using Metadata Queries To Build Row-Level Audit Reports in SAS Visual Analytics SAS6660-2016 Using Metadata Queries To Build Row-Level Audit Reports in SAS Visual Analytics ABSTRACT Brandon Kirk and Jason Shoffner, SAS Institute Inc., Cary, NC Sensitive data requires elevated security

More information

Enhancing Security With SQL Server How to balance the risks and rewards of using big data

Enhancing Security With SQL Server How to balance the risks and rewards of using big data Enhancing Security With SQL Server 2016 How to balance the risks and rewards of using big data Data s security demands and business opportunities With big data comes both great reward and risk. Every company

More information

High-Performance Distributed DBMS for Analytics

High-Performance Distributed DBMS for Analytics 1 High-Performance Distributed DBMS for Analytics 2 About me Developer, hardware engineering background Head of Analytic Products Department in Yandex jkee@yandex-team.ru 3 About Yandex One of the largest

More information

GSMA Research into mobile users privacy attitudes. Key findings from Brazil. Conducted by in November 2012

GSMA Research into mobile users privacy attitudes. Key findings from Brazil. Conducted by in November 2012 GSMA Research into mobile users privacy attitudes Key findings from Brazil Conducted by in November 2012 0 Background and objectives Background The GSMA represents the interests of the worldwide mobile

More information

1. The Difference Between Success and Failure

1. The Difference Between Success and Failure Table of Contents 1. The Difference Between Success and Failure... 3 2. Tracking Code... 4 3. Account Level Configurations... 5 4. Property Level Configurations... 6 5. View Level Configurations... 8 6.

More information

Welcome! Power BI User Group (PUG) Copenhagen

Welcome! Power BI User Group (PUG) Copenhagen Welcome! Power BI User Group (PUG) Copenhagen Connect to Data in Power BI Desktop Just Thorning Blindbæk Consultant, Trainer and Speaker Connect to Data in Power BI Desktop Basic introduction to data connectivity

More information

Why Highly Distributed Computing Matters. Tom Leighton, Chief Scientist Mike Afergan, Chief Technology Officer J.D. Sherman, Chief Financial Officer

Why Highly Distributed Computing Matters. Tom Leighton, Chief Scientist Mike Afergan, Chief Technology Officer J.D. Sherman, Chief Financial Officer Why Highly Distributed Computing Matters Tom Leighton, Chief Scientist Mike Afergan, Chief Technology Officer J.D. Sherman, Chief Financial Officer The Akamai Platform The world s largest on-demand, distributed

More information

this is not a love song How Spotify Uses Tableau Public Skyler Johnson

this is not a love song How Spotify Uses Tableau Public Skyler Johnson this is not a love song How Spotify Uses Tableau Public Skyler Johnson Data Visualization Designer Spotify Intro Tableau Desktop/Server @ Spotify 2018.1, 8-core Primary & Worker usually upgrade soon

More information

Solution of Exercise Sheet 11

Solution of Exercise Sheet 11 Foundations of Cybersecurity (Winter 16/17) Prof. Dr. Michael Backes CISPA / Saarland University saarland university computer science Solution of Exercise Sheet 11 1 Breaking Privacy By Linking Data The

More information

Every product has a story. Let ScanLife tell it.

Every product has a story. Let ScanLife tell it. Every product has a story. Let ScanLife tell it. Think of ScanLife as the get more button. And you decide what happens when they press it. Go to website Save a contact Initiate a call Send an SMS Send

More information

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics An Oracle White Paper October 2012 Oracle Social Cloud Platform Text Analytics Executive Overview Oracle s social cloud text analytics platform is able to process unstructured text-based conversations

More information

Google GSuite Intro Demo of GSuite and GCP integration

Google GSuite Intro Demo of GSuite and GCP integration Google GSuite Intro Demo of GSuite and GCP integration May 2017 Sara Djelassi - Sales Steve Mansfield - PSO 7 Cloud products with 1 billion users ML is core to differentiating Google services Search Search

More information

"You can t manage what you can t measure." Peter Drucker, management consultant, educator, and author

You can t manage what you can t measure. Peter Drucker, management consultant, educator, and author THE 4 1 2 MINUTE GUIDE TO GOOGLE ANALYTICS "You can t manage what you can t measure." Peter Drucker, management consultant, educator, and author Google Analytics is a comprehensive software platform that

More information

INTRODUCTION. In this summary version, we present some of the key figures and charts.

INTRODUCTION. In this summary version, we present some of the key figures and charts. 1 INTRODUCTION GWI Market reports track key digital behaviors and penetration levels at a national level, providing the very latest figures for topline engagement as well as analyzing patterns across demographic

More information

8 Introduction to Distributed Computing

8 Introduction to Distributed Computing CME 323: Distributed Algorithms and Optimization, Spring 2017 http://stanford.edu/~rezab/dao. Instructor: Reza Zadeh, Matroid and Stanford. Lecture 8, 4/26/2017. Scribed by A. Santucci. 8 Introduction

More information

NinthDecimal Mobile Audience Q Insights Report

NinthDecimal Mobile Audience Q Insights Report Q3 2013 Insights Report Research Overview Device Ownership and Usage 2 Consumer CPG Path to Purchase Behaviors 3-11 Mobile Ad Performance 12-13 Connected Device Trends & Adoption 14-15 Worldwide Location

More information

Consumer Insights. YouGov Omnibus, 5 th -6 th April

Consumer Insights. YouGov Omnibus, 5 th -6 th April Consumer Insights YouGov Omnibus, 5 th -6 th April 2018 research@iabuk.net Methodology asked a series of questions to consumers to support the release of the Full Year 2017 Adspend Report Quantitative

More information

PART 3/3 DEMYSTIFYING THE INBOX

PART 3/3 DEMYSTIFYING THE INBOX PART 3/3 DEMYSTIFYING THE INBOX January 2013 Introduction In part one we looked at factors that make email the ultimate digital communication channel. We got insights on when, where and how South Africans

More information

A Guide to using Social Media (Facebook and Twitter)

A Guide to using Social Media (Facebook and Twitter) A Guide to using Social Media (Facebook and Twitter) Facebook 1. Visit www.facebook.com 2. Click the green Sign up button on the top left-hand corner (see diagram below) 3. Enter all the information required

More information

Google & Mobile SEO 1

Google & Mobile SEO 1 Google & Mobile SEO 1 Mobile-Friendly Website SEO Best Practices C R E A T I V E C L I C K M E D I A Design for Performance Device Limitations Its important to consider that your mobile visitors are likely

More information

SAM Ad-Hoc. Gives direct, near unrestricted (view-only) access to your SAM database Ability to see raw data with queries created by you.

SAM Ad-Hoc. Gives direct, near unrestricted (view-only) access to your SAM database Ability to see raw data with queries created by you. SAM Ad-Hoc Gives direct, near unrestricted (view-only) access to your SAM database Ability to see raw data with queries created by you. Four Clauses of a Query SELECT Describes the columns that will be

More information

Welcome to. Ignite B2B: How to use personalisation in marketing to improve the customer experience.

Welcome to. Ignite B2B: How to use personalisation in  marketing to improve the customer experience. Welcome to Ignite B2B: How to use personalisation in email marketing to improve the customer experience. Jenna Tiffany MCIM Founder & Strategy Director Let s get interactive! Download The B2B Marketing

More information

Distributed computing: index building and use

Distributed computing: index building and use Distributed computing: index building and use Distributed computing Goals Distributing computation across several machines to Do one computation faster - latency Do more computations in given time - throughput

More information

MOBILE MARKETING ASSOCIATION CONSUMER INTEREST IN MOBILE BANKING: GERMANY FEBRUARY 2010

MOBILE MARKETING ASSOCIATION CONSUMER INTEREST IN MOBILE BANKING: GERMANY FEBRUARY 2010 MOBILE MARKETING ASSOCIATION CONSUMER INTEREST IN MOBILE BANKING: GERMANY FEBRUARY 2010 MMA CONSUMER BRIEFING: GERMANY Mobile Marketing Association, 2010. ABOUT MMA S LIGHTSPEED GERMANY CONSUMER BRIEFINGS:

More information

Analytics. EduPristine DM Analytics. EduPristine

Analytics. EduPristine DM Analytics. EduPristine Analytics EduPristine www.edupristine.com Making the Data work for the Business 1 Digital Analytics Digital analytics is the analysis of qualitative and quantitative data from your business and the competition

More information

Extracting Information from Social Networks

Extracting Information from Social Networks Extracting Information from Social Networks Reminder: Social networks Catch-all term for social networking sites Facebook microblogging sites Twitter blog sites (for some purposes) 1 2 Ways we can use

More information

By Kashyap Shukla Principal Consultant, OCP. Mauli Systems, Inc.

By Kashyap Shukla Principal Consultant, OCP. Mauli Systems, Inc. By Kashyap Shukla Principal Consultant, OCP Mauli Systems, Inc. Data Quality, Accuracy and Management is such a broad and complex subject. There are many disparate systems and databases in today s enterprise.

More information

Welcome to the RFMA 2016 Annual Conference Mobile App!

Welcome to the RFMA 2016 Annual Conference Mobile App! Welcome to the RFMA 2016 Annual Conference Mobile App! You re the Star & We re Putting on the Show Simply everything you need to know, at your fingertips! The Restaurant Facility Management Association

More information

Discoverer Viewer. User Manual. for SDS

Discoverer Viewer. User Manual. for SDS Discoverer Viewer User Manual for SDS saskatchewan.ca 2017 Table of Contents Introduction... 3 How to Get Started... 3 Logging In... 3 First Time Logging In Preferences Changes... 4 Worksheet List... 5

More information

Data-Intensive Distributed Computing

Data-Intensive Distributed Computing Data-Intensive Distributed Computing CS 451/651 431/631 (Winter 2018) Part 5: Analyzing Relational Data (1/3) February 8, 2018 Jimmy Lin David R. Cheriton School of Computer Science University of Waterloo

More information

THE AUSTRALIAN ONLINE LANDSCAPE REVIEW JULY 2015

THE AUSTRALIAN ONLINE LANDSCAPE REVIEW JULY 2015 THE AUSTRALIAN ONLINE LANDSCAPE REVIEW JULY 2015 STATE OF THE ONLINE LANDSCAPE July 2015 Welcome to the July 2015 edition of Nielsen s Online Landscape Review. The online landscape in July saw Australians

More information

SKETCHES ON SINGLE BOARD COMPUTERS

SKETCHES ON SINGLE BOARD COMPUTERS Sabancı University Program for Undergraduate Research (PURE) Summer 17-1 SKETCHES ON SINGLE BOARD COMPUTERS Ali Osman Berk Şapçı Computer Science and Engineering, 1 Egemen Ertuğrul Computer Science and

More information

TSDS. **You must have TEAL access before you can request TSDS access.

TSDS. **You must have TEAL access before you can request TSDS access. 1 Table of Contents: TSDS UID o Roles o Search o View Tabs Upload Batches o Assigning UID # Near Matches o Assigning Enrollment Events Cancelled/Not uploaded Files Manually Enter Individual TIMS 2 TSDS

More information

The Smartphone Consumer June 2012

The Smartphone Consumer June 2012 The Smartphone Consumer 2012 June 2012 Methodology In January/February 2012, Edison Research and Arbitron conducted a national telephone survey offered in both English and Spanish language (landline and

More information

Information Security

Information Security SE 4472b Information Security Week 2-2 Some Formal Security Notions Aleksander Essex Fall 2015 Formalizing Security As we saw, classical ciphers leak information: Caeser/Vigenere leaks letter frequency

More information

Extreme Storage Performance with exflash DIMM and AMPS

Extreme Storage Performance with exflash DIMM and AMPS Extreme Storage Performance with exflash DIMM and AMPS 214 by 6East Technologies, Inc. and Lenovo Corporation All trademarks or registered trademarks mentioned here are the property of their respective

More information

Outsourcing Privacy-Preserving Social Networks to a Cloud

Outsourcing Privacy-Preserving Social Networks to a Cloud IEEE INFOCOM 2013, April 14-19, Turin, Italy Outsourcing Privacy-Preserving Social Networks to a Cloud Guojun Wang a, Qin Liu a, Feng Li c, Shuhui Yang d, and Jie Wu b a Central South University, China

More information

T he Inbox Report REVEAL MORE CONSUMER PERCEPTIONS OF . Fluent LLC Inbox. Sent. Drafts. Spam. Trash. Click here to Reply

T he Inbox Report REVEAL MORE CONSUMER PERCEPTIONS OF  . Fluent LLC Inbox. Sent. Drafts. Spam. Trash. Click here to Reply Inbox 1 Fluent LLC Sent Drafts Spam Trash T he Inbox Report CONSUMER PERCEPTIONS OF EMAIL loading... REVEAL MORE Click here to Reply Inbox Report 2018 Americans are addicted to email.

More information

THE STATE OF ONLINE VIDEO 2017

THE STATE OF ONLINE VIDEO 2017 EXPERIENCE FIRST MARKET RESEARCH THE STATE OF ONLINE VIDEO 2017 The State of Online Video is Limelight Networks latest in a series of surveys that explores consumer perceptions and behaviors around digital

More information

Bitcoin, Security for Cloud & Big Data

Bitcoin, Security for Cloud & Big Data Bitcoin, Security for Cloud & Big Data CS 161: Computer Security Prof. David Wagner April 18, 2013 Bitcoin Public, distributed, peer-to-peer, hash-chained audit log of all transactions ( block chain ).

More information

How to Save the Smart Home from Cyber Invasion. IoT DevCon 2017 Art Swift, President, prpl Foundation

How to Save the Smart Home from Cyber Invasion. IoT DevCon 2017 Art Swift, President, prpl Foundation How to Save the Smart Home from Cyber Invasion Art Swift, President, prpl Foundation Smart Home Security Report 2016 Research Findings Smart device adoption has reached a tipping point - the smart home

More information

Large-Scale Data Engineering. Overview and Introduction

Large-Scale Data Engineering. Overview and Introduction Large-Scale Data Engineering Overview and Introduction Administration Blackboard Page Announcements, also via email (pardon html formatting) Practical enrollment, Turning in assignments, Check Grades Contact:

More information

Midterm 1: CS186, Spring 2012

Midterm 1: CS186, Spring 2012 Midterm 1: CS186, Spring 2012 Prof. J. Hellerstein You should receive a double- sided answer sheet and a 7- page exam. Mark your name and login on both sides of the answer sheet. For each question, place

More information

GROW YOUR BUSINESS WITH HELP FROM GOOGLE Ranking Factors

GROW YOUR BUSINESS WITH HELP FROM GOOGLE Ranking Factors GROW YOUR BUSINESS WITH HELP FROM GOOGLE Ranking Factors JUSTIN EMIG VP, MARKETING AND INNOVATION WEB TALENT MARKETING HELLO I am Justin Emig Holds 10 digital marketing certifications Has 9 years of digital

More information

System Administrator s Handbook

System Administrator s Handbook System Administrator s Handbook www.lamplightdb.co.uk Contents The role of system administrators p.4 Database operators adding, setting permissions and deleting p.5 Lockouts and factor authentication

More information

MOBILE DEFEND. Powering Robust Mobile Security Solutions

MOBILE DEFEND. Powering Robust Mobile Security Solutions MOBILE DEFEND Powering Robust Mobile Security Solutions Table of Contents Introduction Trustlook SECURE ai Mobile Defend Who Uses SECURE ai Mobile Defend? How it Works o Mobile Device Risk Score o Mobile

More information

Why I Use Python for Academic Research

Why I Use Python for Academic Research Why I Use Python for Academic Research Academics and other researchers have to choose from a variety of research skills. Most social scientists do not add computer programming into their skill set. As

More information

ANALYTICS DATA To Make Better Content Marketing Decisions

ANALYTICS DATA To Make Better Content Marketing Decisions HOW TO APPLY ANALYTICS DATA To Make Better Content Marketing Decisions AS A CONTENT MARKETER you should be well-versed in analytics, no matter what your specific roles and responsibilities are in working

More information

SDOT TRANSPORTATION OPERATIONS CENTER (TOC)

SDOT TRANSPORTATION OPERATIONS CENTER (TOC) SDOT TRANSPORTATION OPERATIONS CENTER (TOC) Presented at Western ITE, July 20, 2015 by: Erin Ehlinger, Traffic Engineer Trevor Partap, SDOT ITS Operations Engineer Jason Cambridge, SDOT IT Engineer SEATTLE

More information

Oracle NoSQL Database at OOW 2017

Oracle NoSQL Database at OOW 2017 Oracle NoSQL Database at OOW 2017 CON6544 Oracle NoSQL Database Cloud Service Monday 3:15 PM, Moscone West 3008 CON6543 Oracle NoSQL Database Introduction Tuesday, 3:45 PM, Moscone West 3008 CON6545 Oracle

More information

ReJOIN: A Prototype Query Optimizer using Deep Reinforcement Learning. Ryan Marcus*, Brandeis University Olga Papaemmanouil, Brandeis University

ReJOIN: A Prototype Query Optimizer using Deep Reinforcement Learning. Ryan Marcus*, Brandeis University Olga Papaemmanouil, Brandeis University ReJOIN: A Prototype Query Optimizer using Deep Reinforcement Learning Ryan Marcus*, Brandeis University Olga Papaemmanouil, Brandeis University 10/3/2018 These slides: http://rm.cab/ibm18 Join Order Enumeration

More information

TURN DATA INTO ACTIONABLE INSIGHTS. Google Analytics Workshop

TURN DATA INTO ACTIONABLE INSIGHTS. Google Analytics Workshop TURN DATA INTO ACTIONABLE INSIGHTS Google Analytics Workshop The Value of Analytics Google Analytics is more than just numbers and stats. It tells the story of how people are interacting with your brand

More information

THE AUSTRALIAN ONLINE LANDSCAPE REVIEW AUGUST 2015

THE AUSTRALIAN ONLINE LANDSCAPE REVIEW AUGUST 2015 THE AUSTRALIAN ONLINE LANDSCAPE REVIEW AUGUST 2015 STATE OF THE ONLINE LANDSCAPE August 2015 Welcome to the August 2015 edition of Nielsen s Online Landscape Review. The online landscape in August saw

More information

Secrets to Facebook Communications

Secrets to Facebook Communications Secrets to Facebook Communications August 6, 2013 Morgan McLintic Executive Vice President LEWIS PR Haley Hebert Managing Director, Digital Marketing LEWIS Pulse Dan Wire Social Comms Team Lead VMware

More information

Recently Updated Dumps from PassLeader with VCE and PDF (Question 1 - Question 15)

Recently Updated Dumps from PassLeader with VCE and PDF (Question 1 - Question 15) Recently Updated 70-467 Dumps from PassLeader with VCE and PDF (Question 1 - Question 15) Valid 70-467 Dumps shared by PassLeader for Helping Passing 70-467 Exam! PassLeader now offer the newest 70-467

More information

What I Do After Clicking Publish

What I Do After Clicking Publish What I Do After Clicking Publish A bonus guide from PotPieGirl Many, many people have asked me EXACTLY what I do after clicking publish on a new post. I think that s a great question! And it s something

More information

Standard Rate & Data Service (SRDS)

Standard Rate & Data Service (SRDS) Standard Rate & Data Service (SRDS) User s Guide Welcome to the Standard Rate & Data Service (SRDS) database. This user guide will show you how to get started to access and utilize the wealth of information

More information

Clicking on Analytics will bring you to the Overview page.

Clicking on Analytics will bring you to the Overview page. YouTube Analytics - formerly known as Insight - is an extremely powerful set of tools that can provide you with a lot of information about your videos, your audience, and your customers. Clicking on Analytics

More information

Mobile: measurability unlocks spending

Mobile: measurability unlocks spending Mobile: measurability unlocks spending Gabriella Bergaglio TNS Digital Practice Lead Cristina Colombo TNS Consumer Insight Director IAB Forum 2013 Milan, 3rd-4th December TNS 2013 Storyline 1 Device penetration

More information

The New Standard for Data Visualization and Analysis. Version 7 User Guide.

The New Standard for Data Visualization and Analysis. Version 7 User Guide. The New Standard for Data Visualization and Analysis Version 7 User Guide www.fmsasg.com Table of Contents Chapter 1: Welcome to Sentinel Visualizer...7 Sentinel Visualizer System...7 Sentinel Visualizer

More information

TSDS UNIQUE ID SYSTEM. Overview

TSDS UNIQUE ID SYSTEM. Overview TSDS UNIQUE ID SYSTEM Overview ID Assignment Process Data Submission File Validation Pass Data Validation Fail Fail Pass Resolve Near Matches Near Matches Assign ID No Near Matches Download IDs TSDS UNIQUE

More information

You can return this form to it by post, fax or .

You can return this form   to it by post, fax or  . Electoral Register: When you register to vote, be sure to opt out of the edited (open) version of the Electoral Register. If you have already registered in this electoral cycle, you can also contact your

More information

May MapR Technologies 2014 MapR Technologies 1

May MapR Technologies 2014 MapR Technologies 1 MapR Technologies May 2016 1 Largest Biometric Database in the World 20 BILLION BIOMETRICS PEOPLE 2 3 Unique Identity Authority of India: Vision To empower residents of India with a unique identity and

More information

Introduction to Secure Multi-Party Computation

Introduction to Secure Multi-Party Computation Introduction to Secure Multi-Party Computation Many thanks to Vitaly Shmatikov of the University of Texas, Austin for providing these slides. slide 1 Motivation General framework for describing computation

More information

Listings: The PowerListings Network Network

Listings: The PowerListings Network Network Listings In today s competitive marketplace, when it comes to information, people expect nothing less than precision. When it derails a night out or delays an important purchase, misinformation can turn

More information

GOOGLE ANALYTICS 101 INCREASE TRAFFIC AND PROFITS WITH GOOGLE ANALYTICS

GOOGLE ANALYTICS 101 INCREASE TRAFFIC AND PROFITS WITH GOOGLE ANALYTICS GOOGLE ANALYTICS 101 INCREASE TRAFFIC AND PROFITS WITH GOOGLE ANALYTICS page 2 page 3 Copyright All rights reserved worldwide. YOUR RIGHTS: This book is restricted to your personal use only. It does not

More information

Let s get started with the module Getting Data from Existing Sources.

Let s get started with the module Getting Data from Existing Sources. Welcome to Data Academy. Data Academy is a series of online training modules to help Ryan White Grantees be more proficient in collecting, storing, and sharing their data. Let s get started with the module

More information

IBM Cognos Business Intelligence New Features Part II

IBM Cognos Business Intelligence New Features Part II IBM Cognos Business Intelligence 10.2.2 New Features Part II 18-Feb-15 IBM Analytics Open MIC Team Chakravarthi Mannava Facilitator & Technical Panel Member Subhash Kothari Presenter 2 Agenda Framework

More information

Session Questions and Responses

Session Questions and Responses Product: Topic: Audience: Updated: OpenText Image Crawler Webinar Questions ILTA February 10, 2015 Discover How to Make your Scanned Images Searchable with OpenText Image Crawler Session Questions and

More information

Are You Ready for the Mobile Web?

Are You Ready for the Mobile Web? Are You Ready for the Mobile Web? Public Diplomacy Goes Mobile Lovisa A. Williams Department of State New Frontier Office Space Building Communities! Policy Tools Culture Change Community Public Diplomacy

More information

Social Media Tools. March 13, 2010 Presented by: Noble Studios, Inc.

Social Media Tools. March 13, 2010 Presented by: Noble Studios, Inc. March 13, 2010 Presented by: Noble Studios, Inc. 1 Communication Timeline 2 Familiar Social Media Sites According to Facebook, more than 1.5 million local businesses have active pages on Facebook According

More information

Sky Social Media Guidelines for Contributors

Sky Social Media Guidelines for Contributors Sky Social Media Guidelines for Contributors Social chatter around TV shows is inevitable and, for the most part, positive. However, contributors are advised that people have a tendency to publish things

More information

THE SECOND WEB. 1 March John Blossom, President, Shore Communications Inc.

THE SECOND WEB. 1 March John Blossom, President, Shore Communications Inc. THE SECOND WEB John Blossom, President, Shore Communications Inc. About Shore 1 Web: shore.com Content Marketing Strategists Enhance your strategies for publishing and content technology products and services

More information

Apache Cassandra. Tips and tricks for Azure

Apache Cassandra. Tips and tricks for Azure Apache Cassandra Tips and tricks for Azure Agenda - 6 months in production Introduction to Cassandra Design and Test Getting ready for production The first 6 months 1 Quick introduction to Cassandra Client

More information

DEVELOPING AN AMAZON STRATEGY. A Guide for Brands

DEVELOPING AN AMAZON STRATEGY. A Guide for Brands DEVELOPING AN AMAZON STRATEGY A Guide for Brands Introduction No brand in the UK can ignore Amazon. The e-tailing giant accounts for 25% of all online retail activity in the UK, with over 10 billion visits

More information

Tips and Tricks selecting media and targets

Tips and Tricks selecting media and targets Tips and Tricks selecting media and targets Media and Target Selection Screens Before you begin working with The Media Audit software, you should become familiar with the report toolbars and how to navigate

More information

Apache Kylin. OLAP on Hadoop

Apache Kylin. OLAP on Hadoop Apache Kylin OLAP on Hadoop Agenda What s Apache Kylin? Tech Highlights Performance Roadmap Q & A http://kylin.io What s Kylin kylin / ˈkiːˈlɪn / 麒麟 --n. (in Chinese art) a mythical animal of composite

More information

MCSA Implementing a Data Warehouse with Microsoft SQL Server 2012/2014

MCSA Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 MCSA Implementing a Data Warehouse with Microsoft SQL Server 2012/2014 Microsoft 70-463 Dumps Available Here at: /microsoft-exam/70-463-dumps.html Enrolling now you will get access to 216 questions in

More information

ETL Best Practices and Techniques. Marc Beacom, Managing Partner, Datalere

ETL Best Practices and Techniques. Marc Beacom, Managing Partner, Datalere ETL Best Practices and Techniques Marc Beacom, Managing Partner, Datalere Thank you Sponsors Experience 10 years DW/BI Consultant 20 Years overall experience Marc Beacom Managing Partner, Datalere Current

More information

SOCIAL MEDIA. Charles Murphy

SOCIAL MEDIA. Charles Murphy SOCIAL MEDIA Charles Murphy Social Media Overview 1. Introduction 2. Social Media Areas Blogging Bookmarking Deals Location-based Music Photo sharing Video 3. The Fab Four FaceBook Google+ Linked In Twitter

More information

FACEBOOK FOR MOBILE MARKETING

FACEBOOK FOR MOBILE MARKETING 1 How to use FACEBOOK FOR MOBILE MARKETING w Optimize Your Facebook Marketing Strategy for More Traffic and Leads with Mobile A publication of 2 IS THIS BOOK RIGHT FOR ME? Not quite sure if this ebook

More information

CS 31: Intro to Systems Caching. Martin Gagne Swarthmore College March 23, 2017

CS 31: Intro to Systems Caching. Martin Gagne Swarthmore College March 23, 2017 CS 1: Intro to Systems Caching Martin Gagne Swarthmore College March 2, 2017 Recall A cache is a smaller, faster memory, that holds a subset of a larger (slower) memory We take advantage of locality to

More information

The Future of Real-Time in Spark

The Future of Real-Time in Spark The Future of Real-Time in Spark Reynold Xin @rxin Spark Summit, New York, Feb 18, 2016 Why Real-Time? Making decisions faster is valuable. Preventing credit card fraud Monitoring industrial machinery

More information

Setup Google Analytics

Setup Google Analytics Setup Google Analytics 1.1 Sign Up Google Analytics 1. Once you have a Google account, you can go to Google Analytics (https://analytics.google.com) and click the Sign into Google Analytics button. You

More information

TELUS PureFibre. I live in an apartment building. Can I still connect to the TELUS PureFibre network?

TELUS PureFibre. I live in an apartment building. Can I still connect to the TELUS PureFibre network? 1 2 3 4 5 6 7 8 9 10 What is the TELUS PureFibre TM network? Why would my community want TELUS fibre? I m a homeowner. How will TELUS fibre benefit me? I live in an apartment building. Can I still connect

More information

CS 161 Computer Security

CS 161 Computer Security Popa & Wagner Spring 2016 CS 161 Computer Security Midterm 2 Print your name:, (last) (first) I am aware of the Berkeley Campus Code of Student Conduct and acknowledge that academic misconduct will be

More information

Collective Mind. Early Warnings of Systematic Failures of Equipment. Dr. Artur Dubrawski. Dr. Norman Sondheimer. Auton Lab Carnegie Mellon University

Collective Mind. Early Warnings of Systematic Failures of Equipment. Dr. Artur Dubrawski. Dr. Norman Sondheimer. Auton Lab Carnegie Mellon University Collective Mind Early Warnings of Systematic Failures of Equipment Dr. Artur Dubrawski Auton Lab Carnegie Mellon University Dr. Norman Sondheimer University of Massachusetts Amherst 1 Collective Mind Unique

More information

Lecture 15. Lecture 15: Bitmap Indexes

Lecture 15. Lecture 15: Bitmap Indexes Lecture 5 Lecture 5: Bitmap Indexes Lecture 5 What you will learn about in this section. Bitmap Indexes 2. Storing a bitmap index 3. Bitslice Indexes 2 Lecture 5. Bitmap indexes 3 Motivation Consider the

More information