Final Project. Analyzing Reddit Data to Determine Popularity

Size: px
Start display at page:

Download "Final Project. Analyzing Reddit Data to Determine Popularity"

Transcription

1 Final Project Analyzing Reddit Data to Determine Popularity

2 Project Background: The Problem Problem: Predict post popularity where the target/label is based on a transformed score metric Algorithms / Models Applied: SVC Random Forests Logistic Regression 2

3 Project Background: The Data Data: The top 1,000 posts from the top 2,500 subreddits, so 2.5 million posts in total. The top subreddits were determined by subscriber count. The data was pulled during August Data was broken out into 2,500.csv files that correspond to each subreddit Data Structure (22 Columns): created_utc - Float score - Integer domain - Text id - Integer title - Text author - Text ups - Integer downs - Integer num_comments - Integer permalink (aka the reddit link) - Text self_text (aka body copy) - Text link_flair_text - Text over_18 - Boolean thumbnail - Text subreddit_id - Integer edited - Boolean link_flair_css_class - Text author_flair_css_class - Text is_self - Boolean name - Text url - Text distinguished - Text 3

4 Project Background: The Data - Removed Data: The top 1,000 posts from the top 2,500 subreddits, so 2.5 million posts in total. The top subreddits were determined by subscriber count. The data was pulled during August Data was broken out into 2,500.csv files that correspond to each subreddit Data Structure: created_utc - Float score - Integer domain - Text id - Integer title - Text author - Text ups - Integer downs - Integer num_comments - Integer permalink (aka the reddit link) - Text self_text (aka body copy) - Text link_flair_text - Text over_18 - Boolean thumbnail - Text subreddit_id - Integer edited - Boolean link_flair_css_class - Text author_flair_css_class - Text is_self - Boolean name - Text url - Text distinguished - Text 4

5 Reviewing the Data: Subreddit Topics datasets learnpython dataisbeautiful MachineLearning BirdsBeingDicks PenmanshipPorn TreesSuckingAtThings CoffeeWithJesus Otters AnimalsWithoutNecks CemeteryPorn misleadingthumbnails FortPorn PowerWashingPorn ShowerBeer talesfromtechsupport StonerPhilosophy 5

6 Reviewing the Data: Top Domains Domain'Count' Imgur: 773,969 imgur.com) youtube.com) YouTube: 188,526 reddit.com) flickr.com) soundcloud.com) Reddit: 25,445 Flickr: 17,854 quickmeme.com) i.minus.com) twi6er.com) amazon.com) qkme.com) Soundcloud: 10,397 vimeo.com) wikipedia.org) ny;mes.com) guardian.co.uk) bbc.co.uk) 6

7 Reviewing the Data: Most Have No Body Text Posts rely primarily on the title and some related media content from the aforementioned domains - link, gif image, video, etc. Over 1.6 million posts had no body copy/text or approximately 74% of all posts contained a NaN value 7

8 Reviewing the Data: Time Based Data Winter Months Saw a Dip, Fall Could be Underrepresented Given Data Pulled in August " " " " " 50000" 0" January" February" March" April" May" June" July" August" September" October" November" December" 8

9 Reviewing the Data: Time Based Data Tuesday is Slightly the Favorite Day to Post, While the Weekend Sees a Dip " " " " " " " 50000" 0" Monday" Tuesday" Wednesday" Thursday" Friday" Saturday" Sunday" 9

10 Reviewing the Data: Time Based Data Reddit While You Work: Post Volume Picks up Around 9/10am, Peeking at 12pm Until Dropping off Throughout the Afternoon " " " " 80000" 60000" 40000" 20000" 0" 12am" 1am" 2am" 3am" 4am" 5am" 6am" 7am" 8am" 9am" 10am" 11am" 12pm" 1pm" 2pm" 3pm" 4pm" 5pm" 6pm" 7pm" 8pm" 9pm" 10pm" 11pm" 10

11 Reviewing the Data: Determining Popularity Score&Counts& " " " " " " 80000" 60000" 40000" 20000" 0" 50)99" 100)199" 200)299" 300)399" 400)499" ~15% of posts 500)999" 1000)4999" 5000)9999" " Note - Only about half the data because ipython was unable to run a histogram so needed to export and conduct in excel 11

12 Analyzing the Data: Issues Issue: Given the size of the initial data set (2.5 million rows) and how it expanded upon transformation (CountVectorizer and TFIDF) to almost 100,000 columns, resulted in issues in processing the data locally on my machine. In the end I was only able to get about 1% of the data to run through the algorithms Even with this smaller sub set of data processes could take anywhere from 30 minutes to several hours, making playing around with the data extremely hard Future: Explore platforms that are better at handling large data sets such as PySpark. Tried to process the data with PySpark but ran into technical issues that I couldn t address in time 12

13 Analyzing the Data: SVC Linear =.9368 C Value of.1 =.9363 Accuracy' Accuracy'w/'Linear'Kernel' $ % $ % % $ % $ % % $ % $ % % $ Linear$ Poly$ Sigmoid$ RBF$ % 0.001% 0.01% 0.1% from sklearn import svm 13

14 Analyzing the Data: Regression Trees N Estimators = Max Depth = % 0.93% 0.92% 0.925% 0.915% 0.92% 0.91% 0.905% 0.9% 0.915% 0.91% 0.905% 0.9% 0.895% 0.895% 0.89% 0.89% 0.885% 5% 10% 20% 50% 100% 125% 150% 0.885% 5% 40% 100% 150% 200% 250% 300% from sklearn import ensemble 14

