Data Analytics and Business Intelligence (8696/8697)
|
|
|
- Lynn Payne
- 10 years ago
- Views:
Transcription
1 http: // togaware. com Copyright 2014, 1/34 Data Analytics and Business Intelligence (8696/8697) Introducing and Interacting with R [email protected] Chief Data Scientist Australian Taxation Office Adjunct Professor, Australian National University Adjunct Professor, University of Canberra Fellow, Institute of Analytics Professionals of Australia [email protected]
2 R Tool Suite http: // togaware. com Copyright 2014, 3/34 Overview 1 R Tool Suite 2 RStudio 3 Introduction to R 4 Knitting
3 R Tool Suite The Power of Free/Libre and Open Source Software http: // togaware. com Copyright 2014, 4/34 Tools Ubuntu GNU/Linux operating system Feature rich toolkit, up-to-date, easy to install, FLOSS RStudio Easy to use integrated development environment, FLOSS Powerful alternative is Emacs (Speaks Statistics), FLOSS R Statistical Software Language Extensive, powerful, thousands of contributors, FLOSS KnitR and L A TEX Produce beautiful documents, easily reproducible, FLOSS
4 R Tool Suite Ubuntu http: // togaware. com Copyright 2014, 5/34 Using Ubuntu Desktop Operating System (GNU/Linux) Replacing Windows and OSX The GNU Tool Suite based on Unix significant heritage Multiple specialised single task tools, working well together Compared to single application trying to do it all Powerful data processing from the command line: grep, awk, head, tail, wc, sed, perl, python, most, diff, make, paste, join, patch,... For interacting with R start up RStudio from the Dash
5 RStudio http: // togaware. com Copyright 2014, 6/34 Overview 1 R Tool Suite 2 RStudio 3 Introduction to R 4 Knitting
6 RStudio Interface http: // togaware. com Copyright 2014, 7/34 RStudio The Default Three Panels
7 RStudio Interface http: // togaware. com Copyright 2014, 8/34 RStudio With R Script File Editor Panel
8 Introduction to R http: // togaware. com Copyright 2014, [email protected] 9/34 Overview 1 R Tool Suite 2 RStudio 3 Introduction to R 4 Knitting
9 Introduction to R Simple Plots http: // togaware. com Copyright 2014, [email protected] 10/34 Scatterplot R Code Our first little bit of R code: Load a couple of packages into the R library library(rattle) # Provides the weather dataset library(ggplot2) # Provides the qplot() function Then produce a quick plot using qplot() ds <- weather qplot(mintemp, MaxTemp, data=ds) Your turn: give it a go.
10 Introduction to R Simple Plots Scatterplot Plot MinTemp MaxTemp http: // togaware. com Copyright 2014, [email protected] 11/34
11 Introduction to R Simple Plots http: // togaware. com Copyright 2014, [email protected] 12/34 Scatterplot RStudio
12 Introduction to R Installing Packages http: // togaware. com Copyright 2014, [email protected] 13/34 Missing Packages Tools Install Packages...
13 Introduction to R Installing Packages http: // togaware. com Copyright 2014, [email protected] 14/34 RStudio Installing ggplot2
14 Introduction to R RStudio Shortcuts http: // togaware. com Copyright 2014, [email protected] 15/34 RStudio Keyboard Shortcuts These will become very useful! Editor: Ctrl-Enter will send the line of code to the R console Ctrl-2 will move the cursor to the Console Console: UpArrow will cycle through previous commands Ctrl-UpArrow will search previous commands Tab will complete function names and list the arguments Ctrl-1 will move the cursor to the Editor Your turn: try them out.
15 Introduction to R Basic R Commands http: // togaware. com Copyright 2014, [email protected] 16/34 Basic R library(rattle) head(weather) # Load the weather dataset. # First 6 observations of the dataset. ## Date Location MinTemp MaxTemp Rainfall Evapora... ## Canberra ## Canberra ## Canberra str(weather) # Struncture of the variables in the dataset. ## 'data.frame': 366 obs. of 24 variables: ## $ Date : Date, format: " " " ## $ Location : Factor w/ 49 levels "Adelaide","Alba... ## $ MinTemp : num
16 Introduction to R Basic R Commands http: // togaware. com Copyright 2014, [email protected] 17/34 Basic R summary(weather) # Univariate summary of the variables. ## Date Location MinTemp... ## Min. : Canberra :366 Min. : ## 1st Qu.: Adelaide : 0 1st Qu.: ## Median : Albany : 0 Median : ## Mean : Albury : 0 Mean : ## 3rd Qu.: AliceSprings : 0 3rd Qu.: ## Max. : BadgerysCreek: 0 Max. : ## (Other) : 0... ## Rainfall Evaporation Sunshine WindGust... ## Min. : 0.00 Min. : 0.20 Min. : 0.00 NW :... ## 1st Qu.: st Qu.: st Qu.: 5.95 NNW :... ## Median : 0.00 Median : 4.20 Median : 8.60 E :... ## Mean : 1.43 Mean : 4.52 Mean : 7.91 WNW :... ## 3rd Qu.: rd Qu.: rd Qu.:10.50 ENE :......
17 Introduction to R Visualising Data Visual Summaries Add A Little Colour qplot(humidity3pm, Pressure3pm, colour=raintomorrow, data=ds) Humidity3pm Pressure3pm RainTomorrow No Yes http: // togaware. com Copyright 2014, [email protected] 18/34
18 Introduction to R Visualising Data Visual Summaries Careful with Categorics qplot(windgustdir, Pressure3pm, data=ds) N NNE NE ENE E ESE SE SSE S SSW SW WSW W WNW NW NNW NA WindGustDir Pressure3pm http: // togaware. com Copyright 2014, [email protected] 19/34
19 Introduction to R Visualising Data Visual Summaries Add A Little Jitter qplot(windgustdir, Pressure3pm, data=ds, geom="jitter") N NNE NE ENE E ESE SE SSE S SSW SW WSW W WNW NW NNW NA WindGustDir Pressure3pm http: // togaware. com Copyright 2014, [email protected] 20/34
20 Introduction to R Visualising Data Visual Summaries And Some Colour qplot(windgustdir, Pressure3pm, data=ds, colour=windgustdir, geom="jitter") N NNE NE ENE E ESE SE SSE S SSW SW WSW W WNW NW NNW NA WindGustDir Pressure3pm http: // togaware. com Copyright 2014, [email protected] 21/34
21 Introduction to R http: // togaware. com Copyright 2014, [email protected] 22/34 Help Getting Help Precede Command with?
22 Knitting http: // togaware. com Copyright 2014, 23/34 Overview 1 R Tool Suite 2 RStudio 3 Introduction to R 4 Knitting
23 Knitting Our First KnitR Document http: // togaware. com Copyright 2014, 24/34 Create a KnitR Document: New R Sweave
24 Knitting Our First KnitR Document http: // togaware. com Copyright 2014, 25/34 Setup KnitR We wish to use KnitR rather than the older Sweave processor In RStudio we can configure the options to use knitr: Select Tools Options Choose the Sweave group Choose knitr for Weave Rnw files using: The remaining defaults should be okay Click Apply and then OK
25 Knitting Our First KnitR Document http: // togaware. com Copyright 2014, 26/34 Simple KnitR Document Insert the following into your new KnitR document: \title{sample KnitR Document} \author{graham Williams} \maketitle \section*{my First Section} This is some text that is automatically typeset by the LaTeX processor to produce well formatted quality output as PDF. Your turn Click Compile PDF to view the result.
26 Knitting Our First KnitR Document http: // togaware. com Copyright 2014, 27/34 Simple KnitR Document
27 Knitting Our First KnitR Document http: // togaware. com Copyright 2014, 28/34 Simple KnitR Document Resulting PDF Result of Compile PDF
28 Knitting Including R Commands in KnitR http: // togaware. com Copyright 2014, [email protected] 29/34 KnitR: Add R Commands R code can be used to generate results into the document: <<echo=false, message=false>>= library(rattle) # Provides the weather dataset library(ggplot2) # Provides the qplot() function ds <- weather qplot(mintemp, MaxTemp, Your turn Click Compile PDF to view the result.
29 Knitting Including R Commands in KnitR http: // togaware. com Copyright 2014, [email protected] 30/34 KnitR Document With R Code
30 Knitting Including R Commands in KnitR http: // togaware. com Copyright 2014, [email protected] 31/34 Simple KnitR Document PDF with Plot Result of Compile PDF
31 Knitting Basics Cheat Sheet http: // togaware. com Copyright 2014, 32/34 LaTeX Basics \subsection*{...} \subsubsection*{...} \textbf{...} \textit{...} \begin{itemize} \item... \item... \end{itemize} % Introduce a Sub Section % Introduce a Sub Sub Section % Bold font % Italic font % A bullet list Plus an extensive collection of other markup and capabilities.
32 Knitting Basics Cheat Sheet http: // togaware. com Copyright 2014, 33/34 KnitR Basics echo=false eval=true results="hide" fig.width=10 fig.height=8 # Do not display the R code # Evaluate the R code # Hide the results of the R commands # Extend figure width from 7 to 10 inches # Extend figure height from 7 to 8 inches out.width="0.8\\textwidth" out.height="0.5\\textheight" # Fit figure 80% page width # Fit figure 50% page height Plus an extensive collection of other options.
33 That Is All Folks Time For Questions http: // togaware. com Copyright 2014, 34/34 Thank You Question Time This document, sourced from IntroRL.Rnw revision 430, was processed by KnitR version 1.6 of and took 2.2 seconds to process. It was generated by gjw on nyx running Ubuntu LTS with Intel(R) Xeon(R) CPU 2.67GHz having 4 cores and 12.3GB of RAM. It completed the processing :16:46.
How To Understand Data Mining In R And Rattle
http: // togaware. com Copyright 2014, [email protected] 1/40 Data Analytics and Business Intelligence (8696/8697) Introducing Data Science with R and Rattle [email protected] Chief
1 R: A Language for Data Mining. 2 Data Mining, Rattle, and R. 3 Loading, Cleaning, Exploring Data in Rattle. 4 Descriptive Data Mining
A Data Mining Workshop Excavating Knowledge from Data Introducing Data Mining using R [email protected] Data Scientist Australian Taxation Office Adjunct Professor, Australian National University
Data Science with R. Introducing Data Mining with Rattle and R. [email protected]
http: // togaware. com Copyright 2013, [email protected] 1/35 Data Science with R Introducing Data Mining with Rattle and R [email protected] Senior Director and Chief Data Miner,
Data Science with R Ensemble of Decision Trees
Data Science with R Ensemble of Decision Trees [email protected] 3rd August 2014 Visit http://handsondatascience.com/ for more Chapters. The concept of building multiple decision trees to produce
Hands-On Data Science with R Dealing with Big Data. [email protected]. 27th November 2014 DRAFT
Hands-On Data Science with R Dealing with Big Data [email protected] 27th November 2014 Visit http://handsondatascience.com/ for more Chapters. In this module we explore how to load larger datasets
Hands-On Data Science with R Exploring Data with GGPlot2. [email protected]. 22nd May 2015 DRAFT
Hands-On Data Science with R Exploring Data with GGPlot2 [email protected] 22nd May 215 Visit http://handsondatascience.com/ for more Chapters. The ggplot2 (Wickham and Chang, 215) package implements
Getting Started with R and RStudio 1
Getting Started with R and RStudio 1 1 What is R? R is a system for statistical computation and graphics. It is the statistical system that is used in Mathematics 241, Engineering Statistics, for the following
Dolphin Dynamics. Document Configuration: Email HTML Editor
Dolphin Dynamics Document Configuration: Email HTML Editor Document Amendment History Date Issue number and reason Author 24/2/12 Document created Melanie Esprit Copyright 2012 Dolphin Dynamics Ltd. The
Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3
Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org
Chapter 2: Basics on computers and digital information coding. A.A. 2012-2013 Information Technology and Arts Organizations
Chapter 2: Basics on computers and digital information coding Information Technology and Arts Organizations 1 Syllabus (1/3) 1. Introduction on Information Technologies (IT) and Cultural Heritage (CH)
Data Analytics and Business Intelligence (8696/8697)
http: // togaware. com Copyright 2014, [email protected] 1/39 Data Analytics and Business Intelligence (8696/8697) Introducing Data Mining [email protected] Chief Data Scientist Australian
Writing reproducible reports
Writing reproducible reports knitr with R Markdown Karl Broman Biostatistics & Medical Informatics, UW Madison kbroman.org github.com/kbroman @kwbroman Course web: kbroman.org/tools4rr Statisticians write
MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11
MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5
Ansur Test Executive. Users Manual
Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About
StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started
StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started Contents StrikeRisk v6.0 Introduction 1/1 1 Installing StrikeRisk System requirements Installing StrikeRisk Installation troubleshooting
Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500
Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...
Guide to Installing BBL Crystal MIND on Windows 7
Guide to Installing BBL Crystal MIND on Windows 7 Introduction The BBL Crystal MIND software can not be directly installed on the Microsoft Windows 7 platform, however it can be installed and run via XP
Hands-On Lab: WSUS. Lab Manual Expediting WSUS Service for XP Embedded OS
Lab Manual Expediting WSUS Service for XP Embedded OS Summary In this lab, you will learn how to deploy the security update to your XP Pro or XP embedded images. You will also learn how to prepare the
Introduction to OCR in Revu
Introduction to OCR in Revu Optical Character Recognition (OCR), or text recognition, translates the text in scanned PDF documents into searchable text. Once OCR has been run on a scanned PDF, you can
Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...
2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17
Getting Started With Author-it
Getting Started With Author-it Prepared 2 February, 2012 Copyright 1996-2011 Author-it Software Corporation Ltd. All rights reserved Due to continued product development, this information may change without
Rational Rational ClearQuest
Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Before using this information, be
Object systems available in R. Why use classes? Information hiding. Statistics 771. R Object Systems Managing R Projects Creating R Packages
Object systems available in R Statistics 771 R Object Systems Managing R Projects Creating R Packages Douglas Bates R has two object systems available, known informally as the S3 and the S4 systems. S3
Wise Package Studio 8.0 MR1 Release Notes
Wise Package Studio 8.0 MR1 Release Notes Wise Package Studio 8.0 MR1 Release Notes The software described in this book is furnished under a license agreement and may be used only in accordance with the
Web Ambassador Training on the CMS
Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create
System Requirements Table of contents
Table of contents 1 Introduction... 2 2 Knoa Agent... 2 2.1 System Requirements...2 2.2 Environment Requirements...4 3 Knoa Server Architecture...4 3.1 Knoa Server Components... 4 3.2 Server Hardware Setup...5
Tutorial 0A Programming on the command line
Tutorial 0A Programming on the command line Operating systems User Software Program 1 Program 2 Program n Operating System Hardware CPU Memory Disk Screen Keyboard Mouse 2 Operating systems Microsoft Apple
Creating Custom Crystal Reports Tutorial
Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,
Network Detective Client Connector
Network Detective Copyright 2014 RapidFire Tools, Inc. All Rights Reserved. v20140801 Overview The Network Detective data collectors can be run via command line so that you can run the scans on a scheduled
WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc.
WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Software
User's Guide. Using RFDBManager. For 433 MHz / 2.4 GHz RF. Version 1.23.01
User's Guide Using RFDBManager For 433 MHz / 2.4 GHz RF Version 1.23.01 Copyright Notice Copyright 2005 Syntech Information Company Limited. All rights reserved The software contains proprietary information
FLAMESTOP ADDRESSABLE SOFTWARE INSTALLATION MANUAL FOR PFS200 & PFSIFP8 FIRE PANELS
FLAMESTOP ADDRESSABLE SOFTWARE INSTALLATION MANUAL FOR PFS200 & PFSIFP8 FIRE PANELS (HOW TO LOAD THE SOFTWARE ONTO YOUR COMPUTER) 1 1. To begin installation, Insert the Flamestop PFS Sofware installation
Dreamweaver. Introduction to Editing Web Pages
Dreamweaver Introduction to Editing Web Pages WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 INTRODUCTION TO DREAMWEAVER... 1 Document Window 3 Toolbar 3 Insert Panel 4 Properties Panel
1 Using CWEB with Microsoft Visual C++ CWEB INTRODUCTION 1
1 Using CWEB with Microsoft Visual C++ CWEB INTRODUCTION 1 1. CWEB Introduction. The literate programming technique is described by Donald Knuth in Literate Programming and The CWEB System for Structured
TIBCO Spotfire Automation Services 6.5. User s Manual
TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO
Ortelia Space Builder User Manual
Ortelia Space Builder User Manual http://ortelia.com 1 Table of Contents Introducing Ortelia Space Builder... 2 System Requirements... 3 1. Operating system:... 3 2. Hardware:... 3 Minimum Graphics card
HOW TO PAGE A DOCUMENT IN MICROSOFT WORD
1 HOW TO PAGE A DOCUMENT IN MICROSOFT WORD 1 PAGING A WHOLE DOCUMENT FROM 1 TO Z (Including the first page) 1.1 Arabic Numbers (a) Click the Insert tab. (b) Go to the Header & Footer Section and click
Interactive Applications for Modeling and Analysis with Shiny
Interactive Applications for Modeling and Analysis with Shiny Presenter: Nicole Bishop Cindy Fryer, Paul Guill NASA GSFC Code 405 August 26, 2015 Introduction RStudio/Shiny offers quick and easy ways to
Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4
CMS Editor How-To Saving work in the CMS... 2 Edit an existing page... 2 Create a new page... 4 Create a side bar section... 4 Upload an image and add to your page... 5 Add an existing image to a Page...
Korosi Monitoring System (KMS) Software Manual
PT. KOROSI SPECINDO Corrosion Monitoring System Eng. Doc. No.: KS-MNL-KMS Korosi Monitoring System (KMS) Software Manual Revision Date Prepared Approved Description 0 23/05/2008 ES JH Issued for approval
BI 4.1 Quick Start Java User s Guide
BI 4.1 Quick Start Java User s Guide BI 4.1 Quick Start Guide... 1 Introduction... 4 Logging in... 4 Home Screen... 5 Documents... 6 Preferences... 8 Web Intelligence... 12 Create a New Web Intelligence
Code::Block manual. for CS101x course. Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076.
Code::Block manual for CS101x course Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076. April 9, 2014 Contents 1 Introduction 1 1.1 Code::Blocks...........................................
Managing Your Desktop with Exposé, Spaces, and Other Tools
CHAPTER Managing Your Desktop with Exposé, Spaces, and Other Tools In this chapter Taking Control of Your Desktop 266 Managing Open Windows with Exposé 266 Creating, Using, and Managing Spaces 269 Mac
OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher
OPERATION MANUAL MV-410RGB Layout Editor Version 2.1- higher Table of Contents 1. Setup... 1 1-1. Overview... 1 1-2. System Requirements... 1 1-3. Operation Flow... 1 1-4. Installing MV-410RGB Layout
PC Program User s Guide (01.01.05) 1. Connecting the PC. 2. Installation and Start-up. 3. Programming
Work Off-Line Set up a new database or modify a previously saved database (without being connected to the telephone system). This helps minimize on-site programming time. Work On-Line (connected directly
InfoView User s Guide. BusinessObjects Enterprise XI Release 2
BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,
Avigilon Control Center Server User Guide
Avigilon Control Center Server User Guide Version 4.10 PDF-SERVER-D-Rev1 Copyright 2011 Avigilon. All rights reserved. The information presented is subject to change without notice. No copying, distribution,
Umbraco v4 Editors Manual
Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...
MYOB EXO System Requirement Guidelines. 30 April 2014 Version 2.7
MYOB EXO System Requirement Guidelines 30 April 2014 Version 2.7 Contents 1 System Requirements 4 1.1 Overview 4 1.2 Server Requirements 4 1.2.1 Server Requirements (excluding terminal server) 4 1.2.2
WYSIWYG Tips and FAQ
WYSIWYG Tips and FAQ Version 1.0 WYSIWYG: What you see is what you get. This is an abbreviation for the type of editor Acalog uses. You will layout your content in the editor, and when you hit preview,
Excel 2007: Basics Learning Guide
Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This
NAS 249 Virtual Machine Configuration with VirtualBox
NAS 249 Virtual Machine Configuration with VirtualBox Configure and run Virtual Machines on ASUSTOR Portal with VirtualBox A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you
How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment?
Author Janice Hong Version 1.0.0 Date Mar. 2014 Page 1/56 How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment? Application Note The 32-bit operating system
Creating a universe on Hive with Hortonworks HDP 2.0
Creating a universe on Hive with Hortonworks HDP 2.0 Learn how to create an SAP BusinessObjects Universe on top of Apache Hive 2 using the Hortonworks HDP 2.0 distribution Author(s): Company: Ajay Singh
WYSIWYG Editor in Detail
WYSIWYG Editor in Detail 1. Print prints contents of the Content window 2. Find And Replace opens the Find and Replace dialogue box 3. Cut removes selected content to clipboard (requires a selection) 4.
Chapter 4 Displaying and Describing Categorical Data
Chapter 4 Displaying and Describing Categorical Data Chapter Goals Learning Objectives This chapter presents three basic techniques for summarizing categorical data. After completing this chapter you should
Windows 10: A Beginner s Guide
Windows 10: A Beginner s Guide Copyright 2014 Conceptual Kings. All are rights reserved. This book or any portion thereof may not be reproduced or used in any manner whatsoever without the express written
Contents. Hardware Configuration... 27 Uninstalling Shortcuts Black...29
Contents Getting Started...1 Check your Computer meets the Minimum Requirements... 1 Ensure your Computer is Running in Normal Sized Fonts... 7 Ensure your Regional Settings are Correct... 9 Reboot your
Graphic Generation Tool Installation Instructions Code No. LIT-12011685 Software Release 1.3 Issued December 5, 2014
Code No. LIT-12011685 Software Release 1.3 Issued December 5, 2014 Refer to the QuickLIT website for the most up-to-date version of this document. Introduction...2 Related Documentation...2 Prerequisites...2
Foxit Reader Deployment and Configuration
Copyright 2004-2016 Foxit Software Incorporated. All Rights Reserved. No part of this document can be reproduced, transferred, distributed or stored in any format without the prior written permission of
14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë
14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected
Sharperlight 3.0 Sample Dashboard
Sharperlight 3.0 Sample Dashboard www.sharperlight.com [email protected] Sharperlight 3.0 Sample Dashboard Published by philight Software International Pty Ltd All other copyrights and trademarks are
Introduction to RStudio
Introduction to RStudio (v 1.3) Oscar Torres-Reyna [email protected] August 2013 http://dss.princeton.edu/training/ Introduction RStudio allows the user to run R in a more user-friendly environment.
UNICORN 6.4. Administration and Technical Manual
UNICORN 6.4 Administration and Technical Manual Page intentionally left blank Table of Contents Table of Contents 1 Introduction... 1.1 Administrator functions overview... 1.2 Network terms and concepts...
Parallels Panel. Parallels Small Business Panel 10.2: User's Guide. Revision 1.0
Parallels Panel Parallels Small Business Panel 10.2: User's Guide Revision 1.0 Copyright Notice ISBN: N/A Parallels 660 SW 39 th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax:
OneStop Reporting 3.7 Installation Guide. Updated: 2013-01-31
OneStop Reporting 3.7 Installation Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents System Requirements... 1 Obtaining the Software... 2 Obtaining Your
Imprint. ecodms Version: 14.08 (krusty) Manual Build Number: 20 Language: Copyright 2016: ecodms GmbH Salierallee 18a 52066 Aachen Germany
Imprint ecodms Version: 14.08 (krusty) Manual Build Number: 20 Language: EN Copyright 2016: ecodms GmbH Salierallee 18a 52066 Aachen Germany Website: www.ecodms.de email: [email protected] Phone: 0049 241
User Guide. User Guide Title Page Page i
User Guide User Guide Title Page Page i Table of Contents Welcome 1 Welcome to Avvo Websites 1 Getting Started 2 Accessing your Avvo Website Dashboard 2 Dashboard Features 3 Screen Options 4 Submitting
Table of Contents. 2009 Radiant Systems, Inc. All rights reserved. iii
Installation Guide Table of Contents Introduction...1 System requirements...3 CounterPoint SQL Server...3 Workstations...3 Software updates...5 Microsoft SQL Server...7 SQL Server 2005 Express Edition...7
Email at Bradford - Outlook
This document provides guidance for staff using Office 365 with Microsoft Outlook 2010 for email at the University of Bradford. The University of Bradford retains copyright for this material, which may
Snagit 12. Installing Snagit on Remote Desktop. Version 12.2.2. December 2014 2014 TechSmith Corporation
12 Installing Snagit on Remote Desktop Services Version 12.2.2 December 2014 2014 TechSmith Corporation All rights reserved This manual, as well as the software described in it, is furnished under license
Remote Control 5.4 Setup Guide
Remote Control 5.4 Setup Guide A remote control solution designed for Network Administrators Copyright 2014, IntelliAdmin, LLC Revision 5/15/2014 http://www.intelliadmin.com Page 1 Table of Contents Quick
13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES
LESSON 13 Managing Devices OBJECTIVES After completing this lesson, you will be able to: 1. Open System Properties. 2. Use Device Manager. 3. Understand hardware profiles. 4. Set performance options. Estimated
Welcome to the new Sage 50 Accounts
Welcome to the new Sage 50 Accounts What s new Easy install guide Getting started For more support, visit the Sage 50 Accounts Help Centre: sage.co.uk/new50accounts Contents New and improved features
USER MANUAL FOR. autocue.com
USER MANUAL FOR WINDOWS autocue.com Contents Install the QStart software Registering QStart Using your Starter Series Prompter Prompt output Dual screens Enable a prompt monitor Change the size Change
Credit Card Processing Installation Instructions
Credit Card Processing Installation Instructions NOTE: Before using these instructions you must have a TERMINAL ID and a NAM ID number. To obtain these numbers, complete and fax the Heartland Agreement
Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator
Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun ([email protected]) Sudha Piddaparti ([email protected]) Objective In this
Data exploration with Microsoft Excel: analysing more than one variable
Data exploration with Microsoft Excel: analysing more than one variable Contents 1 Introduction... 1 2 Comparing different groups or different variables... 2 3 Exploring the association between categorical
Sage Accountants Business Cloud EasyEditor Quick Start Guide
Sage Accountants Business Cloud EasyEditor Quick Start Guide VERSION 1.0 September 2013 Contents Introduction 3 Overview of the interface 4 Working with elements 6 Adding and moving elements 7 Resizing
MicroStrategy Analytics Express User Guide
MicroStrategy Analytics Express User Guide Analyzing Data with MicroStrategy Analytics Express Version: 4.0 Document Number: 09770040 CONTENTS 1. Getting Started with MicroStrategy Analytics Express Introduction...
Basic Excel Handbook
2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...
How To Use Excel 2010 On Windows 7 (Windows 7) On A Pc Or Mac) With A Microsoft Powerbook (Windows Xp) On Your Computer Or Macintosh (Windows) On Windows Xp (Windows 2007) On Microsoft Excel 2010
ISBN 978-1-921780-70-7 CREATE AND PRODUCE SPREADSHEETS BSBITU202A/BSBITU304A Excel 2010 Supporting BSBITU202A Create and Use Spreadsheets and BSBITU304A Produce Spreadsheets in the Business Services Training
GUIDELINES FOR PREPARING POSTERS USING POWERPOINT PRESENTATION SOFTWARE
Society for the Teaching of Psychology (APA Division 2) OFFICE OF TEACHING RESOURCES IN PSYCHOLOGY (OTRP) Department of Psychology, Georgia Southern University, P. O. Box 8041, Statesboro, GA 30460-8041
Trax Attendance Manager Full Installation (Windows XP, 32 bit Windows Vista, or 32 bit Windows 7)
Trax Attendance Manager Full Installation (Windows XP, 32 bit Windows Vista, or 32 bit Windows 7) NOTE: There are separate instructions for 64 bit Windows Vista, 64 bit Windows 7, and clients in Canada.
Working with the new enudge responsive email styles
Working with the new enudge responsive email styles This tutorial assumes that you have added one of the mobile responsive colour styles to your email campaign contents. To add an enudge email style to
NJCU WEBSITE TRAINING MANUAL
NJCU WEBSITE TRAINING MANUAL Submit Support Requests to: http://web.njcu.edu/its/websupport/ (Login with your GothicNet Username and Password.) Table of Contents NJCU WEBSITE TRAINING: Content Contributors...
Data Science with R Cluster Analysis
Data Science with R Cluster Analysis [email protected] 22nd June 2014 Visit http://onepager.togaware.com/ for more OnePageR s. We focus on the unsupervised method of cluster analysis in this
2006-2011, SHAPE Services www.shapeservices.com
RDM+ Remote Desktop for Mobiles For Java-powered phones and Symbian OS devices 1. Installing RDM+ Client on a phone... 2 Internet connection... 2 2. Registration and trial... 3 3. Address book... 3 4.
OPTOFORCE DATA VISUALIZATION 3D
U S E R G U I D E - O D V 3 D D o c u m e n t V e r s i o n : 1. 1 B E N E F I T S S Y S T E M R E Q U I R E M E N T S Analog data visualization Force vector representation 2D and 3D plot Data Logging
A Guide To Using. Box-Office 2000. Version 2. By Nortech Software. The main booking screen
A Guide To Using Box-Office 2000 Version 2 By Nortech Software The main booking screen Contents Features 4 Event Bookings...4 Ticket Book Printing & Layouts...4 Installation 5 Requirements...5 Software
A series Metric (cm) Imperial (inch)
Poster Creation PowerPoint for Posters PowerPoint is well known as a presentation support application. However, it can also be used to create academic posters as it is a format that many people are already
Excel 2007 A Beginners Guide
Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on
PuTTY/Cygwin Tutorial. By Ben Meister Written for CS 23, Winter 2007
PuTTY/Cygwin Tutorial By Ben Meister Written for CS 23, Winter 2007 This tutorial will show you how to set up and use PuTTY to connect to CS Department computers using SSH, and how to install and use the
DEPLOYING A VISUAL BASIC.NET APPLICATION
C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment
