Assignment 4 CPSC 217 L02 Purpose. Important Note. Data visualization

Size: px
Start display at page:

Download "Assignment 4 CPSC 217 L02 Purpose. Important Note. Data visualization"

Transcription

1 Assignment 4 CPSC 217 L02 Purpose You will be writing a Python program to read data from a file and visualize this data using an external drawing tool. You will structure your program using modules and functions to demonstrate good design. Exceptions will be used where appropriate in order to handle errors in a user-friendly manner. Important Note This is an individual assignment. What you submit must be your own work, although you may discuss the problem in general terms with other people. You should definitely not be showing other people your code, and generally speaking, it is not a good idea to talk about the assignment when you're sitting in front of the computer. Sources of algorithms and code, if any, must be properly cited. Remember that plagiarism regulations apply to code too. You can put citations into comments in your Python code. If you have any questions about what you can and can't safely do, feel free to talk to me. Data visualization Data visualization is a graphical means to visualize sets of data so that the data becomes easier to read and analyze. A common form of data visualization is called bar charts. For example, the file medal_count.txt contains the following data: Country Gold Silver Bronze Total US GE CA NO AU

2 RF KO CH SW FR This data can be visualized using a bar chart as follows: Another example is the file temperatures.txt with the following data: Month Minimum Maximum Average Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec This data can be visualized using a bar chart as follows:

3 Your Task Your task is to read some data from a text file, and plot this data using a bar chart. Keep in mind the following: - Provide a legend to enable the user to map between colors and data. Make sure the colors you pick have enough contrast with the background and with each other. - Your bar chart should scale properly (vertically and horizontally) to make use of the space on the screen. For example, if all the values are positive, the y-axis should not extend to the negative side. Also, your bar chart should not extend a lot beyond the maximum absolute value in the data file. If you only have a few rows of data, you should scale up the width of the bars. Look at the examples below. The visualization to the left is not ideal because there is a lot of unused white space in the graph. The visualization to the right is better because it scales properly. - Fields in the data file are tab-separated.

4 - All the fields except the header row and the first column should contain numerical data. If this is not the case, you should ignore any row that contains invalid data, and report a user-friendly error message to the user. - Your python program should take the data file name as a command line argument. For example, to draw the bar chart above, we should be able to type: python bar_chart.py temperatures.txt java jar quickdraw.jar To get the file name in your python program, you can say: import sys filename = sys.argv[1] If the user did not pass any argument, or the file does not exist, you should report a user-friendly error message to the user. - When you write your python program, make sure you use modules and functions to produce well-structured code. Testing for error conditions (including invalid input) should be handled by exceptions where appropriate. - Use the provided data files for testing purposes to make sure your solution meets the specifications. It is also advisable that you create your own data files to test further. Bonus For a bonus mark, provide a doctest for at least three of your functions. General Hints There are plenty of resources online on how to draw a good bar chart using simple drawing tools. You can start there, but make sure you reference any resources you use. Make a directory to keep your files for this assignment in. Take notes as you go along, so you can remember what you've tried already and what did and didn't work. Break the task down into small pieces. Use an incremental approach, and try out things on the Python command line as you go, before putting them in your program.

5 Work through everything one last time prior to your demo to help catch any last-minute problems. Make absolutely sure that your solution will run on the Computer Science machines! Evaluation You must do two things: 1. Hand in a printout of your solution to the assignment boxes by 4pm Friday, 9 April Your printout should include all the.py files corresponding to the classes and modules you defined. Make sure it has your name and/or student ID number, and double-check to ensure you're using the correct assignment box! The assignment boxes are on the second floor of the Math Science building. Note that you may turn your printout into the box early. If your TA is accepting solutions in any other form (e.g., ) then they will let you know - however, you must still observe the deadline. 2. Demonstrate your solution to your TA in tutorials during the week of April 12. To keep things fair, the solution you demonstrate must be the same as what you handed in on the printout, or you will not be given credit for the demo. Your TA may ask you questions about what the different parts of your solution do. If you do not hand in a printout or if you do not demonstrate your assignment during tutorial time, or both, you cannot be given a grade above a zero on this assignment. Your printout must show your Python program and all the.py files corresponding to the modules you defined. Note that you must have a program in a.py file - you cannot turn in a solution that only uses the Python command line. Your solution must be demonstrated using your account on the CPSC machines. Tutorials during the week of April 12 are allocated for demos. Your TA is not obliged to see demos outside this time; they have their own schoolwork to do! The TA has the right to assign a mark of zero for the entire assignment if you fail the demo. - 1/2 of the marks assigned are for the design and style of your code. This includes the effective use of classes, modules, functions, and the appropriate

6 data structures to solve the problem. It also includes code readability, appropriate variable names and comments. - 1/2 of the marks assigned are for the correctness of your output. This includes the conformance of your output to the criteria listed in the specifications above, robust handling of data and user input, and appropriate error checking and reporting.

AT&T Global Network Client for Windows Product Support Matrix January 29, 2015

AT&T Global Network Client for Windows Product Support Matrix January 29, 2015 AT&T Global Network Client for Windows Product Support Matrix January 29, 2015 Product Support Matrix Following is the Product Support Matrix for the AT&T Global Network Client. See the AT&T Global Network