15 Analyzing the Data: Logistic C Value of 1 =.9471 L1 = L2 = & & & 0.945& & & 0.94& & & 0.935& & & 0.93& 0.947& & 0.925& 0.001& 0.01& 0.1& 1& 10& 50& & L1& L2& from sklearn import linear_model 15

16 Totally Crushing It! 16

17 Analyzing the Data: Classification Report SVC Random Forests Logistic Regression 17

18 Soooo Not Crushing It 18

19 Feature Reduction: Accuracy SVC - All Features SVC - Reduced Features 93.63% 94.5% Random Forests - All Features Random Forests - Reduced Features 92.4% 95.2% Logistic Regression - All Features Logistic Regression - Reduced Features 94.71% 94.3% 19

20 Feature Reduction: Classification Report SVC - All Features SVC - Reduced Features Random Forests - All Features Random Forests - Reduced Features Logistic Regression - All Features Logistic Regression - Reduced Features 20

21 Next Steps Dealing with the processing issues: Learn and try our PySpark Answer some additional questions: Reevaluate how I handle the domains I originally bucketed domains by their frequency/occurrence in the data set however given the originating domain of the content and the title are the majority of the post and the top 15 domains make up the vast majority of the post I want to focus on posts from those ~15 domains to get a better picture on how they explicitly affect popularity Run the data with varying n_grams levels I tried them but they expanded the columns to hundreds of thousands which just seemed to freeze, so hopefully something like PySpark will help with the processing Predict sub-reddit/category questions: Can I predict category of a post? Do certain subreddits produce more overall popular content than others? Bears With Beaks vs. ggggg (what ever the hell that is) 21

22 APPENDIX 22

23 Reviewing the Data: Reevaluate Popularity Score&Counts& " " " " " " 80000" 60000" 40000" 20000" 0" 50)99" 100)199" ~8% of posts 200)299" 300)399" 400)499" ~12% of posts 500)999" 1000)4999" 5000)9999" " Note - Only about half the data because ipython was unable to run a histogram so needed to export and conduct in excel 23

24 Analyzing the Data: SVC C Value of.1 = Accuracy Score 0.71% 0.708% 0.706% 0.704% 0.702% 0.7% 0.698% 0.696% 0.694% 0.692% 0.69% 0.688% 0.001% 0.01% 0.1% 1% 10% 50% Confusion Matrix 24

25 Analyzing the Data: Random Forest N Estimators of 100 = Max Depth of 200 = $ 0.83% 0.825% 0.82$ 0.82% 0.81$ 0.815% 0.81% 0.8$ 0.805% 0.8% 0.79$ 0.795% 0.79% 0.78$ 0.785% 0.77$ 5$ 10$ 20$ 50$ 100$ 125$ 0.78% 0.775% 40% 100% 150% 200% 250% Accuracy Score Confusion Matrix 25

26 Analyzing the Data: Logistic C of 1 =.8453 C =1, Penalty = L2 0.85% 0.845% 0.84% 0.835% 0.83% 0.825% 0.82% 0.815% Confusion Matrix 0.81% 0.001% 0.01% 0.1% 1% 10% 50% 26

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review:

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review: Following are three examples of calculations for MCP employees (undefined hours of work) and three examples for MCP office employees. Examples use the data from the table below. For your calculations use

More information

Calendar PPF Production Cycles Non-Production Activities and Events

