Pro Data Visualization using R and JavaScript. Tom Barker

Size: px
Start display at page:

Download "Pro Data Visualization using R and JavaScript. Tom Barker"

Transcription

1 Pro Data Visualization using R and JavaScript Tom Barker

2 Pro Data Visualization using R and JavaScript Copyright 2013 by Tom Barker This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. Exempted from this legal reservation are brief excerpts in connection with reviews or scholarly analysis or material supplied specifically for the purpose of being entered and executed on a computer system, for exclusive use by the purchaser of the work. Duplication of this publication or parts thereof is permitted only under the provisions of the Copyright Law of the Publisher's location, in its current version, and permission for use must always be obtained from Springer. Permissions for use may be obtained through RightsLink at the Copyright Clearance Center. Violations are liable to prosecution under the respective Copyright Law. ISBN-13 (pbk): ISBN-13 (electronic): Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights. While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein. President and Publisher: Paul Manning Lead Editor: Ben Renow-Clarke Technical Reviewer: Matthew Canning Editorial Board: Steve Anglin, Mark Beckner, Ewan Buckingham, Gary Cornell, Louise Corrigan, Morgan Ertel, Jonathan Gennick, Jonathan Hassell, Robert Hutchinson, Michelle Lowman, James Markham, Matthew Moodie, Jeff Olson, Jeffrey Pepper, Douglas Pundick, Ben Renow-Clarke, Dominic Shakeshaft, Gwenan Spearing, Matt Wade, Tom Welsh Coordinating Editor: Christine Ricketts Copy Editor: Nancy Sixsmith Compositor: SPi Global Indexer: SPi Global Artist: SPi Global Cover Designer: Anna Ishchenko Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY Phone SPRINGER, fax (201) , orders-ny@springer-sbm.com, or visit Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation. For information on translations, please rights@apress.com, or visit Apress and friends of ED books may be purchased in bulk for academic, corporate, or promotional use. ebook versions and licenses are also available for most titles. For more information, reference our Special Bulk Sales ebook Licensing web page at Any source code or other supplementary materials referenced by the author in this text is available to readers at For detailed information about how to locate your book s source code, go to

3 For my grandmother, Ann Biango, who passed away during the creation of this book. I was very lucky to have her in my life for as long as I did.

4

5 Contents at a Glance About the Author...xiii About the Technical Reviewer... xv Acknowledgments... xvii Chapter 1: Background...1 Chapter 2: R Language Primer...25 Chapter 3: A Deeper Dive into R...47 Chapter 4: Data Visualization with D Chapter 5: Visualizing Spatial Data from Access Logs...85 Chapter 6: Visualizing Data Over Time Chapter 7: Bar Charts Chapter 8: Correlation Analysis with Scatter Plots Chapter 9: Visualizing the Balance of Delivery and Quality with Parallel Coordinates Index v

6

7 Contents About the Author...xiii About the Technical Reviewer... xv Acknowledgments... xvii Chapter 1: Background...1 What Is Data Visualization?...2 Time Series Charts... 2 Bar Charts... 3 Histograms... 4 Data Maps... 5 Scatter Plots... 5 History... 6 Modern Landscape... 8 Why Data Visualization?...10 Tools...10 Languages, Environments, and Libraries Analysis Tools Process Overview...14 Identify a Problem Gather Data Analyze Data Visualize Data vii

8 Contents viii Ethics of Data Visualization...22 Cite Sources Be Aware of Visual Cues Summary...23 Chapter 2: R Language Primer...25 Getting to Know the R Console...25 The Command Line Command History Accessing Documentation Packages Importing Data...33 Using Headers Specifying a String Delimiter Specifying Row Identifiers Using Custom Column Names Data Structures and Data Types...35 Data Frames Matrices Adding Lists Looping Through Lists Applying Functions to Lists Functions Summary...45 Chapter 3: A Deeper Dive into R...47 Object-Oriented Programming in R...47 S3 Classes S4 Classes Statistical Analysis with Descriptive Metrics in R...52 Median and Mean Quartiles Standard Deviation... 56

9 Contents RStudio IDE...57 R Markdown RPubs Summary...64 Chapter 4: Data Visualization with D Preliminary Concepts...65 HTML CSS SVG JavaScript History of D Using D Setting Up a Project Using D Binding Data Creating a Bar Chart...76 Loading External Data...82 Summary...84 Chapter 5: Visualizing Spatial Data from Access Logs...85 What Are Data Maps?...85 Access Logs...89 Parsing the Access Log...90 Read in the Access Log Parse the Log File Geolocation by IP Output the Fields Adding Control Logic Creating a Data Map in R Distributing the Visualization Summary ix

10 Contents Chapter 6: Visualizing Data Over Time Gathering Data Data Analysis with R Calculating the Bug Count Examining the Severity of the Bugs Adding Interactivity with D Reading in the Data Drawing on the Page Adding Interactivity Summary Chapter 7: Bar Charts Standard Bar Chart Stacked Bar Chart Grouped Bar Chart Visualizing and Analyzing Production Incidents Plotting Data on a Bar Chart with R Ordering Results Creating a Stacked Bar Chart Bar Charts in D Creating a Vertical Bar Chart Creating a Stacked Bar Chart Creating an Overlaid Visualization Summary Chapter 8: Correlation Analysis with Scatter Plots Finding Relationships in Data Introductory Concepts of Agile Development Correlation Analysis Creating a Scatter Plot Creating a Bubble Chart x

11 Contents Visualizing Bugs Visualizing Production Incidents Interactive Scatter Plots in D Adding the Base HTML and JavaScript Loading the Data Adding Interactive Functionality Adding Form Fields Retrieving Form Data Using the Visualization Summary Chapter 9: Visualizing the Balance of Delivery and Quality with Parallel Coordinates What Are Parallel Coordinate Charts? History of Parallel Coordinate Plots Finding Balance Creating a Parallel Coordinate Chart Adding in Effort Brushing Parallel Coordinate Charts with D Creating the Base Structure Creating a y-axis for Each Column Drawing the Lines Fading the Lines Creating the Axes Summary Index xi

12

13 About the Author Tom Barker is the Senior Manager of Web Development at Comcast. He has authored Pro JavaScript Performance: Monitoring and Visualization and co-authored Foundation Website Creation with HTML5, CSS3, and JavaScript. Tom has also served as an adjunct professor at Philadelphia University for the last 10 years. He lives outside of Philadelphia with his wife and two children. xiii

14

15 About the Technical Reviewer Matthew Canning is an author, speaker, and experienced technical leader who has served in engineering and management roles at some of the world s largest companies. Aside from technology, he writes and presents on subjects such as memory, mental calculation, and productivity. He currently lives outside Philadelphia with his wife and daughter. Web site: matthewcanning.com xv

16

17 Acknowledgments I want to thank Ben Renow-Clarke for thinking of me for this great project. I want to thank Matthew Moodie and Christine Rickets and the rest of the team at Apress for their guidance and direction. I want to thank Matt Canning for helping me see the code with fresh eyes and for keeping me honest. I want to thank my team at Comcast: every one of you is amazing and I am made better by being a part of such an incredible team. I want to thank my amazing wife Lynn and our beautiful children Lukas and Paloma for their patience and understanding while I would write every night until late in the night. xvii

Microsoft Dynamics CRM API Development for Online and On-Premise Environments

Microsoft Dynamics CRM API Development for Online and On-Premise Environments Microsoft Dynamics CRM API Development for Online and On-Premise Environments Mark Beckner Triston Arisawa Microsoft Dynamics CRM API Development for Online and On-Premise Environments Copyright 2013 by

More information

Migrating to Swift from Web Development

Migrating to Swift from Web Development Migrating to Swift from Web Development Sean Liao Mark Punak Migrating to Swift from Web Development Copyright 2015 by Sean Liao and Mark Punak This work is subject to copyright. All rights are reserved

More information

Marketing Analytics. Methods, Metrics, and Tools. Jerry Rackley

Marketing Analytics. Methods, Metrics, and Tools. Jerry Rackley Marketing Analytics Roadmap Methods, Metrics, and Tools Jerry Rackley Marketing Analytics Roadmap: Methods, Metrics, and Tools Copyright 2015 by Jerry Rackley This work is subject to copyright. All rights

More information

Disaster Recovery, Crisis Response, and Business Continuity. Jamie Watters

Disaster Recovery, Crisis Response, and Business Continuity. Jamie Watters Disaster Recovery, Crisis Response, and Business Continuity A Management Desk Reference Jamie Watters Disaster Recovery, Crisis Response, and Business Continuity: A Management Desk Reference Copyright

More information

Success with Microsoft Dynamics CRM 4.0

Success with Microsoft Dynamics CRM 4.0 Success with Microsoft Dynamics CRM 4.0 Implementing Customer Relationship Management Justin Mathena, Aaron Yetter, Hoss Hostetler Success with Microsoft Dynamics CRM 4.0: Implementing Customer Relationship

More information

Predictive Analytics with Microsoft Azure Machine Learning

Predictive Analytics with Microsoft Azure Machine Learning Predictive Analytics with Microsoft Azure Machine Learning Build and Deploy Actionable Solutions in Minutes Roger Barga Valentine Fontama Wee Hyong Tok Predictive Analytics with Microsoft Azure Machine

More information

Oral and Cranial Implants

Oral and Cranial Implants Oral and Cranial Implants Hugh Devlin Ichiro Nishimura Editors Oral and Cranial Implants Recent Research Developments Editors Hugh Devlin School of Dentistry University of Manchester Manchester United

More information

International Series on Consumer Science

International Series on Consumer Science International Series on Consumer Science For further volumes: http://www.springer.com/series/8358 Tsan-Ming Choi Editor Fashion Branding and Consumer Behaviors Scientific Models 1 3 Editor Tsan-Ming Choi

More information

Automated Firewall Analytics

Automated Firewall Analytics Automated Firewall Analytics Ehab Al-Shaer Automated Firewall Analytics Design, Configuration and Optimization 123 Ehab Al-Shaer University of North Carolina Charlotte Charlotte, NC, USA ISBN 978-3-319-10370-9

More information

Pro PowerShell for Microsoft Azure

Pro PowerShell for Microsoft Azure Pro PowerShell for Microsoft Azure Sherif Talaat with contributions from Wagdy Ishac Pro PowerShell for Microsoft Azure Copyright 2015 by Sherif Talaat This work is subject to copyright. All rights are

More information

Excel 2007 PivotTables Recipes

Excel 2007 PivotTables Recipes Excel 2007 PivotTables Recipes A Problem-Solution Approach Debra Dalgleish Excel 2007 PivotTables Recipes: A Problem-Solution Approach Copyright 2007 by Debra Dalgleish All rights reserved. No part of

More information

Applying Comparative Effectiveness Data to Medical Decision Making

Applying Comparative Effectiveness Data to Medical Decision Making Applying Comparative Effectiveness Data to Medical Decision Making Carl V. Asche Editor Applying Comparative Effectiveness Data to Medical Decision Making A Practical Guide Adis Editor Carl V. Asche Research

More information

Lasers in Restorative Dentistry

Lasers in Restorative Dentistry Lasers in Restorative Dentistry Giovanni Olivi Matteo Olivi Editors Lasers in Restorative Dentistry A Practical Guide Editors Giovanni Olivi Rome Italy Matteo Olivi Rome Italy ISBN 978-3-662-47316-0 DOI

More information

Oracle Application Express for Mobile Web Applications Roel Hartman Christian Rokitta David Peake

Oracle Application Express for Mobile Web Applications Roel Hartman Christian Rokitta David Peake Oracle Application Express for Mobile Web Applications Roel Hartman Christian Rokitta David Peake Apress Oracle Application Express for Mobile Web Applications Copyright 2013 by Roel Hartman, Christian

More information

Spatial Inequalities

Spatial Inequalities Spatial Inequalities GeoJournal Library Volume 110 Managing Editor: Daniel Z. Sui, Columbus, Ohio, USA Founding Series Editor: Wolf Tietze, Helmstedt, Germany Editorial Board: Paul Claval, France Yehuda

More information

Human Rights in European Criminal Law

Human Rights in European Criminal Law Human Rights in European Criminal Law ThiS is a FM Blank Page Stefano Ruggeri Editor Human Rights in European Criminal Law New Developments in European Legislation and Case Law after the Lisbon Treaty

More information

Pro Linux System Administration. James Turnbull, Peter Lieverdink, Dennis Matotek

Pro Linux System Administration. James Turnbull, Peter Lieverdink, Dennis Matotek Pro Linux System Administration James Turnbull, Peter Lieverdink, Dennis Matotek Pro Linux System Administration Copyright 2009 by James Turnbull, Peter Lieverdink, Dennis Matotek All rights reserved.

More information

BEING AGILE YOUR ROADMAP TO SUCCESSFUL ADOPTION OF AGILE. Mario E. Moreira

BEING AGILE YOUR ROADMAP TO SUCCESSFUL ADOPTION OF AGILE. Mario E. Moreira BEING AGILE YOUR ROADMAP TO SUCCESSFUL ADOPTION OF AGILE Mario E. Moreira Being Agile: Your Roadmap to Successful Adoption of Agile Copyright 2013 by Mario E. Moreira This work is subject to copyright.

More information

From The Little SAS Book, Fifth Edition. Full book available for purchase here.

From The Little SAS Book, Fifth Edition. Full book available for purchase here. From The Little SAS Book, Fifth Edition. Full book available for purchase here. Acknowledgments ix Introducing SAS Software About This Book xi What s New xiv x Chapter 1 Getting Started Using SAS Software

More information

Essential Clinical Social Work Series

Essential Clinical Social Work Series Essential Clinical Social Work Series Series Editor Carol Tosone For further volumes: http://www.springer.com/series/8115 Judith B. Rosenberger Editor Relational Social Work Practice with Diverse Populations

More information

Real-World ASP.NET: Building a Content Management System

Real-World ASP.NET: Building a Content Management System Real-World ASP.NET: Building a Content Management System STEPHEN R. G. FRASER APress Media, LLC Real-World ASP.NET: Building a Content Management System Copyright 2002 by Stephen R. G. Fraser Originally

More information

SpringerBriefs in Criminology

SpringerBriefs in Criminology SpringerBriefs in Criminology More information about this series at http://www.springer.com/series/10159 Wesley G. Jennings Rolf Loeber Dustin A. Pardini Alex R. Piquero David P. Farrington Offending

More information

Firms in Open Source Software Development

Firms in Open Source Software Development Firms in Open Source Software Development Mario Schaarschmidt Firms in Open Source Software Development Managing Innovation Beyond Firm Boundaries Foreword by Prof. Dr. Harald von Kortzfleisch RESEARCH

More information

Beginning ASP.NET E-Commerce in C#

Beginning ASP.NET E-Commerce in C# Beginning ASP.NET E-Commerce in C# From Novice to Professional Cristian Darie and Karli Watson Beginning ASP.NET E-Commerce in C#: From Novice to Professional Copyright 2009 by Cristian Darie and Karli

More information

BIRT: A Field Guide to Reporting

BIRT: A Field Guide to Reporting BIRT: A Field Guide to Reporting x:.-. ^ 11 Diana Peh Alethea Hannemann Nola Hague AAddison-Wesley Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Parts

More information

Understanding Competitive Advantage

Understanding Competitive Advantage Understanding Competitive Advantage Fredrik Nilsson Birger Rapp Understanding Competitive Advantage The Importance of Strategic Congruence and Integrated Control With 44 Figures 4y Springer Professor Dr.

More information

Urban Wildlife Conservation

Urban Wildlife Conservation Urban Wildlife Conservation Robert A. McCleery Christopher E. Moorman M. Nils Peterson Editors Urban Wildlife Conservation Theory and Practice 1 3 Editors Robert A. McCleery Department of Wildlife Ecology

More information

Big-Data Analytics and Cloud Computing

Big-Data Analytics and Cloud Computing Big-Data Analytics and Cloud Computing Marcello Trovati Richard Hill Ashiq Anjum Shao Ying Zhu Lu Liu Editors Big-Data Analytics and Cloud Computing Theory, Algorithms and Applications 123 Editors Marcello

More information

Data Analysis in Management with SPSS Software

Data Analysis in Management with SPSS Software Data Analysis in Management with SPSS Software J.P. Verma Data Analysis in Management with SPSS Software J.P. Verma Research and Advanced Studies Lakshmibai National University of Physical Education Gwalior,

More information

Genitourinary Radiology: Male Genital Tract, Adrenal and Retroperitoneum

Genitourinary Radiology: Male Genital Tract, Adrenal and Retroperitoneum Genitourinary Radiology: Male Genital Tract, Adrenal and Retroperitoneum Vikram S. Dogra Gregory T. MacLennan Editors Ahmet Tuncay Turgut Anastasia Canacci Associate Editors Mehmet Ruhi Onur Assistant

More information

The Neuropsychology Toolkit

The Neuropsychology Toolkit The Neuropsychology Toolkit Richard L. Wanlass The Neuropsychology Toolkit Guidelines, Formats, and Language Richard L. Wanlass University of California, Davis, Medical Center Sacramento, CA, USA Richard.Wanlass@ucdmc.ucdavis.edu

More information

The Product Manager s Toolkit

The Product Manager s Toolkit The Product Manager s Toolkit Gabriel Steinhardt The Product Manager s Toolkit Methodologies, Processes and Tasks in High-Tech Product Management ISBN 978-3-642-04507-3 e-isbn 978-3-642-04508-0 DOI 10.1007/978-3-642-04508-0

More information

HUMAN RESOURCES MANAGEMENT FOR PUBLIC AND NONPROFIT ORGANIZATIONS

HUMAN RESOURCES MANAGEMENT FOR PUBLIC AND NONPROFIT ORGANIZATIONS HUMAN RESOURCES MANAGEMENT FOR PUBLIC AND NONPROFIT ORGANIZATIONS Essential Texts for Public and Nonprofit Leadership and Management The Handbook of Nonprofit Governance, by BoardSource Strategic Planning

More information

Schneps, Leila; Colmez, Coralie. Math on Trial : How Numbers Get Used and Abused in the Courtroom. New York, NY, USA: Basic Books, 2013. p i.

Schneps, Leila; Colmez, Coralie. Math on Trial : How Numbers Get Used and Abused in the Courtroom. New York, NY, USA: Basic Books, 2013. p i. New York, NY, USA: Basic Books, 2013. p i. http://site.ebrary.com/lib/mcgill/doc?id=10665296&ppg=2 New York, NY, USA: Basic Books, 2013. p ii. http://site.ebrary.com/lib/mcgill/doc?id=10665296&ppg=3 New

More information

Challenges and Opportunities in Health Care Management

Challenges and Opportunities in Health Care Management Challenges and Opportunities in Health Care Management . Sebastian Gurtner Katja Soyez Editors Challenges and Opportunities in Health Care Management Editors Sebastian Gurtner Research Group InnoTech4Health

More information

Graph Analysis and Visualization

Graph Analysis and Visualization Graph Analysis and Visualization Graph Analysis and Visualization DISCOVERING BUSINESS OPPORTUNITY IN LINKED DATA Richard Brath David Jonker Graph Analysis and Visualization: Discovering Business Opportunity

More information

Silverlight 4 Business Intelligence Software

Silverlight 4 Business Intelligence Software Silverlight 4 Business Intelligence Software Bart Czernicki Silverlight 4 Business Intelligence Software Copyright 2010 by Bart Czernicki All rights reserved. No part of this work may be reproduced or

More information

CRM Fundamentals. Scott Kostojohn Mathew Johnson Brian Paulen. www.it-ebooks.info

CRM Fundamentals. Scott Kostojohn Mathew Johnson Brian Paulen. www.it-ebooks.info CRM Fundamentals Scott Kostojohn Mathew Johnson Brian Paulen CRM Fundamentals Copyright 2011 by Scott Kostojohn, Mathew Johnson, and Brian Paulen All rights reserved. No part of this work may be reproduced

More information

Library and Information Sciences

Library and Information Sciences Library and Information Sciences Chuanfu Chen Ronald Larsen Editors Library and Information Sciences Trends and Research Editors Chuanfu Chen School of Information Management Wuhan University Wuhan China

More information

Stem Cell Biology and Regenerative Medicine

Stem Cell Biology and Regenerative Medicine Stem Cell Biology and Regenerative Medicine Series Editor Kursad Turksen, Ph.D. kursadturksen@gmail.com For further volumes: http://www.springer.com/series/7896 Tiziana A.L. Brevini Editor Stem Cells

More information

This document has been provided by the International Center for Not-for-Profit Law (ICNL).

This document has been provided by the International Center for Not-for-Profit Law (ICNL). This document has been provided by the International Center for Not-for-Profit Law (ICNL). ICNL is the leading source for information on the legal environment for civil society and public participation.

More information

Beginning Excel What-If Data Analysis Tools

Beginning Excel What-If Data Analysis Tools Beginning Excel What-If Data Analysis Tools Getting Started with Goal Seek, Data Tables, Scenarios, and Solver Paul Cornell Beginning Excel What-If Data Analysis Tools: Getting Started with Goal Seek,

More information

Sustainable Supply Chains

Sustainable Supply Chains Sustainable Supply Chains International Series in Operations Research & Management Science Volume 174 Series Editor: Frederick S. Hillier Stanford University, CA, USA Special Editorial Consultant: Camille

More information

Pediatric Board Study Guide

Pediatric Board Study Guide Pediatric Board Study Guide Editor Pediatric Board Study Guide A Last Minute Review Editor Department of Pediatrics Paul L Foster School of Medicine, Texas Tech, University Health Sciences Center El Paso

More information

Cisco UCS Director Payment Gateway Integration Guide, Release 4.1

Cisco UCS Director Payment Gateway Integration Guide, Release 4.1 First Published: April 16, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883

More information

Springer-Verlag Berlin Heidelberg GmbH

Springer-Verlag Berlin Heidelberg GmbH Information Systems Outsourcing Springer-Verlag Berlin Heidelberg GmbH Rudy Hirschheim Armin Heinzl. Jens Dibbern Editors Information Systems Outsourcing Enduring Themes, Emergent Patterns and Future Directions

More information

Create Cool Lumira Visualization Extensions with SAP Web IDE Dong Pan SAP PM and RIG Analytics Henry Kam Senior Product Manager, Developer Ecosystem

Create Cool Lumira Visualization Extensions with SAP Web IDE Dong Pan SAP PM and RIG Analytics Henry Kam Senior Product Manager, Developer Ecosystem Create Cool Lumira Visualization Extensions with SAP Web IDE Dong Pan SAP PM and RIG Analytics Henry Kam Senior Product Manager, Developer Ecosystem 2015 SAP SE or an SAP affiliate company. All rights

More information

SolarWinds Technical Reference

SolarWinds Technical Reference SolarWinds Technical Reference SolarWinds Orion Web-Based Reports SolarWinds Orion Web-Based Reports... 3 What s New... 3 Creating Reports in the Web Console... 4 Adding Content to Web Console Reports...

More information

Using SPSS, Chapter 2: Descriptive Statistics

Using SPSS, Chapter 2: Descriptive Statistics 1 Using SPSS, Chapter 2: Descriptive Statistics Chapters 2.1 & 2.2 Descriptive Statistics 2 Mean, Standard Deviation, Variance, Range, Minimum, Maximum 2 Mean, Median, Mode, Standard Deviation, Variance,

More information

Automatic Storage and Retrieval System Flexible Manufacturing System

Automatic Storage and Retrieval System Flexible Manufacturing System Mechatronics Automatic Storage and Retrieval System Flexible Manufacturing System Job Sheets - Courseware Sample 86694-F0 Order no.: 86694-30 First Edition Revision level: 06/2015 By the staff of Festo

More information

Colon Polyps and the Prevention of Colorectal Cancer

Colon Polyps and the Prevention of Colorectal Cancer Colon Polyps and the Prevention of Colorectal Cancer Omer Engin Editor Colon Polyps and the Prevention of Colorectal Cancer Editor Omer Engin Department of Surgery Izmir Buca Hospital Buca, Izmir Turkey

More information

NXT-G 1.0 & 2.0 NXT-G 1.0 & 2.0. Technology in Action. Covers. Covers LEGO MINDSTORMS NXT-G. Programming Guide. James Floyd Kelly Second Edition

NXT-G 1.0 & 2.0 NXT-G 1.0 & 2.0. Technology in Action. Covers. Covers LEGO MINDSTORMS NXT-G. Programming Guide. James Floyd Kelly Second Edition Covers Covers Technology in Action NXT-G 1.0 & 2.0 NXT-G 1.0 & 2.0 LEGO MINDSTORMS NXT-G Programming Guide Master the NXT-G language for programming LEGO MINDSTORMS robots. James Floyd Kelly Second Edition

More information

Statistics for Biology and Health

Statistics for Biology and Health Statistics for Biology and Health Series Editors M. Gail, K. Krickeberg, J.M. Samet, A. Tsiatis, W. Wong For further volumes: http://www.springer.com/series/2848 David G. Kleinbaum Mitchel Klein Survival

More information

6. MODIFICATIONS. Licensee may modify, adapt and create improvements to the SOFTWARE subject to the following conditions:

6. MODIFICATIONS. Licensee may modify, adapt and create improvements to the SOFTWARE subject to the following conditions: ACADIA UNIVERSITY Software License Agreement This Software License Agreement ("Agreement") is made and entered into this _ of 20, (the "Effective Date") by and between The Governors of Acadia University

More information

ORACLE CRM ON DEMAND DEVELOPMENT ADDENDUM TO THE ORACLE PARTNERNETWORK AGREEMENT

ORACLE CRM ON DEMAND DEVELOPMENT ADDENDUM TO THE ORACLE PARTNERNETWORK AGREEMENT ORACLE CRM ON DEMAND DEVELOPMENT ADDENDUM TO THE ORACLE PARTNERNETWORK AGREEMENT This Oracle CRM On Demand Development Addendum (the " CRM On Demand Addendum ") is between you ( Developer ) and the Oracle

More information

Solution Park Support for Visual Dashboards

Solution Park Support for Visual Dashboards Solution Park Support for Visual Dashboards CS Odessa corp. Contents What is a Dashboard?...4 CS Odessa Role...4 Live Objects Technology...5 Transforming Objects...5 Switching Object...5 Data Driven Objects...6

More information

FIRST STEPS WITH SCILAB

FIRST STEPS WITH SCILAB powered by FIRST STEPS WITH SCILAB The purpose of this tutorial is to get started using Scilab, by discovering the environment, the main features and some useful commands. Level This work is licensed under

More information

U.S. Department of Agriculture Rural Utilities Service

U.S. Department of Agriculture Rural Utilities Service According to the Paperwork Reduction Act of 1995, an agency may not conduct or sponsor, and a person is not required to respond to, a collection of information unless it displays a valid OMB control number.

More information

GETTING STARTED WITH R AND DATA ANALYSIS

GETTING STARTED WITH R AND DATA ANALYSIS GETTING STARTED WITH R AND DATA ANALYSIS [Learn R for effective data analysis] LEARN PRACTICAL SKILLS REQUIRED FOR VISUALIZING, TRANSFORMING, AND ANALYZING DATA IN R One day course for people who are just

More information

CA Nimsoft Monitor. Probe Guide for NT Event Log Monitor. ntevl v3.8 series

CA Nimsoft Monitor. Probe Guide for NT Event Log Monitor. ntevl v3.8 series CA Nimsoft Monitor Probe Guide for NT Event Log Monitor ntevl v3.8 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and

More information

SolarWinds Technical Reference

SolarWinds Technical Reference SolarWinds Technical Reference Best Practices for Troubleshooting NetFlow Introduction... 1 NetFlow Overview... 1 Troubleshooting NetFlow Service Status Issues... 3 Troubleshooting NetFlow Source Issues...

More information

6 th Annual EclipseCon Introduction to BIRT Report Development. John Ward

6 th Annual EclipseCon Introduction to BIRT Report Development. John Ward 6 th Annual EclipseCon Introduction to BIRT Report Development John Ward BIRT and Us Who am I? Who are you? Who am I? John Ward, BIRT user Independent BIRT Enthusiast Author: Practical Data Analysis and

More information

The MRI Study Guide for Technologists

The MRI Study Guide for Technologists The MRI Study Guide for Technologists Kenneth S. Meacham The MRI Study Guide for Technologists With 51 Illustrations Springer-Verlag New York Berlin Heidelberg London Paris Tokyo Hong Kong Barcelona Budapest

More information

Terms and Conditions

