Acquiring, Exploring and Preparing the Data

Size: px
Start display at page:

Download "Acquiring, Exploring and Preparing the Data"

Transcription

1 Technical Appendix Catch the Pink Flamingo Analysis Produced by: Prabhat Tripathi Acquiring, Exploring and Preparing the Data Data Exploration Data Set Overview The table below lists each of the files available for analysis with a short description of what is found in each one. File Name Description Fields ad-clicks.csv Contain records of all clicks on ads by players Timestamp: the date-time when the event (click) occurred txid: a unique id within this file usersessionid: the id of the user session where this click occurred teamid: id of the team of the player who clicked on the ad adcategory: the category of the ad clicked buy-clicks.csv All in-app purchase entries Timestamp: the time when the purchase occurred txid: a unique if within this data set usersessionid: the id of the user session where this purchase occurred buyid: the id of the item bought userid: user that purchased the item price: price of the item purchased users.csv Contains all unique users in the game Timestamp: the date-time when each user first played the game (when the record was created) id: unique id given to each user nick: nick name chosen by the user

2 twitter: twitter handle of the user dob: date of birth country: two letter country code team.csv All teams terminated in the game teamid: unique id assigned to each team name: name of the team teamcreationtime: when team record was created teamendtime: timestamp when the last member left the team currentlevel: current level reached by the team team-assignments.csv Player-team mapping table time: when the user joined the team team: team id userid: user id Assignmentid: a unique id assigned to each user-team mapping level-events.csv user-session.csv Logs of teams completing game levels Each line in this file describes a user session, which denotes when a user starts and stops playing the game. Additionally, when a team goes to the next level in the game, the session is ended for each user in the team and a new one started. time: when a level start or end occurred eventid: a uniqueid assigned to each record teamid: team id level: level started or completed eventtype: start or end usersessionid: a unique id for the session. assignmentid: the team assignment id for the user to the team. starttimestamp: a timestamp denoting when the session started. endtimestamp: a timestamp denoting when the session ended. team_level: the level of the team during this session. platformtype: the type of platform of the user during this session.

3 game-clicks.csv Contains all clicks by users time: when the click occurred. clickid: a unique id for the click. userid: the id of the user performing the click. usersessionid: the id of the session of the user when the click is performed. ishit: denotes if the click was on a flamingo (value is 1) or missed the flamingo (value is 0) Aggregation Amount spent buying items # Unique items available to be purchased 6 A histogram showing how many times each item is purchased: A histogram showing how much money was made from each item:

4 Filtering A histogram showing total amount of money spent by the top ten users (ranked by how much money they spent). The following table shows the user id, platform, and hit-ratio percentage for the top three buying users: Rank User Id Platform Hit-Ratio (%) iphone %

5 2 12 iphone % iphone %

6 Data Classification Analysis Data Preparation Analysis of combined_data.csv Sample Selection Item Amount # of Samples 4619 # of Samples with Purchases 1411 Attribute Creation A new categorical attribute was created to enable analysis of players as broken into 2 categories (HighRollers and PennyPinchers). A screenshot of the attribute follows: <Fill In: Describe the design of your attribute in 1-3 sentences.> Here price_categories attribute is added as numeric binner data manimulation node. This attribute partitions rows into two bins HighRollers (AvgPrice > 5.0) and PennyPichers (AvgPrice <= 5.0). The new attribute, price_categories is appended at the end.

7 The creation of this new categorical attribute was necessary because <Fill in 1-2 sentences>. We are creating a model to predict some characteristics of highroller users. In order to create this model and learn this behavior using train data-set, we would need to create this new attribute. Attribute Selection The following attributes were filtered from the dataset for the following reasons: Attribute userid usersessionid Avg(price) Rationale for Filtering This id attribute should not have any impact on the prediction model. This Id attribute (column) should not have any influence on whether a user is highroller or pennypincher. We have derived attribute (price-category) from this attribute. IT is therefore no longer needed for analysis. Data Partitioning and Modeling The data was partitioned into train and test datasets. The train data set was used to create the decision tree model. The trained model was then applied to the test dataset. This is important because we would want to test our model on data that was not used to train it. When partitioning the data using sampling, it is important to set the random seed because it ensures that you will get the same partitions every time you execute this node. This is important to get reproducible results. A screenshot of the resulting decision tree can be seen below:

8 Evaluation A screenshot of the confusion matrix can be seen below:

9 Confusion matrix provides comparison between actual and predicted values of the test attribute (price-categories in this case). Out of the test data, which is 40% of the total 1411 or ~565 rows, we see that our model predicted: PennyPinchers were correctly predicted but PennyPinchers were incorrectly predicted as HighRollers HighRollers were correctly predicted but HighRollers were incorrectly predicted as PennyPinchers Analysis Conclusions The final KNIME workflow is shown below: What makes a HighRoller vs. a PennyPincher? From the analysis, it appears that platformtype predicts HighRoller vs PennyPincher. iphone users are more likely to be HighRollers. Specific Recommendations to Increase Revenue 1. Promote game more to iphone users (ios platform) 2. There are still android high-rollers so do not stop android platform development just the focus and marketing energy should be on iphone platform.

10 Yes, the analysis clearly identifies that iphone users are HighRollers and other platformtype users are PennyPinchers. Yes, and at least one is related to marketing to iphone users. Few HighRollers are seen outside of iphone users. This maybe due to lack of useful application or hardness for use from extra-iphone-platforms. We should inspect the application or interface problem for extra-iphone-users.

11 Clustering Analysis Attribute Selection Training Data Set Creation The training data set used for this analysis is shown below (first 5 lines): Dimensions of the training data set (rows x columns) : 531 x 4 # of clusters created: 2 Cluster Centers These clusters can be differentiated from each other as follows: First number (field1) is each array refers to number of sessions, second number (field 2) is the hit ratio whereas the third number (field 3) is the revenue per user.

12 Therefore: compare first number in two clusters to find our how users in two clusters differ in terms of their game engagements? compare second number to find out how users differ in terms of game expertise levels in the two clusters? compare the third number to find out how much revenue users in two clusters generate? Cluster 1 is different from the others in that In the first cluster (cluster 1) players play the game more often (almost 50% more) but they generate revenue more than 5 times. The hit ratio in two clusters appears to be similar and therefore does not have much differentiation. Cluster 2 is different from the others in that Players in clusters are less engaged and generate less revenue compared to players in cluster 1. Recommended Actions We are assuming that Eglence Inc. gets paid for showing ads and for hosting in-app purchase items.

13 Graph Analytics Analysis Modeling Chat Data using a Graph Data Model (Describe the graph model for chats in a few sentences. Try to be clear and complete.) ChatItem CreateChat PartOf ResponseTo User Joins/Leaves TeamChatSession Joins/Leaves User CreatesSession CreatesSession OwnedBy PartOf Team ChatItem Men=oned The above model shows the nodes and relationships on the Chat-Data graph model. In the following description, nodes are marked bold. User creates/joins/leaves TeamChatSessions Every TeamChatSessions are owned by a Team User creates ChatItems which are always part of an existing TeamChatSession a ChatItem can be in ResponseTo another ChatItem and may Mention a User

14 Creation of the Graph Database for Chats Describe the steps you took for creating the graph database. As part of these steps i) Write the schema of the 6 CSV files 1) File: chat_create_team_chat.csv Description: A line is added to this file when a player creates a new chat with their team. User -> CreatesSession -> TeamChatSession Example: userid, teamid, TeamChatSessionID, timestamp 559,48,6288, ,15,6289, ,68,6290, ) File: chat_item_team_chat.csv Description: User creates a ChatItem which as a part of an existing TeamChatSession User -> CreateChat -> ChatItem ChatItem -> PartOF -> ChatSessionId Example: userid, teamid, timestamp 1956,6299, ,6296, ,6290,6316 3) File: chat_join_team_chat.csv Creates an edge labeled "Joins" from User to TeamChatSession. The columns are the User id, TeamChatSession id and the timestamp of the Joins edge.

15 User -> Joins -> TeamChatSession Example: userid, TeamChatSessionID, teamstamp 559,6288, ,6289, ,6290, ) File: chat_leave_team_chat.csv User -> Leaves -> TeamChatSession Creates an edge labeled "Leaves" from User to TeamChatSession. The columns are the User id, TeamChatSession id and the timestamp of the Leaves edge. Example: userid, chatid, timestamp 1244,6821, ,6838, ,6777, ) File: chat_mention_team_chat.csv ChatItem -> Mentioned -> User Each row represent a chat item that mentioned a user Example: ChatItem, userid, timestamp 6349, ,2491

16 6371,104 6) File: chat_respond_team_chat.csv A line is added to this file when a player responds to a chat post. ChatItem -> ResponseTo -> ChatItem Example: chatid1, chatid2,timestamp 6326,6305, ,6326, ,6366,54567 ii) Explain the loading process and include a sample LOAD command Loading process includes: - Put all.csv files into the neo4j database folder (when you launch neo4j it shows its database dir, the files need to be inside that) - One my one load each csv file and create the node edges as per the schema of the file The following example LOAD command, for instance, loads the data file that contains relationship between two ChatITems. Each line describes the ChatItem id (Column 1, index 0) which is in ResponseTo another ChatItem id given in column 2 (index 1). LOAD CSV FROM "file:///chat_respond_team_chat.csv" AS row MERGE (ci:chatitem {id: toint(row[0])}) MERGE (ci2:chatitem {id: toint(row[1])}) MERGE (ci)-[:responseto{timestamp: row[2]}]->(ci2) iii) Present a screenshot of some part of the graph you have generated. The graphs must include clearly visible examples of most node and edge types. Below are two acceptable examples. The first example is a rendered in the default Neo4j distribution, the second has had some nodes moved to expose the edges more clearly. Both include examples of most node and edge types.

17 Finding the longest conversation chain and its participants Report the results including the length of the conversation (path length) and how many unique users were part of the conversation chain. Describe your steps. Write the query that produces the correct answer. 1) How many chats are involved in it? The longest path length with relation ResponseTo Query: match p=(a:chatitem)-[:responseto*]->(c:chatitem) return length(p) order by length(p) desc limit 1; Result: 9 That means, 10 chatitems are involved in the longest chat path. 2) How many users participated in this chain? Cypher command: match p=(ci:chatitem)-[:responseto*]->(ci2:chatitem) where length(p) = 9 with p match (d:chatitem)<-[r:createchat]-(u:user) where d in nodes(p)

18 return count(distinct u); - note that the path length 9 is from the part 1. * Result: 5 users Analyzing the relationship between top 10 chattiest users and top 10 chattiest teams Describe your steps from Question 2. In the process, create the following two tables. You only need to include the top 3 for each table. Identify and report whether any of the chattiest users were part of any of the chattiest teams. Chattiest Users match (u:user)-[:createchat]->(ci:chatitem) return u, count(distinct ci) as chats order by chats desc limit 3; Users Number of Chats Chattiest Teams match (ci:chatitem)-[:partof]->(s:teamchatsession)-[:ownedby]->(t:team) return t, count(distinct ci) as chatitems order by chatitems desc limit 3; Teams Number of Chats

19 Finally, present your answer, i.e. whether or not any of the chattiest users are part of any of the chattiest teams. Top 10 Chattiest teams: t chatitems {id: 82} 1324 {id: 185} 1036 {id: 112} 957 {id: 18} 844 {id: 194} 836 {id: 129} 814 {id: 52} 788 {id: 136} 783 {id: 146} 746 {id: 81} 736 Top 10 chattiest Users: u chats {id: 394} 115 {id: 2067} 111 {id: 209} 109 {id: 1087} 109 {id: 554} 107

20 {id: 1627} 105 {id: 516} 105 {id: 999} 105 {id: 461} 104 {id: 668} 104 Once we find team for all these 10 users, we see that: - Only userid 999 belongs to a team that is in top 10 chattiest team. How Active Are Groups of Users? Creating InteractsWith Relationship: 1. One user mentioned another user in a chat match (u1:user)-[cs:createchat]->(ci:chatitem)-[:mentioned]->(u2:user) create (u1)- [:InteractsWith]->(u2) 2. One user created a chatitem in response to another user s chatitem match (u1:user)-[cs:createchat]->(ci1:chatitem)-[:responseto]-(ci2:chatitem) with u1,ci1,ci2 match (u2)-[:createchat]-(ci2) create (u1)-[:interactswith]->(u2)

21 3. Delete Self relationships Match (u1)-[r:interactswith]->(u1) delete r Most Active Users (based on Cluster Coefficients) User ID Coefficient

Data Exploration. The table below lists each of the files available for analysis with a short description of what is found in each one.

Data Exploration. The table below lists each of the files available for analysis with a short description of what is found in each one. Data Exploration Data Set Overview The table below lists each of the files available for analysis with a short description of what is found in each one. File Name Description Fields ad-clicks.csv This

More information

Graph Analytics. Modeling Chat Data using a Graph Data Model. Creation of the Graph Database for Chats

Graph Analytics. Modeling Chat Data using a Graph Data Model. Creation of the Graph Database for Chats Graph Analytics Modeling Chat Data using a Graph Data Model The Pink Flamingo graph model includes users, teams, chat sessions, and chat item nodes with relationships or edges of a) creating sessions,

More information

I) write schema of the six files.

I) write schema of the six files. Graph Analytics Modeling Chat Data using a Graph Data Model (Describe the graph model for chats in a few sentences. Try to be clear and complete.) Creation of the Graph Database for Chats Describe the

More information

Graph Analytics. Modeling Chat Data using a Graph Data Model. Creation of the Graph Database for Chats

Graph Analytics. Modeling Chat Data using a Graph Data Model. Creation of the Graph Database for Chats Graph Analytics Modeling Chat Data using a Graph Data Model This we will be using a graph analytics approach to chat data from the Catch the Pink Flamingo game. Currently this chat data is purely numeric,

More information

What is KNIME? workflows nodes standard data mining, data analysis data manipulation

What is KNIME? workflows nodes standard data mining, data analysis data manipulation KNIME TUTORIAL What is KNIME? KNIME = Konstanz Information Miner Developed at University of Konstanz in Germany Desktop version available free of charge (Open Source) Modular platform for building and

More information

Advanced Multidimensional Reporting

Advanced Multidimensional Reporting Guideline Advanced Multidimensional Reporting Product(s): IBM Cognos 8 Report Studio Area of Interest: Report Design Advanced Multidimensional Reporting 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

Redshift Queries Playbook

Redshift Queries Playbook scalable analytics built for growth Redshift Queries Playbook SQL queries for understanding user behavior Updated June 23, 2015 This playbook shows you how you can use Amplitude's Amazon Redshift database

More information

Introduction to Data Mining and Data Analytics

Introduction to Data Mining and Data Analytics 1/28/2016 MIST.7060 Data Analytics 1 Introduction to Data Mining and Data Analytics What Are Data Mining and Data Analytics? Data mining is the process of discovering hidden patterns in data, where Patterns

More information

EECE 418. Fantasy Exchange Pass 2 Portfolio

EECE 418. Fantasy Exchange Pass 2 Portfolio EECE 418 Fantasy Exchange Pass 2 Portfolio Team Ovthree Tommy Tsz Kiu Wan Yawei Li Nenghao Lin 41720103 56674104 77222099 Table of Contents Section 1: Prototype and Re-Design Rationale... 1 1.1 Redesign

More information

Amazon Mobile Analytics. User Guide

Amazon Mobile Analytics. User Guide Amazon Mobile Analytics User Guide Amazon Mobile Analytics: User Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be

More information

Bridgemate App. Information for players. Version 2. Bridge Systems BV

Bridgemate App. Information for players. Version 2. Bridge Systems BV Bridgemate App Information for players Version 2 Bridge Systems BV Bridgemate App Information for players Page 2 Contents Introduction... 3 Downloading the app... 3 Starting the app and creating an account...

More information

WHITEPAPER WHAT TO CONSIDER TO SUCCESSFULLY LAUNCH A MOBILE APP! By RG Infotech WHITEPAPER. How to launch a MOBILE APP. Successfully!

WHITEPAPER WHAT TO CONSIDER TO SUCCESSFULLY LAUNCH A MOBILE APP! By RG Infotech WHITEPAPER. How to launch a MOBILE APP. Successfully! WHITEPAPER How to launch a MOBILE APP Successfully! By RG Infotech Since the launch of smartphones, mobile industry embarks several milestones that attracts several industries and developers to enter with

More information

1 Topic. Image classification using Knime.

1 Topic. Image classification using Knime. 1 Topic Image classification using Knime. The aim of image mining is to extract valuable knowledge from image data. In the context of supervised image classification, we want to assign automatically a

More information

Revit + FormIt Dynamo Studio = Awesome!

Revit + FormIt Dynamo Studio = Awesome! Revit + FormIt 360 + Dynamo Studio = Awesome! Carl Storms IMAGINiT Technologies - Senior Applications Expert @thebimsider Join the conversation #AU2016 Class summary This lab session will focus on some

More information

John Biancamano Inbound Digital LLC InboundDigital.net

John Biancamano Inbound Digital LLC InboundDigital.net John Biancamano Inbound Digital LLC 609.865.7994 InboundDigital.net About Me Owner of Inbound Digital, LLC digital marketing consulting and training: websites, SEO, advertising, and social media. Senior

More information

Jargon Buster. Ad Network. Analytics or Web Analytics Tools. Avatar. App (Application) Blog. Banner Ad

Jargon Buster. Ad Network. Analytics or Web Analytics Tools. Avatar. App (Application) Blog. Banner Ad D I G I TA L M A R K E T I N G Jargon Buster Ad Network A platform connecting advertisers with publishers who want to host their ads. The advertiser pays the network every time an agreed event takes place,

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

FAQ for Autodesk A360 and its tiers A360 Team, A360 Drive and the Tech Preview

FAQ for Autodesk A360 and its tiers A360 Team, A360 Drive and the Tech Preview Autodesk A360 FAQ for Autodesk A360 and its tiers A360 Team, A360 Drive and the Tech Preview Table of contents 1. General product information 2 1.1 What is Autodesk A360? 2 1.2 What is Autodesk A360 Team?

More information

1

1 1 2 3 6 7 8 9 10 Storage & IO Benchmarking Primer Running sysbench and preparing data Use the prepare option to generate the data. Experiments Run sysbench with different storage systems and instance

More information

Getting started. Create event content. Quick Start Guide. Quick start Adobe Connect for Webinars

Getting started. Create event content. Quick Start Guide. Quick start Adobe Connect for Webinars Quick start Adobe Connect for Webinars Adobe Connect Event enables you to manage the full life cycle of large or small events, including registration, invitations, reminders, and reports. Adobe Connect

More information

SEP Evaluation Expert Quick Guide

SEP Evaluation Expert Quick Guide SEP Evaluation Expert Quick Guide SEP Evaluation September 7 th, 2018 Copyright Notice European Union, 1995-2018 Reproduction of this document and its content, in part or in whole, is authorized, provided

More information

Oracle9i Data Mining. Data Sheet August 2002

Oracle9i Data Mining. Data Sheet August 2002 Oracle9i Data Mining Data Sheet August 2002 Oracle9i Data Mining enables companies to build integrated business intelligence applications. Using data mining functionality embedded in the Oracle9i Database,

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

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

kjhf MIS 510 sharethisdeal - Final Project Report Team Members:- Damini Akash Krittika Karan Khurana Agrawal Patil Dhingra

kjhf MIS 510 sharethisdeal - Final Project Report Team Members:- Damini Akash Krittika Karan Khurana Agrawal Patil Dhingra kjhf MIS 510 sharethisdeal - Final Project Report Team Members:- Damini Akash Krittika Karan Khurana Agrawal Patil Dhingra 5/14/2014 Introduction Shoppers often come across offers that require them to

More information

EventCenter Training SEPTEMBER CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR

EventCenter Training SEPTEMBER CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR EventCenter Training SEPTEMBER 2014 CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR www.crowdcompass.com Toll-free: +1.888.889.3069 Fax: +1.877.615.6699 Contents Familiarize Yourself... 3 Introduction...

More information

A case study to introduce Microsoft Data Mining in the database course

A case study to introduce Microsoft Data Mining in the database course A case study to introduce Microsoft Data Mining in the database course ABSTRACT Mohammad Dadashzadeh Oakland University The content of the database management systems course in the business curriculum

More information

Data Modeling in Looker

Data Modeling in Looker paper Data Modeling in Looker Quick iteration of metric calculations for powerful data exploration By Joshua Moskovitz The Reusability Paradigm of LookML At Looker, we want to make it easier for data analysts

More information

IBM emessage Version 9 Release 1 February 13, User's Guide

IBM emessage Version 9 Release 1 February 13, User's Guide IBM emessage Version 9 Release 1 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 471. This edition applies to version

More information

Marketing Operations Cookbook

Marketing Operations Cookbook Marketing Operations Cookbook Rev: 2013-12-02 Sitecore CMS 6.6 Marketing Operations Cookbook A marketer's guide to managing how your website engages with your visitors Table of Contents Chapter 1 Introduction...

More information

Social Media Intelligence Text and Network Mining combined. Dr. Rosaria Silipo

Social Media Intelligence Text and Network Mining combined. Dr. Rosaria Silipo Social Media Intelligence Text and Network Mining combined Dr. Rosaria Silipo rosariasilipo@yahoo.com Previously on PAW... PAW San Francisco 2012 2 Social Media Analysis Water Water Everywhere, and not

More information

Business Club. Decision Trees

Business Club. Decision Trees Business Club Decision Trees Business Club Analytics Team December 2017 Index 1. Motivation- A Case Study 2. The Trees a. What is a decision tree b. Representation 3. Regression v/s Classification 4. Building

More information