Calendar PPF Production Cycles Non-Production Activities and Events 20-207 Calendar PPF Production Cycles Non-Production Activities and Events Four Productions For non-holiday productions 7 Week Stage Cycles 36 Uses plus strike (as in prior years and per agreement with

More information

Scheduling. Scheduling Tasks At Creation Time CHAPTER

Scheduling. Scheduling Tasks At Creation Time CHAPTER CHAPTER 13 This chapter explains the scheduling choices available when creating tasks and when scheduling tasks that have already been created. Tasks At Creation Time The tasks that have the scheduling

More information

Calendar Excel Template User Guide

Calendar Excel Template User Guide Calendar Excel Template User Guide Excel-based simple Calendar Template Version 3 This Excel-based template provides a calendar template for each month of a year. It also incorporates an hourly schedule

More information

September 2015 Calendar This Excel calendar is blank & designed for easy use as a planner. Courtesy of WinCalendar.com

September 2015 Calendar This Excel calendar is blank & designed for easy use as a planner. Courtesy of WinCalendar.com September 2015 Calendar This Excel calendar is blank & designed for easy use as a planner. Courtesy of WinCalendar.com August ~ September 2015 ~ Sunday Monday Tuesday Wednesday Thursday Friday 1 2 3 4

More information

CALENDAR OF FILING DEADLINES AND SEC HOLIDAYS

CALENDAR OF FILING DEADLINES AND SEC HOLIDAYS CALENDAR OF FILING S AND SEC HOLIDAYS INFORMATION IN THIS CALENDAR HAS BEEN OBTAINED BY SOURCES BELIEVED TO BE RELIABLE, BUT CANNOT BE GUARANTEED FOR ACCURACY. PLEASE CONSULT WITH PROFESSIONAL COUNSEL

More information

Institute For Arts & Digital Sciences SHORT COURSES

Institute For Arts & Digital Sciences SHORT COURSES Institute For Arts & Digital Sciences SHORT COURSES SCHEDULES AND FEES 2017 SHORT COURSES - GRAPHIC DESIGN Adobe Photoshop Basic 07 February 28 February Tuesdays 14:30-17:30 Adobe Photoshop Basic 07 February

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

name name C S M E S M E S M E Block S Block M C-Various October Sunday

name name C S M E S M E S M E Block S Block M C-Various October Sunday 01.10.2017 October Sunday 1 10 2017 02.10.2017 October Monday 2 10 2017 03.10.2017 October Tuesday 3 10 2017 Tag der Deutschen Einheit 04.10.2017 October Wednesday 4 10 2017 05.10.2017 October Thursday

More information

Basic Device Management

Basic Device Management This chapter contains the following sections: About, page 1 Licensing Requirements for, page 2 Default Settings for Basic Device Parameters, page 3 Changing the Device Hostname, page 3 Configuring the

More information

1 of 8 10/10/2018, 12:52 PM RM-01, 10/10/2018. * Required. 1. Agency Name: * 2. Fiscal year reported: * 3. Date: *

1 of 8 10/10/2018, 12:52 PM RM-01, 10/10/2018. * Required. 1. Agency Name: * 2. Fiscal year reported: * 3. Date: * 1 of 8 10/10/2018, 12:52 PM RM-01, 10/10/2018 * Required 1. Agency Name: * 2. Fiscal year reported: * 3. Date: * Example: December 15, 2012 4. Name of agency staff member completing this report: * The

More information

Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide

Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide NN44480-110 Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide Product release 6.5 and 7.0 Standard 01.03 November 2009 Nortel Enterprise Reporting Quality Monitoring Meta-Model Guide Publication

More information

MBTA Semester Pass Program User Guide

MBTA Semester Pass Program User Guide MBTA Semester Pass Program User Guide CharlieCard Customer Service 1-888-844-0353 passprogram@mbta.com Monday through Friday 7AM to 8PM EST Saturday and Sunday 9AM to 5PM EST Welcome to the MBTA Semester

More information

Auction Calendar 2017/2018 for Capacity Allocation Mechanism Network Code

Auction Calendar 2017/2018 for Capacity Allocation Mechanism Network Code CAP682-16 Version date: October 07 2016 Calendar 2017/2018 for Capacity Allocation Mechanism Network Code EXPLANATORY NOTE/DISCLAIMER The Network Code on Capacity Allocation Mechanisms in Gas Transmission

More information

AP Statistics Assignments Mr. Kearns José Martí MAST 6-12 Academy

AP Statistics Assignments Mr. Kearns José Martí MAST 6-12 Academy AP Statistics Assignments Mr. Kearns José Martí MAST 6-12 Academy 2016-2017 Date Assigned Assignments Interested in Join the Edmodo group 2017 Summer Work Group for community service Green Club using the

More information

%Addval: A SAS Macro Which Completes the Cartesian Product of Dataset Observations for All Values of a Selected Set of Variables

%Addval: A SAS Macro Which Completes the Cartesian Product of Dataset Observations for All Values of a Selected Set of Variables %Addval: A SAS Macro Which Completes the Cartesian Product of Dataset Observations for All Values of a Selected Set of Variables Rich Schiefelbein, PRA International, Lenexa, KS ABSTRACT It is often useful

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

More information

ControlLogix/Studio 5000 Logix Designer Course Code Course Title Duration CCP143 Studio 5000 Logix Designer Level 3: Project Development 4.

ControlLogix/Studio 5000 Logix Designer Course Code Course Title Duration CCP143 Studio 5000 Logix Designer Level 3: Project Development 4. NORTH CONTROLLERS ControlLogix/Studio 5000 Logix Designer CCP143 Studio 5000 Logix Designer Level 3: Project Development 4.0 Tuesday, March 7, 2017 Friday, March 10, 2017 CCP146 Studio 5000 Logix Designer

More information

2016 Calendar of System Events and Moratoriums

2016 Calendar of System Events and Moratoriums 2016 Calendar of System Events and Moratoriums Table of Contents 1. Terminology and Information 2 2. Quarterly Scheduled System Upgrades and Moratoriums 3 3. Scheduled Infrastructure Window 4 4. Scheme

More information

MAP OF OUR REGION. About

MAP OF OUR REGION. About About ABOUT THE GEORGIA BULLETIN The Georgia Bulletin is the Catholic newspaper for the Archdiocese of Atlanta. We cover the northern half of the state of Georgia with the majority of our circulation being

More information

Note: The enumerations range from 0 to (number_of_elements_in_enumeration 1).

Note: The enumerations range from 0 to (number_of_elements_in_enumeration 1). C8-1 Algorithm 1. Use a subtype to represent the numbers for months 2. Use an enumeration to represent the named months 3. Use an enumeration to represent the roman months 4. Get the inputs from the user

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

More information

MAP OF OUR REGION. About

MAP OF OUR REGION. About About ABOUT THE GEORGIA BULLETIN The Georgia Bulletin is the Catholic newspaper for the Archdiocese of Atlanta. We cover the northern half of the state of Georgia with the majority of our circulation being

More information

Cambridge English Dates and Fees for 2018

Cambridge English Dates and Fees for 2018 Cambridge English Dates and Fees for 2018 Cambridge English: Key (KET) KET 10,900.00 10,500.00 10,300.00 Saturday, 17 March Thursday, 01 February 9 March 18 March Saturday, 12 May Friday, 6 April 4 May

More information

YEAR 8 STUDENT ASSESSMENT PLANNER SEMESTER 1, 2018 TERM 1

YEAR 8 STUDENT ASSESSMENT PLANNER SEMESTER 1, 2018 TERM 1 YEAR 8 STUDENT ASSESSMENT PLANNER SEMESTER 1, 2018 TERM 1 Term 1 - Due Dates 22 26 January 29 January 2 February 5 9 February 12 16 February 19 23 February 26 February 2 March 5 9 March 12 16 March 19

More information

CIMA Certificate BA Interactive Timetable

CIMA Certificate BA Interactive Timetable CIMA Certificate BA Interactive Timetable 2018 Nottingham & Leicester Version 3.2 Information last updated 09/03/18 Please note: Information and dates in this timetable are subject to change. Introduction

More information

2013 Association Marketing Benchmark Report

2013 Association  Marketing Benchmark Report 2013 Association Email Marketing Benchmark Report Part I: Key Metrics 1 TABLE of CONTENTS About Informz.... 3 Introduction.... 4 Key Findings.... 5 Overall Association Metrics... 6 Results by Country of

More information

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup NetworX Series NX-0E RELAY EXPANDER NX-0E OUTPUT EXPANDER Installation and Startup NX-0E / NX-0E AUXILIARY MODULES TABLE OF CONTENTS I. GENERAL DESCRIPTION... II. WIRING INFORMATION... III. NX-0E TERMINAL

More information

VTC FY19 CO-OP GOOGLE QUALIFICATIONS PARAMETERS & REIMBURSEMENT DOCUMENTATION HOW-TO

VTC FY19 CO-OP GOOGLE QUALIFICATIONS PARAMETERS & REIMBURSEMENT DOCUMENTATION HOW-TO VTC FY19 CO-OP GOOGLE QUALIFICATIONS PARAMETERS & REIMBURSEMENT DOCUMENTATION HOW-TO 1 TABLE OF CONTENTS 01 CO-OP QUALIFICATIONS 02 REQUIRED DOCUMENTATION 03 REPORTING HOW-TO 04 REIMBURSEMENT PROCESS 2

More information

CPA PEP 2018 Schedule and Fees

CPA PEP 2018 Schedule and Fees CPA PEP Schedule and Fees The CPA Professional Education Program (CPA PEP) is a graduatelevel program. CPA PEP comprises a series of modules that focus primarily on enhancing CPA candidates ability to

More information

Installation Manual GENERAL DESCRIPTION...2 WIRING INFORMATION FOR NX-507 AND NX NX-507 TERMINAL DESCRIPTION...3 NX-507 DRAWING...

Installation Manual GENERAL DESCRIPTION...2 WIRING INFORMATION FOR NX-507 AND NX NX-507 TERMINAL DESCRIPTION...3 NX-507 DRAWING... NX-0 RELAY EXPANDER NX-0 OUTPUT EXPANDER Installation Manual GENERAL DESCRIPTION... WIRING INFORMATION FOR NX-0 AND NX-0... NX-0 TERMINAL DESCRIPTION... NX-0 DRAWING... NX-0 TERMINAL DESCRIPTION... NX-0

More information

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup NetworX Series NX-0E RELAY EXPANDER NX-0E OUTPUT EXPANDER Installation and Startup NX-0E / NX-0E AUXILIARY MODULES TABLE OF CONTENTS I. GENERAL DESCRIPTION... II. WIRING INFORMATION... III. NX-0E TERMINAL

More information

Drawing Courses. Drawing Art. Visual Concept Design. Character Development for Graphic Novels

Drawing Courses. Drawing Art. Visual Concept Design. Character Development for Graphic Novels 2018 COURSE DETAILS Drawing Courses Drawing Art Dates 13 March - 18 September 2018 also incl. life drawing sessions on the following Saturdays: 18 & 25 August, 8 & 15 September 18 classes (36 hours) Building

More information

CS Programming I: Arrays

CS Programming I: Arrays CS 200 - Programming I: Arrays Marc Renault Department of Computer Sciences University of Wisconsin Madison Fall 2017 TopHat Sec 3 (PM) Join Code: 719946 TopHat Sec 4 (AM) Join Code: 891624 Array Basics

More information

Year 1 and 2 Mastery of Mathematics

Year 1 and 2 Mastery of Mathematics Year 1 and 2 Mastery of Mathematics Mastery of the curriculum requires that all pupils:. use mathematical concepts, facts and procedures appropriately, flexibly and fluently; recall key number facts with

More information

Organizing and Summarizing Data

Organizing and Summarizing Data 1 Organizing and Summarizing Data Key Definitions Frequency Distribution: This lists each category of data and how often they occur. : The percent of observations within the one of the categories. This

More information

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1 INFORMATION TECHNOLOGY SPREADSHEETS Part 1 Page: 1 Created by John Martin Exercise Built-In Lists 1. Start Excel Spreadsheet 2. In cell B1 enter Mon 3. In cell C1 enter Tue 4. Select cell C1 5. At the

More information

Vector Semantics. Dense Vectors

Vector Semantics. Dense Vectors Vector Semantics Dense Vectors Sparse versus dense vectors PPMI vectors are long (length V = 20,000 to 50,000) sparse (most elements are zero) Alternative: learn vectors which are short (length 200-1000)

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library TECH NEWS January February March 2016 Send your request in an email to techteam@ccpl.org with your full name and phone number. We ll add you to the

More information

/Internet Random Moment Sampling. STATE OF ALASKA Department of Health and Social Services Division of Public Assistance

/Internet Random Moment Sampling. STATE OF ALASKA Department of Health and Social Services Division of Public Assistance E-mail/Internet Random Moment Sampling STATE OF ALASKA Department of Health and Social Services Division of Public Assistance RMS Training Objectives Goal: Upon completion of this training session, participants

More information

TEMPLATE CALENDAR2015. facemediagroup.co.uk

TEMPLATE CALENDAR2015. facemediagroup.co.uk WALL CALENDAR - A4 SIZE FREE TO DOWNLOAD AND CUSTOMISE. COPYRIGHT OF FACEMEDIAGROUP - PLEASE LEAVE COPYRIGHT AND BRAND MARKS IN PLACE. CALENDAR TEMPLATE FULL PAGE IMAGE THIS CALENDAR TEMPLATE CAN BE FULLY

More information

What s next? Are you interested in CompTIA A+ classes?

What s next? Are you interested in CompTIA A+ classes? What s next? Are you interested in CompTIA A+ classes? These classes are facilitated by our partner IT Ready. Next CompTIA A+ class will start on July 2019. Class runs from Monday to Friday (9 am to 4

More information

B.2 Measures of Central Tendency and Dispersion

B.2 Measures of Central Tendency and Dispersion Appendix B. Measures of Central Tendency and Dispersion B B. Measures of Central Tendency and Dispersion What you should learn Find and interpret the mean, median, and mode of a set of data. Determine

More information

CS229 Final Project: Predicting Expected Response Times

CS229 Final Project: Predicting Expected  Response Times CS229 Final Project: Predicting Expected Email Response Times Laura Cruz-Albrecht (lcruzalb), Kevin Khieu (kkhieu) December 15, 2017 1 Introduction Each day, countless emails are sent out, yet the time

More information

Schedule/BACnet Schedule

Schedule/BACnet Schedule Object Dictionary 1 Schedule/BACnet Schedule Introduction Note: The Johnson Controls Schedule object is considered a BACnet Schedule object because it supports BACnet functionality. In addition, this object

More information

QI TALK TIME. Run Charts. Speaker: Dr Michael Carton. Connect Improve Innovate. 19 th Dec Building an Irish Network of Quality Improvers

QI TALK TIME. Run Charts. Speaker: Dr Michael Carton. Connect Improve Innovate. 19 th Dec Building an Irish Network of Quality Improvers QI TALK TIME Building an Irish Network of Quality Improvers Run Charts Speaker: Dr Michael Carton 19 th Dec 2017 Connect Improve Innovate Speaker Speaker: Dr Michael Carton Michael s background is as a

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library July August September 2015 Technology Training Catalog TECH NEWS Want to receive this publication by email each month? Sign up for our monthly newsletter!

More information

2017 ASSOCIATION MARKETING BENCHMARK REPORT

2017 ASSOCIATION  MARKETING BENCHMARK REPORT 217 ASSOCIATION EMAIL MARKETING BENCHMARK REPORT Table of Contents 2 Introduction 13 Results by Email Client Type 3 Email Marketing Metrics, Defined 14 Results by Number of Links 4 Executive Summary 15

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

MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the.

MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the. REPUBLIC OF CYPRUS STATISTICAL SERVICE OF CYPRUS MONITORING REPORT ON THE WEBSITE OF THE STATISTICAL SERVICE OF CYPRUS DECEMBER The report is issued by the Monitoring Report STATISTICAL DISSEMINATION AND

More information

CLOVIS WEST DIRECTIVE STUDIES P.E INFORMATION SHEET

CLOVIS WEST DIRECTIVE STUDIES P.E INFORMATION SHEET CLOVIS WEST DIRECTIVE STUDIES P.E. 2018-19 INFORMATION SHEET INSTRUCTORS: Peggy Rigby peggyrigby@cusd.com 327-2104. Vance Walberg vancewalberg@cusd.com 327-2098 PURPOSE: Clovis West High School offers

More information

Exercises Software Development I. 02 Algorithm Testing & Language Description Manual inspection, test plan, grammar, metasyntax notations (BNF, EBNF)

Exercises Software Development I. 02 Algorithm Testing & Language Description Manual inspection, test plan, grammar, metasyntax notations (BNF, EBNF) Exercises Software Development I 02 Algorithm Testing & Language Description Manual inspection, test plan, grammar, metasyntax notations (BNF, EBNF) October 15th, 2014 Software Development I Winter term

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library TECH NEWS January February March 07 Technology Training Catalog Want to receive this publication by email each month? Sign up for our monthly newsletter!

More information

VTC CO-OP GOOGLE QUALIFICATIONS PARAMETERS & REIMBURSEMENT DOCUMENTATION HOW-TO

VTC CO-OP GOOGLE QUALIFICATIONS PARAMETERS & REIMBURSEMENT DOCUMENTATION HOW-TO VTC CO-OP GOOGLE QUALIFICATIONS PARAMETERS & REIMBURSEMENT DOCUMENTATION HOW-TO 1 CO-OP QUALIFICATIONS 2 GOOGLE QUALIFICATIONS The Google qualification parameters are as follows: Application submitted

More information

CSE 305 Programming Languages Spring, 2010 Homework 5 Maximum Points: 24 Due 10:30 AM, Friday, February 26, 2010

CSE 305 Programming Languages Spring, 2010 Homework 5 Maximum Points: 24 Due 10:30 AM, Friday, February 26, 2010 CSE 305 Programming Languages Spring, 2010 Homework 5 Maximum Points: 24 Due 10:30 AM, Friday, February 26, 2010 Professor Shapiro February 12, 2010 Write the answers in a file named hw5.txt. Put your

More information

) $$%*%"3%*# 2# "%$& # $&# # "$) %) "$$%,*$"# 2$$%$" 3# 2)!# # "$6!# # # "$*# *$"*%*&"+ 2 # # 2"# # )

) $$%*%3%*# 2# %$& # $&# # $) %) $$%,*$# 2$$%$ 3# 2)!# # $6!# # # $*# *$*%*&+ 2 # # 2# # ) !"##! $% & These photos were supplied by Drummond Field Manager Rick Ward, but they arrived a bit too late to make it into last month s Topcap. They were taken during the 50 th Anniversary / Field Grand