Terms and Conditions Terms and Conditions Website Use www.sweetpbakeshop.com Topco Associates, LLC, a Delaware limited liability company, headquartered at 150 Northwest Point Blvd., Elk Grove, IL 60007 ( Company, we or us

More information

An Oracle White Paper December 2011. Cloud Candidate Selection Tool: Guiding Cloud Adoption

An Oracle White Paper December 2011. Cloud Candidate Selection Tool: Guiding Cloud Adoption An Oracle White Paper December 2011 Cloud Candidate Selection Tool: Guiding Cloud Adoption Cloud Candidate Selection Tool: Guiding Cloud Adoption Executive Overview... 2 Introduction... 2 Tool Capabilities

More information

Websites & Copyright. INFORMATION SHEET G057v12 April 2014. info@copyright.org.au www.copyright.org.au

Websites & Copyright. INFORMATION SHEET G057v12 April 2014. info@copyright.org.au www.copyright.org.au INFORMATION SHEET G057v12 April 2014 Websites & Copyright This information sheet is for web developers, bloggers, website designers, startups, businesses and anyone interested in copyright issues relevant

More information

Adult Attachment in Clinical Social Work

Adult Attachment in Clinical Social Work Adult Attachment in Clinical Social Work Essential Clinical Social Work Series Series Editor: Carol Tosone For other titles published in this series, go to www.springer.com/series/8115 Susanne Bennett

More information

Ingo Hilgefort Advanced Data Visualization with SAP BusinessObjects Design Studio Session # 2686

Ingo Hilgefort Advanced Data Visualization with SAP BusinessObjects Design Studio Session # 2686 Ingo Hilgefort Advanced Data Visualization with SAP BusinessObjects Design Studio Session # 2686 Legal Disclaimer This presentation outlines our general product direction and should not be relied on in

More information

Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX

Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL,

More information

SolarWinds Technical Reference

SolarWinds Technical Reference SolarWinds Technical Reference Riverbed and SolarWinds WAN Optimization Introduction...3 Using the WAN Optimization Reports...3 Downloading and Saving Your Reports...3 Specifying Traffic Optimized Interfaces...3

More information

Master of Arts in Criminal Justice (MA CRJ) Master s Thesis Guidelines. Fall 2014

Master of Arts in Criminal Justice (MA CRJ) Master s Thesis Guidelines. Fall 2014 Master of Arts in Criminal Justice (MA CRJ) Master s Thesis Guidelines Fall 2014 The Criminal Justice Master s Program John Jay College of Criminal Justice The City University of New York Note. These guidelines

More information

Ignite Your Creative Ideas with Fast and Engaging Data Discovery

Ignite Your Creative Ideas with Fast and Engaging Data Discovery SAP Brief SAP BusinessObjects BI s SAP Crystal s SAP Lumira Objectives Ignite Your Creative Ideas with Fast and Engaging Data Discovery Tap into your data big and small Tap into your data big and small

More information

Marketing in Context

Marketing in Context Marketing in Context This Page Intentionally Left Blank MARKETING IN CONTEXT Setting the Scene Chris Hack ley Chris Hackley 2013 Softcover reprint of the hardcover 1st edition 2013 ISBN 978-1-137-29710-5

More information

ECDL / ICDL Spreadsheets Syllabus Version 5.0

ECDL / ICDL Spreadsheets Syllabus Version 5.0 ECDL / ICDL Spreadsheets Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Spreadsheets. The syllabus describes, through learning outcomes, the knowledge and skills that a

More information

ZIMPERIUM, INC. END USER LICENSE TERMS

ZIMPERIUM, INC. END USER LICENSE TERMS ZIMPERIUM, INC. END USER LICENSE TERMS THIS DOCUMENT IS A LEGAL CONTRACT. PLEASE READ IT CAREFULLY. These End User License Terms ( Terms ) govern your access to and use of the zanti and zips client- side

More information

WEBSITE TERMS & CONDITIONS. Last updated March 27, 2015

WEBSITE TERMS & CONDITIONS. Last updated March 27, 2015 WEBSITE TERMS & CONDITIONS Last updated March 27, 2015 1. Introduction and Acceptance of Terms & Conditions Running Away Enterprises, LLC, a Delaware limited liability company d/b/a Enmotive ( us, we,

More information

The Definitive Guide. Monitoring the Data Center, Virtual Environments, and the Cloud. Don Jones

The Definitive Guide. Monitoring the Data Center, Virtual Environments, and the Cloud. Don Jones The Definitive Guide tm To Monitoring the Data Center, Virtual Environments, and the Cloud Don Jones The Nimsoft Monitoring Solution SERVICE LEVEL MONITORING VISUALIZATION AND REPORTING PRIVATE CLOUDS»

More information

Web Site Hosting Service Agreement

Web Site Hosting Service Agreement Web Site Hosting Service Agreement Updated April, 2015 The following agreement is between Softext Publishing Inc. ( SOFTEXT ) of 954 1st Ave West, Owen Sound ON, Canada and You ( Client ). WHEREAS, SOFTEXT

More information

SQL Server Integration Services Design Patterns

SQL Server Integration Services Design Patterns SQL Server Integration Services Design Patterns Second Edition Andy Leonard Tim Mitchell Matt Masson Jessica Moss Michelle Ufford Apress* Contents J First-Edition Foreword About the Authors About the Technical

More information

Iris Sample Data Set. Basic Visualization Techniques: Charts, Graphs and Maps. Summary Statistics. Frequency and Mode

Iris Sample Data Set. Basic Visualization Techniques: Charts, Graphs and Maps. Summary Statistics. Frequency and Mode Iris Sample Data Set Basic Visualization Techniques: Charts, Graphs and Maps CS598 Information Visualization Spring 2010 Many of the exploratory data techniques are illustrated with the Iris Plant data

More information

TERMS AND CONDITIONS

TERMS AND CONDITIONS TERMS AND CONDITIONS These Terms and Conditions are applicable to the use of this website (the Website ), regardless of how You accessed it. You or any derivation thereof, as used herein refers to a user

More information

Aniyizhai Annamalai. Editor. Refugee Health Care. An Essential Medical Guide

Aniyizhai Annamalai. Editor. Refugee Health Care. An Essential Medical Guide Refugee Health Care Aniyizhai Annamalai Editor Refugee Health Care An Essential Medical Guide Editor Aniyizhai Annamalai, M.D. Yale University School of Medicine New Haven, CT, USA ISBN 978-1-4939-0270-5

More information

Ad-hoc Reporting Report Designer

Ad-hoc Reporting Report Designer Ad-hoc Reporting Report Designer AD- H O C R E P O R T D E S I G N E R M A N U A L 2012 NonProfit Technologies, Inc. All Rights Reserved. This document contains proprietary information which is protected

More information

HP JETADVANTAGE SECURITY MANAGER. Adding and Tracking Devices

HP JETADVANTAGE SECURITY MANAGER. Adding and Tracking Devices HP JETADVANTAGE SECURITY MANAGER Adding and Tracking Devices CONTENTS Overview... 2 General Description... 2 Detailed Description... 4 Resolve IP Address to Hostname... 4 Resolve Hostname/DNS Alias to

More information

Introduction to the Data Migration Framework (DMF) in Microsoft Dynamics WHITEPAPER

Introduction to the Data Migration Framework (DMF) in Microsoft Dynamics WHITEPAPER Introduction to the Data Migration Framework (DMF) in Microsoft Dynamics WHITEPAPER Junction Solutions documentation 2012 All material contained in this documentation is proprietary and confidential to

More information

ACCEPTABLE USE POLICY OF BROADVOX, INC; BROADVOX, LLC; WWW.BROADVOX.COM; WWW.BROADVOX.NET (COLLECTIVELY BROADVOX )

ACCEPTABLE USE POLICY OF BROADVOX, INC; BROADVOX, LLC; WWW.BROADVOX.COM; WWW.BROADVOX.NET (COLLECTIVELY BROADVOX ) ACCEPTABLE USE POLICY OF BROADVOX, INC; BROADVOX, LLC; WWW.BROADVOX.COM; WWW.BROADVOX.NET (COLLECTIVELY BROADVOX ) 1. ACCEPTANCE OF TERMS THROUGH USE This website (the Site ) provides you (the Customer

More information

CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler

CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler 1) Operating systems a) Windows b) Unix and Linux c) Macintosh 2) Data manipulation tools a) Text Editors b) Spreadsheets