Vendor: IBM. Exam Code: C Exam Name: IBM Cognos 10 BI Author. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: IBM Cognos 10 BI Author. Version: Demo Vendor: IBM Exam Code: C2020-612 Exam Name: IBM Cognos 10 BI Author Version: Demo Question No : 1 In Report Studio, an author creates a list report containing columns for Staff Name, Order number, and

More information

Stream Processing Platforms Storm, Spark,.. Batch Processing Platforms MapReduce, SparkSQL, BigQuery, Hive, Cypher,...

Stream Processing Platforms Storm, Spark,.. Batch Processing Platforms MapReduce, SparkSQL, BigQuery, Hive, Cypher,... Data Ingestion ETL, Distcp, Kafka, OpenRefine, Query & Exploration SQL, Search, Cypher, Stream Processing Platforms Storm, Spark,.. Batch Processing Platforms MapReduce, SparkSQL, BigQuery, Hive, Cypher,...

More information

Stream Processing Platforms Storm, Spark,.. Batch Processing Platforms MapReduce, SparkSQL, BigQuery, Hive, Cypher,...

Stream Processing Platforms Storm, Spark,.. Batch Processing Platforms MapReduce, SparkSQL, BigQuery, Hive, Cypher,... Data Ingestion ETL, Distcp, Kafka, OpenRefine, Query & Exploration SQL, Search, Cypher, Stream Processing Platforms Storm, Spark,.. Batch Processing Platforms MapReduce, SparkSQL, BigQuery, Hive, Cypher,...

More information

Approaching the Petabyte Analytic Database: What I learned

Approaching the Petabyte Analytic Database: What I learned Disclaimer This document is for informational purposes only and is subject to change at any time without notice. The information in this document is proprietary to Actian and no part of this document may

More information

TV Evolution Briefing

TV Evolution Briefing TV Evolution Briefing Unleashing the power of the Investor/Promoter and Consumer Engagement, through Brand Extension & Monetization. While providing embedded data streams for Distributors, Content Creators

More information

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob Admin... 1 Installation & Activation... 2 Pre-requisite... 2 Installation Steps... 2 Installation via Composer... 4 Extension Activation...

More information

VISITOR SEGMENTATION

VISITOR SEGMENTATION support@magestore.com sales@magestore.com Phone: 084.4.8585.4587 VISITOR SEGMENTATION USER GUIDE Version 1.0.0 Table of Contents 1. INTRODUCTION... 3 Create unlimited visitor segments... 3 Show targeted

More information

Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently New challenges: with a

Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently New challenges: with a Data Mining and Information Retrieval Introduction to Data Mining Why Data Mining? Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently

More information

How to Increase Sales With Personalized Website Visitor Engagement. How to Increase Sales With Personalized Website Visitor Engagement

How to Increase Sales With Personalized Website Visitor Engagement. How to Increase Sales With Personalized Website Visitor Engagement How to Increase Sales With Personalized Website Visitor Engagement 1 What is personalized website visitor engagement? The first impression visitors have about products or services is through your company

More information

Overview. Introduction to Data Warehousing and Business Intelligence. BI Is Important. What is Business Intelligence (BI)?

Overview. Introduction to Data Warehousing and Business Intelligence. BI Is Important. What is Business Intelligence (BI)? Introduction to Data Warehousing and Business Intelligence Overview Why Business Intelligence? Data analysis problems Data Warehouse (DW) introduction A tour of the coming DW lectures DW Applications Loosely

More information

Crime - Based Predictive Analysis and Warning System

Crime - Based Predictive Analysis and Warning System Crime - Based Predictive Analysis and Warning System Sahil Puri, Parul Verma 12.01.2016 Outline Motivation Goal Dataset details Architecture Modelling and Approach Progress Future work Motivation and Goal

More information

Inbound Marketing Glossary

Inbound Marketing Glossary Inbound Marketing Glossary A quick guide to essential imbuecreative.com Inbound Marketing Glossary A/B Testing Above the Fold Alt Tag Blog Buyer s Journey Buyer Persona Call to Action (CTA) Click-through

More information

Buyer user guide Contract Management. Table of Contents

Buyer user guide Contract Management. Table of Contents Buyer user guide Contract Management Table of Contents Introduction... 2 Contract Administrator Access Level... 2 Accessing the Contract Management System... 3 Populating the Contract Management System

More information

Customer Relationship Management Software Version 1.0

Customer Relationship Management Software Version 1.0 Customer Relationship Management Software Version 1.0 Administrator Guide Guide Version 1.0.111218 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1. Introduction to CRM...5

More information

Sitecore Experience Platform 8.0 Rev: September 13, Sitecore Experience Platform 8.0

Sitecore Experience Platform 8.0 Rev: September 13, Sitecore Experience Platform 8.0 Sitecore Experience Platform 8.0 Rev: September 13, 2018 Sitecore Experience Platform 8.0 All the official Sitecore documentation. Page 1 of 455 Experience Analytics glossary This topic contains a glossary

More information

Making MongoDB Accessible to All. Brody Messmer Product Owner DataDirect On-Premise Drivers Progress Software

Making MongoDB Accessible to All. Brody Messmer Product Owner DataDirect On-Premise Drivers Progress Software Making MongoDB Accessible to All Brody Messmer Product Owner DataDirect On-Premise Drivers Progress Software Agenda Intro to MongoDB What is MongoDB? Benefits Challenges and Common Criticisms Schema Design

More information

X-AFFILIATE module for X-Cart 4.0.x

X-AFFILIATE module for X-Cart 4.0.x X-AFFILIATE module for X-Cart 4.0.x Partner Interface Reference Manual Revision Date: 2004-11-22 Copyright 2001-2004 Ruslan R. Fazliev. All rights reserved. TABLE OF CONTENTS GENERAL INFORMATION...3 REGISTRATION...4

More information

Basic Service Request Management. BMC Remedyforce Winter 11

Basic Service Request Management. BMC Remedyforce Winter 11 Winter 11 Virginia Leandro 01 March 2012 Table of Contents Service Request Management 3 Preparation 4 Accounts (Vendors and Service Providers) 5 Users/Profiles 6 Business Hours (Service Hours) 7 Default

More information

How to be a Super Team Owner

How to be a Super Team Owner How to be a Super Team Owner Withum Digital WithumSmith+Brown, PC BE IN A POSITION OF STRENGTH 1 ABOUT ME - @melihubb Microsoft MVP Office 365 and SharePoint consultant who specializes in simplifying and

More information

BUYER S GUIDE WEBSITE DEVELOPMENT

BUYER S GUIDE WEBSITE DEVELOPMENT BUYER S GUIDE WEBSITE DEVELOPMENT At Curzon we understand the importance of user focused design. EXECUTIVE SUMMARY This document is designed to provide prospective clients with a short guide to website

More information

SharePoint Online/Office 365 Training

SharePoint Online/Office 365 Training SharePoint Online/Office 365 Training Power User / Fundamentals Intended for: Prerequisites: Power User / Site Administrator / Forms and Workflows Designers None OVERVIEW The SharePoint Power User Fundamentals

More information

Analysis of Nokia Customer Tweets with SAS Enterprise Miner and SAS Sentiment Analysis Studio

Analysis of Nokia Customer Tweets with SAS Enterprise Miner and SAS Sentiment Analysis Studio Analysis of Nokia Customer Tweets with SAS Enterprise Miner and SAS Sentiment Analysis Studio Vaibhav Vanamala MS in Business Analytics, Oklahoma State University SAS and all other SAS Institute Inc. product

More information

INSTRUCTIONS TO CANDIDATES INFORMATION FOR CANDIDATES. Computer Science (A Level)

INSTRUCTIONS TO CANDIDATES INFORMATION FOR CANDIDATES. Computer Science (A Level) Computer Science (A Level) H446/02, Algorithms and programming, Practice set 2 Learning Computer Science OCR ExamBuilder process constraints mean you may see slight differences between this paper and the

More information

Data warehouses Decision support The multidimensional model OLAP queries

Data warehouses Decision support The multidimensional model OLAP queries Data warehouses Decision support The multidimensional model OLAP queries Traditional DBMSs are used by organizations for maintaining data to record day to day operations On-line Transaction Processing

More information

ADMINISTRATOR PORTAL MANUAL

ADMINISTRATOR PORTAL MANUAL ADMINISTRATOR PORTAL MANUAL TABLE OF CONTENTS SIGNING IN... 5 HOME SCREEN... 6 GENERAL SETTINGS... 7 WORKING HOURS TAB... 9 HOLIDAYS TAB... 11 Shortened hours for the Holidays... 12 Holiday Message...

More information

32 Using Local Data Sources in Web Intelligence Documents

32 Using Local Data Sources in Web Intelligence Documents 32 Using Local Data Sources in Web Intelligence Documents We have used universes as data sources for queries created in Web Intelligence and in Web Intelligence Rich Client. 32.1 Local Data Sources in

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: 02 6968000 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This course provides step-by-step procedures for building and verifying the three layers

More information

Mobile Best Practices

Mobile Best Practices Mobile Best Practices Optimizing Mobile Content Brand to Audience for Google Mobile Analytics Engagement Mobile-First Thinking Wherever the consumer goes, their phone goes with them. With a mobile-first

More information

Live Agent for Support Agents

Live Agent for Support Agents Live Agent for Support Agents Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Citrix Analytics Data Governance Collection, storage, and retention of logs generated in connection with Citrix Analytics service.

Citrix Analytics Data Governance Collection, storage, and retention of logs generated in connection with Citrix Analytics service. Citrix Analytics Data Governance Collection, storage, and retention of logs generated in connection with Citrix Analytics service. Citrix.com Data Governance For up-to-date information visit: This section

More information

ICO Review: Current Media (CRNC)

ICO Review: Current Media (CRNC) ICO Review: Current Media (CRNC) Blockchain-Based Multimedia Ecosystem February 6, 2018 PROJECT OVERVIEW What is Current Media? Current is a mobile app that consolidates several multimedia networks into

More information

Design. The Aviators. Charles Chavez Dillon Postage Mark Malone. Version 3.0 March 13, 2014 CS 486

Design. The Aviators. Charles Chavez Dillon Postage Mark Malone. Version 3.0 March 13, 2014 CS 486 Design Version 3.0 March 13, 2014 CS 486 The Aviators Charles Chavez Dillon Postage Mark Malone Contents Introduction... 2 System Assumption... 3 Business Model... 3 Architectural Overview... 4 Module

More information

Welcome to the Cub Cadet Dealer Community. Any questions please

Welcome to the Cub Cadet Dealer Community. Any questions please Welcome to the Cub Cadet Dealer Community Any questions please email dealercommunitysupport@cubcadet.com Go to www.mtdcommunity.com Initial Log In - Enter User ID & Password you received in the email -

More information

ABC Business Magazines Reporting Standards (UK)

ABC Business Magazines Reporting Standards (UK) July 2017 ABC Business Magazines Reporting Standards (UK) Changes have been agreed to the ABC Business Magazine Reporting Standards. We have updated the latest Reporting Standards to incorporate these

More information

KNIME TUTORIAL. Anna Monreale KDD-Lab, University of Pisa