More information

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS*

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS* COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) 2 Fixed Rates Variable Rates FIXED RATES OF THE PAST 25 YEARS AVERAGE RESIDENTIAL MORTGAGE LENDING RATE - 5 YEAR* (Per cent) Year Jan Feb Mar Apr May Jun

More information

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS*

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS* COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) 2 Fixed Rates Variable Rates FIXED RATES OF THE PAST 25 YEARS AVERAGE RESIDENTIAL MORTGAGE LENDING RATE - 5 YEAR* (Per cent) Year Jan Feb Mar Apr May Jun

More information

Infographics in the Classroom: Using Data Visualization to Engage in Scientific Practices

Infographics in the Classroom: Using Data Visualization to Engage in Scientific Practices Infographics in the Classroom: Using Data Visualization to Engage in Scientific Practices Activity 4: Graphing and Interpreting Data In Activity 4, the class will compare different ways to graph the exact

More information

Analysis One Code Desc. Transaction Amount. Fiscal Period

Analysis One Code Desc. Transaction Amount. Fiscal Period Analysis One Code Desc Transaction Amount Fiscal Period 57.63 Oct-12 12.13 Oct-12-38.90 Oct-12-773.00 Oct-12-800.00 Oct-12-187.00 Oct-12-82.00 Oct-12-82.00 Oct-12-110.00 Oct-12-1115.25 Oct-12-71.00 Oct-12-41.00

More information

Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 1 of 138. Exhibit 8

Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 1 of 138. Exhibit 8 Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 1 of 138 Exhibit 8 Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 2 of 138 Domain Name: CELLULARVERISON.COM Updated Date: 12-dec-2007

More information

Based on Chapter 11, Excel 2007 Dashboards & Reports (Alexander) and Create Dynamic Charts in Microsoft Office Excel 2007 and Beyond (Scheck)