More information

Stat 428 Autumn 2006 Homework 2 Solutions

Stat 428 Autumn 2006 Homework 2 Solutions Section 6.3 (5, 8) 6.3.5 Here is the Minitab output for the service time data set. Descriptive Statistics: Service Times Service Times 0 69.35 1.24 67.88 17.59 28.00 61.00 66.00 Variable Q3 Maximum Service

More information

View a Students Schedule Through Student Services Trigger:

View a Students Schedule Through Student Services Trigger: Department Responsibility/Role File Name Version Document Generation Date 6/10/2007 Date Modified 6/10/2007 Last Changed by Status View a Students Schedule Through Student Services_BUSPROC View a Students

More information

Computer Grade 5. Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May

Computer Grade 5. Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May Computer Grade 5 1 st Term Unit: 1, 2 & 3 Total Periods 38 Lab 10 Months: April and May Summer Vacation: June, July and August 1 st & 2 nd week Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 First term (April) Week

More information

BHARATI VIDYAPEETH`S INSTITUTE OF MANAGEMENT STUDIES AND RESEARCH NAVI MUMBAI ACADEMIC CALENDER JUNE MAY 2017

BHARATI VIDYAPEETH`S INSTITUTE OF MANAGEMENT STUDIES AND RESEARCH NAVI MUMBAI ACADEMIC CALENDER JUNE MAY 2017 BHARATI VIDYAPEETH`S INSTITUTE OF MANAGEMENT STUDIES AND RESEARCH June 2016 Planner MMS and III rd and IV th Sem MMS 1 st and II nd Sem HOLIDAYS EVENTS June 2016 Planner Jun 16 Monday Tuesday Wednesday

More information

Characterization and Modeling of Deleted Questions on Stack Overflow

Characterization and Modeling of Deleted Questions on Stack Overflow Characterization and Modeling of Deleted Questions on Stack Overflow Denzil Correa, Ashish Sureka http://correa.in/ February 16, 2014 Denzil Correa, Ashish Sureka (http://correa.in/) ACM WWW-2014 February

More information

Pearson Edexcel Award

Pearson Edexcel Award Pearson Edexcel Award May June 2018 Examination Timetable FINAL For more information on Edexcel qualifications please visit http://qualifications.pearson.com v3 Pearson Edexcel Award 2018 Examination View

More information

Voice Response System (VRS)

Voice Response System (VRS) UNIVERGE SV8100 Issue 8.01 Voice Response System (VRS) Enhancements With Version 3000 or higher system software, if an outside caller dials an invalid extension number when connected to the VRS Automated

More information

Arrays. Arrays (8.1) Arrays. One variable that can store a group of values of the same type. Storing a number of related values.

Arrays. Arrays (8.1) Arrays. One variable that can store a group of values of the same type. Storing a number of related values. Arrays Chapter 8 page 471 Arrays (8.1) One variable that can store a group of values of the same type Storing a number of related values o all grades for one student o all temperatures for one month o

More information

Student Information Systems (SIS) Updates

Student Information Systems (SIS) Updates EPIC BULLETIN BOARD Student Information Systems (SIS) Updates FEBRUARY 2016 February 24 10:50 AM: Laserfiche Upload Service Interruption The Laserfiche Upload issue has been resolved. February 24 8:09

More information

CPSC 340: Machine Learning and Data Mining. Logistic Regression Fall 2016

CPSC 340: Machine Learning and Data Mining. Logistic Regression Fall 2016 CPSC 340: Machine Learning and Data Mining Logistic Regression Fall 2016 Admin Assignment 1: Marks visible on UBC Connect. Assignment 2: Solution posted after class. Assignment 3: Due Wednesday (at any

More information

Employer Portal Guide. BenefitWallet Employer Portal Guide

Employer Portal Guide. BenefitWallet Employer Portal Guide Employer Portal Guide 1 Table of Contents BenefitWallet Web Access and Authentication... 3 Employer Dashboard... 5 Employer Profile...6 Manage Notifications... 7 Employer Toolbox...8 BenefitWallet Service

More information

Baldwin-Wallace College. 6 th Annual High School Programming Contest. Do not open until instructed

Baldwin-Wallace College. 6 th Annual High School Programming Contest. Do not open until instructed Baldwin-Wallace College 6 th Annual High School Programming Contest Do not open until instructed 2009 High School Programming Contest Merging Shapes A lot of graphical applications render overlapping shapes

More information

Arrays. What if you have a 1000 line file? Arrays

Arrays. What if you have a 1000 line file? Arrays Arrays Chapter 8 page 477 11/8/06 CS150 Introduction to Computer Science 1 1 What if you have a 1000 line file? Read in the following file and print out a population graph as shown below. The maximum value

More information

KENYA 2019 Training Schedule

KENYA 2019 Training Schedule KENYA 2019 Training Schedule Monday Tuesday Wednesday Thursday Friday 4th Feb 5th Feb 6th Feb 7th Feb 8th Feb Using 11th Feb 12th Feb 13th Feb 14th Feb 15th Feb Using (cont...) Field Data Collection and

More information

Nights & Weekend ROB & PHIL DECEMBER 12, 2008

Nights & Weekend ROB & PHIL DECEMBER 12, 2008 Nights & Weekend ROB & PHIL DECEMBER 12, 2008 Input Surveys R&IS Student Assistant R&IS Faculty & Staff Access Services Students Statistics Totals Services R&IS & Access Service Seniority R&IS Student

More information

Math in Focus Vocabulary. Kindergarten

Math in Focus Vocabulary. Kindergarten Math in Focus Vocabulary Kindergarten Chapter Word Definition 1 one 1 * 1 two 2 * * 1 three 3 * * * 1 four 4 * * * * 1 five 5 * * * * * 1 same things that have a common property 1 different things that

More information

Year 10 OCR GCSE Computer Science (9-1)

Year 10 OCR GCSE Computer Science (9-1) 01 4 th September 02 11 th September 03 18 th September Half Term 1 04 25 th September 05 2 nd October 06 9 th October 07 16 th October NA Students on in school Thursday PM and Friday Only Unit 1, Lesson

More information

EEN118 22nd November These are my answers. Extra credit for anyone who spots a mistike. Except for that one. I did it on purpise.

EEN118 22nd November These are my answers. Extra credit for anyone who spots a mistike. Except for that one. I did it on purpise. EEN118 22nd November 2011 These are my answers. Extra credit for anyone who spots a mistike. Except for that one. I did it on purpise. 5. An automatic animal monitoring device sits in the african savannah

More information

Backup Exec Supplement

Backup Exec Supplement Vision 3 Backup Exec Supplement INPS INPS The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100 W: www.inps.co.uk Table of Editions and Contents

More information

Department Highlights. Annie Rosenfeld, Director of Risk Management & Real Property- April 2018

Department Highlights. Annie Rosenfeld, Director of Risk Management & Real Property- April 2018 Department Highlights Annie Rosenfeld, Director of Risk Management & Real Property- April 2018 Covenants Highlights Covenants Enforcement: 7-days a week Monday Thursday 8:00 a.m. 5:00 p.m. Friday Sunday

More information

Lecture 27: Review. Reading: All chapters in ISLR. STATS 202: Data mining and analysis. December 6, 2017

Lecture 27: Review. Reading: All chapters in ISLR. STATS 202: Data mining and analysis. December 6, 2017 Lecture 27: Review Reading: All chapters in ISLR. STATS 202: Data mining and analysis December 6, 2017 1 / 16 Final exam: Announcements Tuesday, December 12, 8:30-11:30 am, in the following rooms: Last

More information

Securities Lending Reporting

Securities Lending Reporting Securities Lending Reporting User notes for submitting Borrowed, Loaned and Committed Securities information via ASX Online November 2013 User notes for submitting Borrowed and Loaned Stock information

More information

Crystal Springs Upland School Transportation Demand Management Plan. March 2016

Crystal Springs Upland School Transportation Demand Management Plan. March 2016 Crystal Springs Upland School Transportation Demand Management Plan March 06 CONTENTS Introduction... Transportation Demand Management (TDM) Program.... Background/Survey of Existing Student Commuting

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library October November December 2015 Technology Training Catalog TECH NEWS Want to receive this publication by email each month? Sign up for our monthly

More information

ADVANCED ALGORITHMS TABLE OF CONTENTS

ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS...1 SOLVING A LARGE PROBLEM BY SPLITTING IT INTO SEVERAL SMALLER SUB-PROBLEMS CASE STUDY: THE DOOMSDAY ALGORITHM... INTRODUCTION

More information

How to Use efilemyforms.com

How to Use efilemyforms.com How to Use efilemyforms.com Technical Support Phone: (866) 498-1217 Fax: (800) 526-1040 Technical Support Hours Normal Hours February 1 - December 31 Monday - Friday, 8am - 4pm PST Saturday & Sunday -

More information

Connect to CCPL

Connect to CCPL TECH NEWS Want to receive this publication by email each month? Sign up for our monthly newsletter! Send your request in an email to techteam@ccpl.org with your full name and phone number. We ll add you

More information

Summary Statistics. Closed Sales. Paid in Cash. New Pending Sales. New Listings. Median Sale Price. Average Sale Price. Median Days on Market

Summary Statistics. Closed Sales. Paid in Cash. New Pending Sales. New Listings. Median Sale Price. Average Sale Price. Median Days on Market ly Market Detail - June Summary Statistics June June Paid in Cash.%.% New Pending Sales 7.%.% $, $,.% Average Sale Price $, $,.% Median Days on Market.% Average Percent of Original List Price Received

More information

LIHP Monthly Aggregate Reporting Instructions Manual. Low Income Health Program Evaluation

LIHP Monthly Aggregate Reporting Instructions Manual. Low Income Health Program Evaluation LIHP Monthly Aggregate Reporting Instructions Manual Low Income Health Program Evaluation April 2013 Version History Exhibit 1: Version History Version Date Author Updates Summary V1 February 2013 UCLA:

More information

Arrays and Pointers (part 2) Be extra careful with pointers!

Arrays and Pointers (part 2) Be extra careful with pointers! Arrays and Pointers (part 2) CSE 2031 Fall 2011 23 October 2011 1 Be extra careful with pointers! Common errors: Overruns and underruns Occurs when you reference a memory beyond what you allocated. Uninitialized

More information

Marketing Opportunities

Marketing Opportunities Email Marketing Opportunities Write the important dates and special events for your organization in the spaces below. You can use these entries to plan out your email marketing for the year. January February

More information

Supplement No Telephone PA P.U.C. - No. 14

Supplement No Telephone PA P.U.C. - No. 14 Supplement No. 137 - Telephone PA P.U.C. - No. 14 FRONTIER COMMUNICATIONS OF PENNSYLVANIA, LLC Section 2 Fifteenth Revised Sheet 1 Cancels Fourteenth Revised Sheet 1 WITH NETWORK ACCESS 1. General Local

More information

Pearson Edexcel Award

Pearson Edexcel Award Pearson Edexcel Award January 2018 Examination Timetable FINAL For more information on Edexcel qualifications please visit http://qualifications.pearson.com Pearson Edexcel Award January 2018 Examination

More information

SYS 6021 Linear Statistical Models

SYS 6021 Linear Statistical Models SYS 6021 Linear Statistical Models Project 2 Spam Filters Jinghe Zhang Summary The spambase data and time indexed counts of spams and hams are studied to develop accurate spam filters. Static models are

More information

January and February

January and February 2019 Smithton Public District Newsletter January and February NEW YEAR S RESOLUTIONS MOVIES @ THE LIBRARY Celebrate the experience of trying something new with a showing of Julie & Julia on Friday, January

More information

CONFERENCE ROOM SCHEDULER

CONFERENCE ROOM SCHEDULER CONFERENCE ROOM SCHEDULER AN OPEN APPLICATION INTERFACE (OAI) USER GUIDE NEC America, Inc. NDA-30006-002 Revision 2.0 January, 1997 Stock # 241732 LIABILITY DISCLAIMER NEC America reserves the right to

More information

Text Messaging Calendar

Text Messaging Calendar July 2016 F16 07/07/16 07/07/16 Fall are now in your Mt. SAC portal. Log in now at http://inside.mtsac.edu. To end msgs text F16 07/27/16 07/27/16 You missed your Mt. SAC appt. Log into the Portal now

More information

IB Event Calendar Please check regularly for updates Last Update: April 30, 2013

IB Event Calendar Please check regularly for updates Last Update: April 30, 2013 IB Event Calendar 2012-2013 Please check regularly for updates Last Update: April 30, 2013 April 2013 24: (Sophomores): Required orientation meeting for all sophomores entering into IB their junior year.

More information

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12.

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12. The table below lists all of the Excel -style date and time functions provided by the WinCalcManager control, along with a description and example of each function. FUNCTION DESCRIPTION REMARKS EXAMPLE

More information

Nigerian Telecommunications Sector

Nigerian Telecommunications Sector Nigerian Telecommunications Sector SUMMARY REPORT: Q4 and full year 2015 NATIONAL BUREAU OF STATISTICS 26th April 2016 Telecommunications Data The telecommunications data used in this report were obtained

More information

Crystal Reports. Overview. Contents. Cross-Tab Capabilities & Limitations in Crystal Reports (CR) 6.x

Crystal Reports. Overview. Contents. Cross-Tab Capabilities & Limitations in Crystal Reports (CR) 6.x Crystal Reports Cross-Tab Capabilities & Limitations in Crystal Reports (CR) 6.x Overview Contents This document provides an overview of cross-tab capabilities and limitations in Crystal Reports (CR) 6.

More information

CSE 158 Lecture 2. Web Mining and Recommender Systems. Supervised learning Regression

CSE 158 Lecture 2. Web Mining and Recommender Systems. Supervised learning Regression CSE 158 Lecture 2 Web Mining and Recommender Systems Supervised learning Regression Supervised versus unsupervised learning Learning approaches attempt to model data in order to solve a problem Unsupervised

More information

Boost your Analytics with Machine Learning for SQL Nerds. Julie mssqlgirl.com

Boost your Analytics with Machine Learning for SQL Nerds. Julie mssqlgirl.com Boost your Analytics with Machine Learning for SQL Nerds Julie Koesmarno @MsSQLGirl mssqlgirl.com 1. Y ML 2. Operationalizing ML 3. Tips & Tricks 4. Resources automation delighting customers Deepen Engagement

More information

Published: December 15, 2016 Revised: December 15, 2016

Published: December 15, 2016 Revised: December 15, 2016 Market Participant Guide: SPP 2017 Congestion Hedging Published: December 15, 2016 Revised: December 15, 2016 Revision History Chart Version Revised By Description of Modifications Revision Date 1.0 Congestion

More information