KNIME TUTORIAL. Anna Monreale KDD-Lab, University of Pisa KNIME TUTORIAL Anna Monreale KDD-Lab, University of Pisa Email: annam@di.unipi.it Outline Introduction on KNIME KNIME components Exercise: Data Understanding Exercise: Market Basket Analysis Exercise:

More information

Multiple Graphs Updatable views & Choices

Multiple Graphs Updatable views & Choices CIP2017-06-18 and related Multiple Graphs Updatable views & Choices Presentation at ocim 4 on May 22-24, 2018 Stefan Plantikow, Andrés Taylor, Petra Selmer (Neo4j) History Started working on multiple graphs

More information

SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide

SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide Introduction This onboarding guide covers tasks that account administrators need to perform to set up SAS Visual Statistics and SAS Visual Analytics

More information

FootboFun. Jupiter's Kek. October 13, 2013

FootboFun. Jupiter's Kek. October 13, 2013 FootboFun Jupiter's Kek October 13, 2013 Team Members: Ahmet Abak 1630490 e1630490@ceng.metu.edu.tr Can Gülaydın 1560226 e1560226@ceng.metu.edu.tr Çağrı Utku Akpak 1745660 e1745660@ceng.metu.edu.tr Doğancan

More information

X-Affiliate add-on module for X-Cart 4.2.0

X-Affiliate add-on module for X-Cart 4.2.0 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual Company website: www.x-cart.com Revision date: Dec/10/2008 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual This manual

More information

Introduction...4. Purpose...4 Scope...4 Manitoba ehealth Incident Management...4 Icons...4

Introduction...4. Purpose...4 Scope...4 Manitoba ehealth Incident Management...4 Icons...4 Remedy Incident Management Version 3.2 Modified: 08/24/2017 TABLE OF CONTENTS Introduction...4 Purpose...4 Scope...4 Manitoba ehealth Incident Management...4 Icons...4 Incident Stages Overview...5 Identification

More information

Adobe Marketing Cloud Data Workbench Controlled Experiments

Adobe Marketing Cloud Data Workbench Controlled Experiments Adobe Marketing Cloud Data Workbench Controlled Experiments Contents Data Workbench Controlled Experiments...3 How Does Site Identify Visitors?...3 How Do Controlled Experiments Work?...3 What Should I

More information

Advanced Marketing Lab

Advanced Marketing Lab Advanced Marketing Lab The online tools for a performance e-marketing strategy Serena Pasqualetto serena.pasqualetto@unipd.it LESSON #1: AN OVERVIEW OF PERFORMANCE MARKETING About Serena Pasqualetto Serena

More information

Hey Guys, My name is Piyush Mathur. By Profession I am a Digital marketing consultant.

Hey Guys, My name is Piyush Mathur. By Profession I am a Digital marketing consultant. BY PIYUSH MATHUR Hey Guys, My name is Piyush Mathur. By Profession I am a Digital marketing consultant. I work with many startups and large companies to develop intelligent and effective online strategies.

More information

Mobile Messaging Apps Study : India. August 2014

Mobile Messaging Apps Study : India. August 2014 Mobile Messaging Apps Study : India August 2014 Contents 1. Research Objectives & Methodology 2. Key Findings 3. Mobile Consumption Behavior 4. Message Apps Usage & Behaviors Download Intent App Awareness

More information

Capital Markets Seminar Hendrik Klindworth, Founder & CEO

Capital Markets Seminar Hendrik Klindworth, Founder & CEO Capital Markets Seminar 2017 Hendrik Klindworth, Founder & CEO COMPANY SNAPSHOT Founded 2007 In Germany 420 employees in two offices Located in Hamburg & Düsseldorf 200m registered users >30 language versions

More information

Decision models for the Digital Economy

Decision models for the Digital Economy Decision Camp 2017 Birbeck, University of London Decision models for the Digital Economy Vijay Bandekar InteliOps Inc. Agenda Problem Statement Proposed Solution Case studies and results Key takeaways

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

Customer Relationship Management Software Version 1.0. Administrator Guide Guide Version ITarian 1255 Broad Street Clifton, NJ 07013

Customer Relationship Management Software Version 1.0. Administrator Guide Guide Version ITarian 1255 Broad Street Clifton, NJ 07013 Customer Relationship Management Software Version 1.0 Administrator Guide Guide Version 1.0.111218 ITarian 1255 Broad Street Clifton, NJ 07013 Table of Contents 1. Introduction to CRM...5 1.1.Open the

More information

Dylan Humenik Sharmaine Rivera Neeru Kimble

Dylan Humenik Sharmaine Rivera Neeru Kimble Technical communication is extremely important in the workplace. Efficiency, accuracy, productivity are three key factors in an excellent workplace setting, well written technical documents go a long way

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: + 36 1224 1760 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7.

More information

Accelerating BI on Hadoop: Full-Scan, Cubes or Indexes?

Accelerating BI on Hadoop: Full-Scan, Cubes or Indexes? White Paper Accelerating BI on Hadoop: Full-Scan, Cubes or Indexes? How to Accelerate BI on Hadoop: Cubes or Indexes? Why not both? 1 +1(844)384-3844 INFO@JETHRO.IO Overview Organizations are storing more

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

Mining Web Data. Lijun Zhang

Mining Web Data. Lijun Zhang Mining Web Data Lijun Zhang zlj@nju.edu.cn http://cs.nju.edu.cn/zlj Outline Introduction Web Crawling and Resource Discovery Search Engine Indexing and Query Processing Ranking Algorithms Recommender Systems