Based on Chapter 11, Excel 2007 Dashboards & Reports (Alexander) and Create Dynamic Charts in Microsoft Office Excel 2007 and Beyond (Scheck) Reporting Results: Part 2 Based on Chapter 11, Excel 2007 Dashboards & Reports (Alexander) and Create Dynamic Charts in Microsoft Office Excel 2007 and Beyond (Scheck) Bullet Graph (pp. 200 205, Alexander,

More information

Enhanced Vessel Traffic Management System Booking Slots Available and Vessels Booked per Day From 12-JAN-2016 To 30-JUN-2017

Enhanced Vessel Traffic Management System Booking Slots Available and Vessels Booked per Day From 12-JAN-2016 To 30-JUN-2017 From -JAN- To -JUN- -JAN- VIRP Page Period Period Period -JAN- 8 -JAN- 8 9 -JAN- 8 8 -JAN- -JAN- -JAN- 8-JAN- 9-JAN- -JAN- -JAN- -JAN- -JAN- -JAN- -JAN- -JAN- -JAN- 8-JAN- 9-JAN- -JAN- -JAN- -FEB- : days

More information

Computing & Telecommunications Services Monthly Report March 2015

Computing & Telecommunications Services Monthly Report March 2015 March 215 Monthly Report Computing & Telecommunications Services Monthly Report March 215 CaTS Help Desk (937) 775-4827 1-888-775-4827 25 Library Annex helpdesk@wright.edu www.wright.edu/cats/ Last Modified

More information

Ashley Institute of Training Schedule of VET Tuition Fees 2015

Ashley Institute of Training Schedule of VET Tuition Fees 2015 Ashley Institute of Training Schedule of VET Fees Year of Study Group ID:DECE15G1 Total Course Fees $ 12,000 29-Aug- 17-Oct- 50 14-Sep- 0.167 blended various $2,000 CHC02 Best practice 24-Oct- 12-Dec-

More information

Basic Project Management & Planning

Basic Project Management & Planning Basic Project Management & Planning Dr. David K. Potter Director & Don Pether Chair in Engineering and Management em4a03@mcmaster.ca 1 What is Project Management? A set of principles, methods, tools, and

More information

CENTERPOINT ENERGY TEXARKANA SERVICE AREA GAS SUPPLY RATE (GSR) JULY 2015. Small Commercial Service (SCS-1) GSR

CENTERPOINT ENERGY TEXARKANA SERVICE AREA GAS SUPPLY RATE (GSR) JULY 2015. Small Commercial Service (SCS-1) GSR JULY 2015 Area (RS-1) GSR GSR (LCS-1) Texarkana Incorporated July-15 $0.50690/Ccf $0.45450/Ccf $0.00000/Ccf $2.85090/MMBtu $17.52070/MMBtu Texarkana Unincorporated July-15 $0.56370/Ccf $0.26110/Ccf $1.66900/Ccf

More information

Resource Management Spreadsheet Capabilities. Stuart Dixon Resource Manager

Resource Management Spreadsheet Capabilities. Stuart Dixon Resource Manager Resource Management Spreadsheet Capabilities Stuart Dixon Resource Manager Purpose Single view of resource data Shows rolling demand vs supply for 14 months, 2 months back, current month, and 11 forward

More information

FORECASTING. Operations Management

FORECASTING. Operations Management 2013 FORECASTING Brad Fink CIT 492 Operations Management Executive Summary Woodlawn hospital needs to forecast type A blood so there is no shortage for the week of 12 October, to correctly forecast, a

More information

If the World Were Our Classroom. Brief Overview:

If the World Were Our Classroom. Brief Overview: If the World Were Our Classroom Brief Overview: Using the picture book, If the World Were a Village by David J. Smith, students will gather similar research from their classroom to create their own book.

More information

Assignment 5: Visualization

Assignment 5: Visualization Assignment 5: Visualization Arash Vahdat March 17, 2015 Readings Depending on how familiar you are with web programming, you are recommended to study concepts related to CSS, HTML, and JavaScript. The

More information

The work breakdown structure can be illustrated in a block diagram:

The work breakdown structure can be illustrated in a block diagram: 1 Project Management Tools for Project Management Work Breakdown Structure A complex project is made manageable by first breaking it down into individual components in a hierarchical structure, known as

More information

P/T 2B: 2 nd Half of Term (8 weeks) Start: 25-AUG-2014 End: 19-OCT-2014 Start: 20-OCT-2014 End: 14-DEC-2014

P/T 2B: 2 nd Half of Term (8 weeks) Start: 25-AUG-2014 End: 19-OCT-2014 Start: 20-OCT-2014 End: 14-DEC-2014 2014-2015 SPECIAL TERM ACADEMIC CALENDAR FOR SCRANTON EDUCATION ONLINE (SEOL), MBA ONLINE, HUMAN RESOURCES ONLINE, NURSE ANESTHESIA and ERP PROGRAMS SPECIAL FALL 2014 TERM Key: P/T = Part of Term P/T Description

More information

P/T 2B: 2 nd Half of Term (8 weeks) Start: 26-AUG-2013 End: 20-OCT-2013 Start: 21-OCT-2013 End: 15-DEC-2013

P/T 2B: 2 nd Half of Term (8 weeks) Start: 26-AUG-2013 End: 20-OCT-2013 Start: 21-OCT-2013 End: 15-DEC-2013 2013-2014 SPECIAL TERM ACADEMIC CALENDAR FOR SCRANTON EDUCATION ONLINE (SEOL), MBA ONLINE, HUMAN RESOURCES ONLINE, NURSE ANESTHESIA and ERP PROGRAMS SPECIAL FALL 2013 TERM Key: P/T = Part of Term P/T Description

More information

P/T 2B: 2 nd Half of Term (8 weeks) Start: 24-AUG-2015 End: 18-OCT-2015 Start: 19-OCT-2015 End: 13-DEC-2015

P/T 2B: 2 nd Half of Term (8 weeks) Start: 24-AUG-2015 End: 18-OCT-2015 Start: 19-OCT-2015 End: 13-DEC-2015 2015-2016 SPECIAL TERM ACADEMIC CALENDAR For Scranton Education Online (SEOL), Masters of Business Administration Online, Masters of Accountancy Online, Health Administration Online, Health Informatics

More information

LeSueur, Jeff. Marketing Automation: Practical Steps to More Effective Direct Marketing. Copyright 2007, SAS Institute Inc., Cary, North Carolina,

LeSueur, Jeff. Marketing Automation: Practical Steps to More Effective Direct Marketing. Copyright 2007, SAS Institute Inc., Cary, North Carolina, Preface. Overview. PART 1: Marketing Financials. Chapter 1 Profit and Loss Fundamentals. Chapter 2 Profit and Loss Component Details. Chapter 3 Managing the P&L. Chapter 4 Measuring Marketing Effectiveness.

More information

Comparing share-price performance of a stock

Comparing share-price performance of a stock Comparing share-price performance of a stock A How-to write-up by Pamela Peterson Drake Analysis of relative stock performance is challenging because stocks trade at different prices, indices are calculated

More information

Metric of the Month: The Service Desk Balanced Scorecard

Metric of the Month: The Service Desk Balanced Scorecard INDUSTRY INSIDER 1 Metric of the Month: The Service Desk Balanced Scorecard By Jeff Rumburg Every month, in the Industry Insider, I highlight one key performance indicator (KPI) for the service desk or

More information

Energy at Home ENERGY USE AND DELIVERY LESSON PLAN 3.6. Public School System Teaching Standards Covered

Energy at Home ENERGY USE AND DELIVERY LESSON PLAN 3.6. Public School System Teaching Standards Covered ENERGY USE AND DELIVERY LESSON PLAN 3.6 Energy at Home This lesson is designed for 3rd 5th grade students in a variety of school settings (public, private, STEM schools, and home schools) in the seven

More information

ACCESS Nursing Programs Session 1 Center Valley Campus Only 8 Weeks Academic Calendar 8 Weeks

ACCESS Nursing Programs Session 1 Center Valley Campus Only 8 Weeks Academic Calendar 8 Weeks Session 1 Academic Calendar August 24, 2015 to October 17, 2015 Tuesday / Thursday, 5:30 pm to 8:30 pm M/W T/TH T/W TH S Saturday lab as scheduled Classes Begin 24-Aug 25-Aug 25-Aug 27-Aug 29-Aug NU205

More information

ACCESS Nursing Programs Session 1 Center Valley Campus Only 8 Weeks Academic Calendar 8 Weeks

ACCESS Nursing Programs Session 1 Center Valley Campus Only 8 Weeks Academic Calendar 8 Weeks Session 1 Academic Calendar August 24, 2015 to October 17, 2015 Tuesday / Thursday, 5:30 pm to 8:30 pm M/W T/TH T/W TH S Saturday lab as scheduled Classes Begin 24-Aug 25-Aug 25-Aug 27-Aug 29-Aug NU205

More information

APES Math Review. For each problem show every step of your work, and indicate the cancellation of all units No Calculators!!

APES Math Review. For each problem show every step of your work, and indicate the cancellation of all units No Calculators!! APES Math Review For each problem show every step of your work, and indicate the cancellation of all units No Calculators!! Scientific Notation All APES students should be able to work comfortably with

More information

PROJECTS SCHEDULING AND COST CONTROLS

PROJECTS SCHEDULING AND COST CONTROLS Professional Development Day September 27th, 2014 PROJECTS SCHEDULING AND COST CONTROLS Why do we need to Control Time and Cost? Plans are nothing; Planning is everything. Dwight D. Eisenhower Back to

More information

Important Dates Calendar 2014-2015 FALL

Important Dates Calendar 2014-2015 FALL Important Dates Calendar 204-205 FALL Rev. 6-8-4 st 8 H st 0 2nd 0 st 5 2nd 5 3rd 5 LSC Advanced Registration Begins May 27 May 27 May 27 May 27 May 27 May 27 May 27 May 27 May 27 Returning Students Advanced

More information

1. Introduction. 2. User Instructions. 2.1 Set-up

1. Introduction. 2. User Instructions. 2.1 Set-up 1. Introduction The Lead Generation Plan & Budget Template allows the user to quickly generate a Lead Generation Plan and Budget. Up to 10 Lead Generation Categories, typically email, telemarketing, advertising,

More information

Deep Security/Intrusion Defense Firewall - IDS/IPS Coverage Statistics and Comparison

Deep Security/Intrusion Defense Firewall - IDS/IPS Coverage Statistics and Comparison Deep Security/Intrusion Defense Firewall - IDS/IPS Trend Micro, Incorporated A technical brief summarizing vulnerability coverage provided by Deep Security and Intrusion Defense Firewall. The document

More information

2015-16 BCOE Payroll Calendar. Monday Tuesday Wednesday Thursday Friday Jun 29 30 Jul 1 2 3. Full Force Calc

2015-16 BCOE Payroll Calendar. Monday Tuesday Wednesday Thursday Friday Jun 29 30 Jul 1 2 3. Full Force Calc July 2015 CM Period 1501075 July 2015 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 August 2015 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

More information

Proposal to Reduce Opening Hours at the Revenues & Benefits Coventry Call Centre

Proposal to Reduce Opening Hours at the Revenues & Benefits Coventry Call Centre Proposal to Reduce Opening Hours at the Revenues & Benefits Coventry Call Centre Proposal To change the opening hours of the Revenues & Benefits Call Centre to 9am until 5pm Monday to Friday with effect

More information

Choosing a Cell Phone Plan-Verizon

Choosing a Cell Phone Plan-Verizon Choosing a Cell Phone Plan-Verizon Investigating Linear Equations I n 2008, Verizon offered the following cell phone plans to consumers. (Source: www.verizon.com) Verizon: Nationwide Basic Monthly Anytime

More information

Interest Rates. Countrywide Building Society. Savings Growth Data Sheet. Gross (% per annum)

Interest Rates. Countrywide Building Society. Savings Growth Data Sheet. Gross (% per annum) Interest Rates (% per annum) Countrywide Building Society This is the rate of simple interest earned in a year (before deducting tax). Dividing by 12 gives the monthly rate of interest. Annual Equivalent

More information

Human Resources Management System Pay Entry Calendar

Human Resources Management System Pay Entry Calendar Human Resources Management System Pay Entry Calendar http://www1.umn.edu/ohr/payroll/calendars/index.html Important Information The system is unavailable for entry, due to maintenance, during the following

More information

Deep Security Intrusion Detection & Prevention (IDS/IPS) Coverage Statistics and Comparison

Deep Security Intrusion Detection & Prevention (IDS/IPS) Coverage Statistics and Comparison Deep Security Intrusion Detection & Prevention (IDS/IPS) Trend Micro, Incorporated A technical brief summarizing vulnerability coverage provided by Deep Security. The document also outlines a comparison

More information

Accident & Emergency Department Clinical Quality Indicators

Accident & Emergency Department Clinical Quality Indicators Overview This dashboard presents our performance in the new A&E clinical quality indicators. These 8 indicators will allow you to see the quality of care being delivered by our A&E department, and reflect

More information

Supervisor Instructions for Approving Web Time Entry

Supervisor Instructions for Approving Web Time Entry Supervisor Instructions for Approving Web Time Entry Time Approval Deadlines by Category Local 2110 Members members submit time by NOON on Monday of the pay week. Time should be approved no later than

More information

CAFIS REPORT 2015.10

CAFIS REPORT 2015.10 CAFIS REPORT 2015.10 INDEX Message CAFIS Inbound 03-06 07-08 CAFIS Arch 09-10 CAFIS Brain 11-12 CAFIS Global 13-14 What We Do 15-16 About CAFIS 17-18 Services for Member Stores 19-34 Services for Card

More information

OMBU ENTERPRISES, LLC. Process Metrics. 3 Forest Ave. Swanzey, NH 03446 Phone: 603-209-0600 Fax: 603-358-3083 E-mail: OmbuEnterprises@msn.

OMBU ENTERPRISES, LLC. Process Metrics. 3 Forest Ave. Swanzey, NH 03446 Phone: 603-209-0600 Fax: 603-358-3083 E-mail: OmbuEnterprises@msn. OMBU ENTERPRISES, LLC 3 Forest Ave. Swanzey, NH 03446 Phone: 603-209-0600 Fax: 603-358-3083 E-mail: OmbuEnterprises@msn.com Process Metrics Metrics tell the Process Owner how the process is operating.

More information

Consumer ID Theft Total Costs

Consumer ID Theft Total Costs Billions Consumer and Business Identity Theft Statistics Business identity (ID) theft is a growing crime and is a growing concern for state filing offices. Similar to consumer ID theft, after initially

More information

Create Stoplight charts using Milestones Professional

Create Stoplight charts using Milestones Professional Stoplight Charts: Ideal for At-a-Glance Project Reporting Create Stoplight charts using Milestones Professional In a report which has extensive data, how can action items be quickly highlighted and addressed?

More information

Academic Calendars. Term I (20081) Term II (20082) Term III (20083) Weekend College. International Student Admission Deadlines

Academic Calendars. Term I (20081) Term II (20082) Term III (20083) Weekend College. International Student Admission Deadlines Academic Calendars Term I (20081) Term II (20082) Academic Calendars Term III (20083) Weekend College International Student Admission Deadlines Final Examination Schedule Broward Community College Catalog

More information

2014 2015 University-Wide Academic Calendar

2014 2015 University-Wide Academic Calendar 2014 2015 University-Wide Academic Calendar Guide to Abbreviations UGD = Undergraduate Day GS = Graduate Schools LAW = School of Law CPS = College of Professional Studies Sunday Monday Tuesday Wednesday

More information

UPCOMING PROGRAMMES/COURSES APRIL, 2014 MARCH, 2015 (MIND KINGSTON & MANDEVILLE CAMPUSES)

UPCOMING PROGRAMMES/COURSES APRIL, 2014 MARCH, 2015 (MIND KINGSTON & MANDEVILLE CAMPUSES) UPCOMING PROGRAMMES/ IL, CH, 2 UPCOMING PROGRAMMES/ IL, CH, Table of Contents Programme/Course Awards Page(s) Certificates Secretarial Qualifying Examination 5 Minute Writing 5 Public Speaking & Presentation

More information

USING TIME SERIES CHARTS TO ANALYZE FINANCIAL DATA (Presented at 2002 Annual Quality Conference)

USING TIME SERIES CHARTS TO ANALYZE FINANCIAL DATA (Presented at 2002 Annual Quality Conference) USING TIME SERIES CHARTS TO ANALYZE FINANCIAL DATA (Presented at 2002 Annual Quality Conference) William McNeese Walt Wilson Business Process Improvement Mayer Electric Company, Inc. 77429 Birmingham,

More information

KA LEO MEDIA KIT 2015-2016

KA LEO MEDIA KIT 2015-2016 KA LEO MEDIA KIT 15-16 PRINT ADVERTISEMENTS PRINT AD SIZING Each page of Ka Leo is divided into five columns and twelve rows. Each column is 1.84 inches wide, while each row is 0.875 inches tall. We also

More information

Basic Computer Skills Module 5. Introduction to Microsoft Excel 2010

Basic Computer Skills Module 5. Introduction to Microsoft Excel 2010 Basic Computer Skills Module 5 Introduction to Microsoft Excel 2010 Basic Computer Skills Module 5 Introduction to Microsoft Excel 2010 Summary Goals: Identify spreadsheet terms. Create and manipulate

More information

Project Management Planning

Project Management Planning Overview of Resource Planning Every organization has a limited number of resources to perform tasks. A project manager's primary role is to find a way to successfully execute a project within these resource

More information

Get to the Point HOW GOOD DATA VISUALIZATION IMPROVES BUSINESS DECISIONS

Get to the Point HOW GOOD DATA VISUALIZATION IMPROVES BUSINESS DECISIONS Get to the Point HOW GOOD DATA VISUALIZATION IMPROVES BUSINESS DECISIONS Whatever presents itself quickly and clearly to the mind sets it to work, to reason, and to think. - William Playfair, inventor

More information

Software Re-Engineering and Ux Improvement for ElegantJ BI Business Intelligence Suite

Software Re-Engineering and Ux Improvement for ElegantJ BI Business Intelligence Suite 2011 2012 2013 2014 Q1 Q2 Q3 Q4 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Sales Performance by Category 2014 Product

More information

Roles: Scrum Master & Project Manager

Roles: Scrum Master & Project Manager Roles: Scrum Master & Project Manager Scrum Master: Facilitate collaborative meetings Track team performance Remove impediments (Risk, Issue) Validate team alignment to Agile framework and scope Drive

More information

Time Management II. http://lbgeeks.com/gitc/pmtime.php. June 5, 2008. Copyright 2008, Jason Paul Kazarian. All rights reserved.

Time Management II. http://lbgeeks.com/gitc/pmtime.php. June 5, 2008. Copyright 2008, Jason Paul Kazarian. All rights reserved. Time Management II http://lbgeeks.com/gitc/pmtime.php June 5, 2008 Copyright 2008, Jason Paul Kazarian. All rights reserved. Page 1 Outline Scheduling Methods Finding the Critical Path Scheduling Documentation

More information

2.9 % $1.5 AT A GLANCE. educated well informed engaged. Employment areas. private practice. hospitals. nursing homes.

2.9 % $1.5 AT A GLANCE. educated well informed engaged. Employment areas. private practice. hospitals. nursing homes. Media Kit 2016 The Australian Physiotherapy Association (APA) is the peak body representing the interests of Australian physiotherapists and their patients. AT A GLANCE Our readers educated well informed

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

Part 2: Data Visualization How to communicate complex ideas with simple, efficient and accurate data graphics

Part 2: Data Visualization How to communicate complex ideas with simple, efficient and accurate data graphics Part 2: Data Visualization How to communicate complex ideas with simple, efficient and accurate data graphics Why visualize data? The human eye is extremely sensitive to differences in: Pattern Colors

More information

ACCA Interactive Timetable

ACCA Interactive Timetable ACCA Interactive Timetable 2016/17 Professional information last updated y 2016 v2.1 Please note: Information and dates in this timetable are subject to change. How the 4 exam sittings can work for you

More information

ACCA Interactive Timetable

ACCA Interactive Timetable ACCA Interactive Timetable 2016/17 Professional information last updated 1August 2016 v3.1 Please note: Information and dates in this timetable are subject to change. How the 4 exam sittings can work for

More information

Working with Spreadsheets

Working with Spreadsheets osborne books Working with Spreadsheets UPDATE SUPPLEMENT 2015 The AAT has recently updated its Study and Assessment Guide for the Spreadsheet Software Unit with some minor additions and clarifications.

More information

Ways We Use Integers. Negative Numbers in Bar Graphs

Ways We Use Integers. Negative Numbers in Bar Graphs Ways We Use Integers Problem Solving: Negative Numbers in Bar Graphs Ways We Use Integers When do we use negative integers? We use negative integers in several different ways. Most of the time, they are

More information

PATIENT JOURNEY BOARDS

PATIENT JOURNEY BOARDS PATIENT JOURNEY BOARDS at Manly, Mona Vale and Hornsby Ku-ring-gai Hospitals Sue Hair : Director of Nursing and Midwifery, Manly Hospital Deb Stewart : Manger Clinical Redesign, Northern Beaches and Hornsby

More information

Academic Calendar 2015-2018 Arkansas State University - Jonesboro

Academic Calendar 2015-2018 Arkansas State University - Jonesboro Shared Governance Proposal Any constituent (individual or group) may submit a proposal into the shared governance process. In order to be considered, each proposal must contain the following and be directed

More information

Financial Operating Procedure: Budget Monitoring

Financial Operating Procedure: Budget Monitoring Financial Operating Procedure: Budget Monitoring Original Created: Jan 2010 Last Updated: Jan 2010 1 Index 1 Scope of Procedure...3 2 Aim of Procedure...3 3 Roles & Responsibilities...3 Appendix A Timetable...7

More information

Detailed guidance for employers

Detailed guidance for employers April 2015 3 Detailed guidance for employers Appendix A: Pay reference periods This document accompanies: Detailed guidance no. 3 Assessing the workforce Pay reference period calendars where the definition

More information

ACCA Interactive Timetable

ACCA Interactive Timetable ACCA Interactive Timetable 2016/17 Professional Milton Keynes information last updated 22 June 2016 Please note: Information and dates in this timetable are subject to change. How the 4 exam sittings can

More information

2015 2016 University-Wide Academic Calendar

2015 2016 University-Wide Academic Calendar 2015 2016 University-Wide Academic Calendar Guide to Abbreviations UGD = Undergraduate day GS = Graduate schools LAW = School of Law CPS = College of Professional Studies SEM = Semeter programs (undergraduate

More information

CHOOSE MY BEST PLAN OPTION (PLAN FINDER) INSTRUCTIONS

CHOOSE MY BEST PLAN OPTION (PLAN FINDER) INSTRUCTIONS CHOOSE MY BEST PLAN OPTION (PLAN FINDER) INSTRUCTIONS Anthem Medical Plan For Employees Working In the US February 10, 2012 Page 1 IMPORTANT NOTES YOU SHOULD CONSIDER BEFORE USING THE TOOL The Choose My

More information

2013 2014 University-Wide Academic Calendar

2013 2014 University-Wide Academic Calendar 2013 2014 University-Wide Academic Calendar Guide to Abbreviations UGD = Undergraduate Day GS = Graduate Schools LAW = School of Law CPS = College of Professional Studies Aug 26 Monday LAW: Fall semester

More information

Teller & Cash Activity Analysis Tools

Teller & Cash Activity Analysis Tools Teller & Cash Activity Analysis Tools CU*BASE Relationship Management Tools INTRODUCTION Take a look at the numbers...what do you see? Let s talk about the teller line. What do we need to know in order

More information

Department of Public Welfare (DPW)

Department of Public Welfare (DPW) Department of Public Welfare (DPW) Office of Income Maintenance Electronic Benefits Transfer Card Risk Management Report Out-of-State Residency Review FISCAL YEAR 2012-2013 June 2013 (March, April and

More information

Employers Compliance with the Health Insurance Act Annual Report 2015

Employers Compliance with the Health Insurance Act Annual Report 2015 Employers Compliance with the Health Insurance Act Annual Report 2015 ea Health Council Health Council: Employers Compliance with the Health Insurance Act 1970 Annual Report 2015 Contact us: If you would

More information

Print Specifications. Magazine Trim Size 8 3/8 w x 10 13/16 h. Image Resolution 300dpi. Line Screen 175lpi

Print Specifications. Magazine Trim Size 8 3/8 w x 10 13/16 h. Image Resolution 300dpi. Line Screen 175lpi Print Specifications DISPLAY AD SIZES UNIT LIVE TRIM BLEED Full page 7.875 w x 10.3125 h 8.375 w x 10.8125 h 8.625 w x 11.0625 h 1/3 page vertical w/ bleed 2.000 w x 10.3125 h 2.500 w x 10.8125 h 2.750

More information

CSCI 1301: Introduction to Computing and Programming Summer 2015 Project 1: Credit Card Pay Off

CSCI 1301: Introduction to Computing and Programming Summer 2015 Project 1: Credit Card Pay Off CSCI 1301: Introduction to Computing and Programming Summer 2015 Project 1: Credit Card Pay Off Introduction This project will allow you to apply your knowledge of variables, assignments, expressions,

More information

Managing Projects with Practical Software & Systems Measurement PSM

Managing Projects with Practical Software & Systems Measurement PSM Managing Projects with Practical Software & Systems Measurement PSM Mauricio Aguiar PSM Qualified Instructor TI Métricas Ltda. Av. Rio Branco 181/1910 Rio de Janeiro, RJ Brazil 20040-007 www.metricas.com.br

More information

NASA Explorer Schools Pre-Algebra Unit Lesson 2 Student Workbook. Solar System Math. Comparing Mass, Gravity, Composition, & Density

NASA Explorer Schools Pre-Algebra Unit Lesson 2 Student Workbook. Solar System Math. Comparing Mass, Gravity, Composition, & Density National Aeronautics and Space Administration NASA Explorer Schools Pre-Algebra Unit Lesson 2 Student Workbook Solar System Math Comparing Mass, Gravity, Composition, & Density What interval of values

More information

A Resource for Free-standing Mathematics Units. Data Sheet 1

A Resource for Free-standing Mathematics Units. Data Sheet 1 Data Sheet 1 Regular Expenses Item Estimate of Cost When Petrol/Diesel 10p per mile As needed Oil 12 for can of oil and filter Once or twice per year Air Filter 10 Once a year MOT 25-30 (excluding repairs)

More information

LEWIS SCHOOL OF ENGLISH

LEWIS SCHOOL OF ENGLISH LEWIS SCHOOL OF ENGLISH Academic Year Programme 2015 2 www.lewis-school.co.uk/ayp Welcome! Our flexible Academic Year Programme allows you to choose from our range of courses and create your own programme

More information

Coordination and air quality monitoring during emergencies. Colin Powlesland Environment Agency

Coordination and air quality monitoring during emergencies. Colin Powlesland Environment Agency Coordination and air quality monitoring during emergencies Colin Powlesland Environment Agency Contents h Introduction h What do we want to achieve? h Implementation programme h Incident timeline h Proposed

More information

A Guide to the Insider Buying Investment Strategy

A Guide to the Insider Buying Investment Strategy Mar-03 Aug-03 Jan-04 Jun-04 Nov-04 Apr-05 Sep-05 Feb-06 Jul-06 Dec-06 May-07 Oct-07 Mar-08 Aug-08 Jan-09 Jun-09 Nov-09 Apr-10 Sep-10 Mar-03 Jul-03 Nov-03 Mar-04 Jul-04 Nov-04 Mar-05 Jul-05 Nov-05 Mar-06

More information

6.170 Tutorial 3 - Ruby Basics

6.170 Tutorial 3 - Ruby Basics 6.170 Tutorial 3 - Ruby Basics Prerequisites 1. Have Ruby installed on your computer a. If you use Mac/Linux, Ruby should already be preinstalled on your machine. b. If you have a Windows Machine, you

More information

Ed2go Online Courses FAQs and Staff Manual

Ed2go Online Courses FAQs and Staff Manual Student Questions... 2 How do the classes work? Do they follow the Great Oaks Institute of Technology and Career Development Term schedule?... 2 What does an online classroom look like? Can I see a lesson

More information

Merchandising Operations

Merchandising Operations 5 Merchandising Operations WHAT YOU PROBABLY ALREADY KNOW You want to order a pair of pants from a mail-order catalog. The price listed in the catalog is $50. There is a 10% off coupon in the catalog for

More information

Box Plots. Objectives To create, read, and interpret box plots; and to find the interquartile range of a data set. Family Letters

Box Plots. Objectives To create, read, and interpret box plots; and to find the interquartile range of a data set. Family Letters Bo Plots Objectives To create, read, and interpret bo plots; and to find the interquartile range of a data set. www.everydaymathonline.com epresentations etoolkit Algorithms Practice EM Facts Workshop

More information

CPSC ITDS/RAM Pilot System: PGA Message Set

CPSC ITDS/RAM Pilot System: PGA Message Set CPSC ITDS/RAM Pilot System: PGA Message Set Electronic Certificate Filing Test March 27, 2015 This presentation has not been reviewed or approved by the Commission and may not reflect its views CPSC Background

More information

CIS 287 World Wide Web Development Fall 2010 - Blended

CIS 287 World Wide Web Development Fall 2010 - Blended CIS 287 World Wide Web Development Fall 2010 - Blended Instructor: Jeni Patton Class Day: Tuesdays 515-5328 office LCC 1241 Class Time: 12:115 1:30 PM pattonj@cochise.edu Room: LCC 1203 IM jenipatton@hotmail.com

More information

Items/Tasks required to be completed for Financial Services Division (FSD)

Items/Tasks required to be completed for Financial Services Division (FSD) JAN 0 Events/Deadline New Years Day Holiday Public Holiday Finance One unavailable due to end of year roll over. Finance One unavailable due to end of year roll over. 7 0 FBT gift & Vehicle usage returns

More information

2016 Examina on dates

2016 Examina on dates Please note the following informa on: The following exams are available throughout the year: Please click on the exam for which you wish to see the dates. When you have finished, you can select to return

More information

April 2015. Mar 29 30 31 Apr 1 2 3 4. 26 27 28 29 30 May 1 2 SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY

April 2015. Mar 29 30 31 Apr 1 2 3 4. 26 27 28 29 30 May 1 2 SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY April 2015 SSF High School Intern Program Schedule April 2015 26 27 28 29 30 May 2015 1 2 31 Mar 29 30 31 Apr Applications Available - SSF Intern 26 27 28 29 30 May 1 2 7:00pm Auditions - 2015 SSF (Sac.

More information

2015 Examination dates

2015 Examination dates Please note the following information: The following exams are available throughout the year: BULATS Paper-based: Please click on the exam for which you wish to see the dates. When you have finished, you

More information

South Dakota Board of Regents. Web Time Entry. Student. Training Manual & User s Guide

South Dakota Board of Regents. Web Time Entry. Student. Training Manual & User s Guide South Dakota Board of Regents Web Time Entry Student Training Manual & User s Guide Web Time Entry Self Service Web Time Entry is a web-based time entry system designed to improve accuracy and eliminate

More information

ITD Help Desk Traffic Report May 2002

ITD Help Desk Traffic Report May 2002 ITD Help Desk Traffic Report May 2002 Call volumes and resolution times within the CONSULT Remedy workgroup June 10, 2002 Christopher King Help Desk Manager NC State University chris_king@ncsu.edu Information

More information

FY 2015 Schedule at a Glance

FY 2015 Schedule at a Glance Coaching and Mentoring for Excellence Oct 21 23, 2014 $2,950 Residential Coaching and Mentoring for Excellence Apr 7 9, 2015 $2,400 Non-residential Coaching and Mentoring for Excellence May 27 29, 2015

More information

Oxfam GB Digital Case Study - email

Oxfam GB Digital Case Study - email Oxfam GB Digital Case Study - email Friday 19 th July Lizzie Williams Email Marketing Manager Holly Bolter Senior Analyst Mark Lumby Selections & Analysis Manager Emergencies Get Together Campaigns Regular

More information

Currency Trading Opportunities at DGCX

Currency Trading Opportunities at DGCX Currency Trading Opportunities at DGCX About DGCX Region s 1 st and largest derivatives exchange Commenced trading in November 2005 Since launch over 6.8 million contracts traded with a value in excess

More information

Using INZight for Time series analysis. A step-by-step guide.

Using INZight for Time series analysis. A step-by-step guide. Using INZight for Time series analysis. A step-by-step guide. inzight can be downloaded from http://www.stat.auckland.ac.nz/~wild/inzight/index.html Step 1 Click on START_iNZightVIT.bat. Step 2 Click on

More information

Centers of Academic Excellence in Cyber Security (CAE-C) Knowledge Units Review

Centers of Academic Excellence in Cyber Security (CAE-C) Knowledge Units Review Centers of Academic Excellence in Cyber Security (CAE-C) Knowledge Units Review Review Process The Knowledge Unit (KU) Review Calendar divides the entire CAE-C KU list into 12 months for the purposes of

More information

Reading and Writing Small Numbers

Reading and Writing Small Numbers Reading Writing Small Numbers Objective To read write small numbers in stard exped notations wwweverydaymathonlinecom epresentations etoolkit Algorithms Practice EM Facts Workshop Game Family Letters Assessment

More information

MANAGEMENT INFORMATION REPORT Department for Business Innovations & Skills (BIS)

MANAGEMENT INFORMATION REPORT Department for Business Innovations & Skills (BIS) MANAGEMENT INFORMATION REPORT Department for Business Innovations & Skills (BIS) Version 3.2 9/1/215 Clyde & Co 4 th Floor, Collingwood House, 3 Collingwood Street, Newcastle, NE1 1JW T: 191 229 223 F:

More information

How To Get A Certificate From Ms.Net For A Server Server

How To Get A Certificate From Ms.Net For A Server Server Last Activity Recorded : December 19, 2014 Microsoft Certification ID : 2665612 MARC GROTE Wittorfer Strasse 4 Bardowick, Lower Saxony 21357 DE grotem@it-training-grote.de ACTIVE MICROSOFT CERTIFICATIONS:

More information