More information

IBM Cognos Controller Version 10.2.0. New Features Guide

IBM Cognos Controller Version 10.2.0. New Features Guide IBM Cognos Controller Version 10.2.0 New Features Guide Note Before using this information and the product it supports, read the information in Notices on page 9. Product Information This document applies

More information

Effective Methods for Software and Systems Integration

Effective Methods for Software and Systems Integration Effective Methods for Software and Systems Integration Boyd L. Summers CRC Press Taylor & Francis Group 6000 Broken Sound Parkway NW, Suite 300 Boca Raton, FL 33487-2742 CRC Press is an imprint of Taylor

More information

HTML5 DESIGNING RICH INTERNET APPLICATIONS MATTHEW DAVID

HTML5 DESIGNING RICH INTERNET APPLICATIONS MATTHEW DAVID HTML5 HTML5 DESIGNING RICH INTERNET APPLICATIONS MATTHEW DAVID AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO Focal Press is an imprint of Elsevier

More information

PHYSICAL TESTING OF RUBBER

PHYSICAL TESTING OF RUBBER PHYSICAL TESTING OF RUBBER PHYSICAL TESTING OF RUBBER Roger Brown Springer Library of Congress Cataloging-in-Publication Data A CLP. Catalogue record for this book is available from the Library of Congress.

More information

Performance Testing Web 2.0

Performance Testing Web 2.0 Performance Testing Web 2.0 David Chadwick Rational Testing Evangelist dchadwick@us.ibm.com Dawn Peters Systems Engineer, IBM Rational petersda@us.ibm.com 2009 IBM Corporation WEB 2.0 What is it? 2 Web

More information

Secure Web Gateway 11.7 Upgrade Release Notes

Secure Web Gateway 11.7 Upgrade Release Notes Secure Web Gateway 11.7 Upgrade Release Notes August 2015 Trustwave is pleased to announce that the upgrade path for Secure Web Gateway to version 11.7 is now available. For more information on SWG 11.7,

More information

Nimsoft Monitor. dns_response Guide. v1.6 series

Nimsoft Monitor. dns_response Guide. v1.6 series Nimsoft Monitor dns_response Guide v1.6 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys

Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph Client: Brian Krzys June 17, 2014 Introduction Newmont Mining is a resource extraction company with a research and development

More information

BusinessObjects XI Release 2. Separated Values (CSV) Exporting

BusinessObjects XI Release 2. Separated Values (CSV) Exporting BusinessObjects XI Release 2 Separated Values (CSV) Exporting Overview Contents This document describes enhancements to the Separated Values (CSV) Export functionality available in BusinessObjects Enterprise

More information

Maximizing Performance and Scalability with IBM WebSphere

Maximizing Performance and Scalability with IBM WebSphere Maximizing Performance and Scalability with IBM WebSphere ADAM NEAT APress Media, LLC Maximizing Performance and Scalability with IBM WebSphere Copyright 2004 by Adam Neat Originally published by Apress

More information

RSA SecurID Software Token Security Best Practices Guide

RSA SecurID Software Token Security Best Practices Guide RSA SecurID Software Token Security Best Practices Guide Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com. Trademarks RSA, the RSA

More information

CA Workload Automation Agent for Microsoft SQL Server

CA Workload Automation Agent for Microsoft SQL Server CA Workload Automation Agent for Microsoft SQL Server Release Notes r11.3.1, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Job Status Guide 3.0

Job Status Guide 3.0 Job Status Guide 3.0 ii Copyrights and Trademark Notices Copyright 2011 Telestream, Inc. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, altered, or translated

More information