More information

Oracle BI 12c: Build Repositories

Oracle BI 12c: Build Repositories Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle BI 12c: Build Repositories Duration: 5 Days What you will learn This Oracle BI 12c: Build Repositories training teaches you

More information

Table of Contents. Location-Based Engagement 2-7. Responding to advertising 2. Usage of Mobile Apps 4. Mobile Shopping 5. Smartphone Owners 7

Table of Contents. Location-Based Engagement 2-7. Responding to advertising 2. Usage of Mobile Apps 4. Mobile Shopping 5. Smartphone Owners 7 Table of Contents Location-Based Engagement 2-7 Responding to advertising 2 Usage of Mobile Apps 4 Mobile Shopping 5 Smartphone Owners 7 Connected Device Trends and Adoption 8-10 U.S. Highlights 8 U.K.

More information

EXAM - FM Developer Essentials for FileMaker 12 Exam. Buy Full Product.

EXAM - FM Developer Essentials for FileMaker 12 Exam. Buy Full Product. FileMaker EXAM - FM0-307 Developer Essentials for FileMaker 12 Exam Buy Full Product http://www.examskey.com/fm0-307.html Examskey FileMaker FM0-307 exam demo product is here for you to test the quality

More information

Abstract. The Challenges. ESG Lab Review InterSystems IRIS Data Platform: A Unified, Efficient Data Platform for Fast Business Insight

Abstract. The Challenges. ESG Lab Review InterSystems IRIS Data Platform: A Unified, Efficient Data Platform for Fast Business Insight ESG Lab Review InterSystems Data Platform: A Unified, Efficient Data Platform for Fast Business Insight Date: April 218 Author: Kerry Dolan, Senior IT Validation Analyst Abstract Enterprise Strategy Group

More information

ADD/EDIT VENDOR. 1. To add a new vendor to the system from within the Accounts Payable module, navigate to: Accounts Payable Vendors.

ADD/EDIT VENDOR. 1. To add a new vendor to the system from within the Accounts Payable module, navigate to: Accounts Payable Vendors. ADD/EDIT VENDOR 1. To add a new vendor to the system from within the Accounts Payable module, navigate to: Accounts Payable Vendors. Vendors can also be added from within the Purchasing module. Regardless

More information

SALESFORCE DMP SUPERTAG USER GUIDE 00. SuperTag User Guide VER. 2, UPDATED 1/16. Rights Reserved, Proprietary &

SALESFORCE DMP SUPERTAG USER GUIDE 00. SuperTag User Guide VER. 2, UPDATED 1/16. Rights Reserved, Proprietary & SALESFORCE DMP SUPERTAG USER GUIDE 00 SuperTag User Guide VER. 2, UPDATED 1/16 SALESFORCE DMP SUPERTAG USER GUIDE 01 CONTENTS I. Introduction 2 SuperTag Overview 2 Benefits of Managing Tags with SuperTag

More information

GLOBAL RCS FORECASTS BY COUNTRY, Uncovering the RCS opportunity

GLOBAL RCS FORECASTS BY COUNTRY, Uncovering the RCS opportunity GLOBAL RCS FORECASTS BY COUNTRY, 2018-2023 Uncovering the RCS opportunity June 2018 Uncovering the RCS Opportunity Why does RCS matter? RCS converges the power and effectiveness of SMS, the engagement

More information

JOINT SUBMISSION BY. Taxation Ruling TR 2016/D1 Income tax: deductibility of expenditure on a commercial website.

JOINT SUBMISSION BY. Taxation Ruling TR 2016/D1 Income tax: deductibility of expenditure on a commercial website. JOINT SUBMISSION BY The Tax Institute, Chartered Accountants Australia and New Zealand, CPA Australia, Institute of Public Accountants and Taxpayers Australia Taxation Ruling TR 2016/D1 Income tax: deductibility

More information

Building Self-Service BI Solutions with Power Query. Written By: Devin

Building Self-Service BI Solutions with Power Query. Written By: Devin Building Self-Service BI Solutions with Power Query Written By: Devin Knight DKnight@PragmaticWorks.com @Knight_Devin CONTENTS PAGE 3 PAGE 4 PAGE 5 PAGE 6 PAGE 7 PAGE 8 PAGE 9 PAGE 11 PAGE 17 PAGE 20 PAGE

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle BI 11g R1: Build Repositories Volume I - Student Guide D63514GC11 Edition 1.1 June 2011 D73309 Author Jim Sarokin Technical Contributors and Reviewers Marla Azriel Roger Bolsius Bob Ertl Alan Lee

More information

Five9 Virtual Contact Center

Five9 Virtual Contact Center Cloud Contact Center Software Five9 Virtual Contact Center Dashboards and Reports Catalog November 2016 Five9 dashboards and reports enable you to compile and display detailed performance information about

More information

Introduction to BEST Viewpoints

Introduction to BEST Viewpoints Introduction to BEST Viewpoints This is not all but just one of the documentation files included in BEST Viewpoints. Introduction BEST Viewpoints is a user friendly data manipulation and analysis application

More information

Answer keys for Assignment 16: Principles of data collection

Answer keys for Assignment 16: Principles of data collection Answer keys for Assignment 16: Principles of data collection (The correct answer is underlined in bold text) 1. Supportive supervision is essential for a good data collection process 2. Which one of the

More information

Mineração de Dados Aplicada

Mineração de Dados Aplicada Data Exploration August, 9 th 2017 DCC ICEx UFMG Summary of the last session Data mining Data mining is an empiricism; It can be seen as a generalization of querying; It lacks a unified theory; It implies

More information