STAT10020: Exploratory Data Analysis

Size: px
Start display at page:

Download "STAT10020: Exploratory Data Analysis"

Transcription

1 STAT10020: Exploratory Data Analysis Statistical Programming with R Lab 1 Log in using your student number and password. Click on the start button and then click on Application Window. Choose the Mathematics and Statistics folder and then R v Doubleclick on the icon and wait for it to open. When R opens, it will look like this: We will do all our typing and see most of our results in this window. We will mainly be making objects and performing operations on them using functions. The simplest sort of object you will meet is a single number or string of letters. To create an object called number1 with the value 7, type number1 <- 7 And press enter. To see the value of the object called number1, type its name and press enter. You can make objects whose values are letters instead of numbers. To make an object called word1 with the value Word, type word1 <- Word

2 Notice that letters go inside quotation marks; numbers don t. Suppose you want an object called number2 whose value is two greater than number1. You have two choices. One is to type number2 <- number1 + 2 This makes R find the value you already gave to number1, add 2 to it, and store the result as an object called number2. You can also use a function the sum function. Type number2 <- sum(number1, 2) This asks R to take everything inside the brackets, perform the sum function on them (ie. add them up), and store the result as an object called number2. You can find more information on this function by typing help(sum) We aren t limited to working with one number or word at a time. Another type of object is a vector. A vector is just a list of words or numbers. If you want to make a vector containing the numbers you use a function called c. This function combines a list of objects into one vector. Type vector1 <- c(1, 3, 6) That is, take the three numbers in brackets (notice that they are separated by commas), perform the c function on them (i.e. turn them into a vector) and save the result as an object called vector1. You can find out more about this function by typing help(c) to view the help files. To see the vector, just type its name. You can use the c function on vectors as well as on numbers. If you want to add the values of number1 and number2 to the vector you just made, you can type vector2 <- c(vector1, number1, number2) This takes one vector with three numbers in it, and two more numbers, and puts them all together to make one vector with five numbers in it. Type vector2 to see your new vector. What if you want a vector with words instead of numbers? The c function can do that as well. Type

3 vector3 <- c( one, three, six, seven, nine ) This is just the same as making a vector with numbers in it, except that the words in the brackets are in quotation marks. Type vector3 to make sure that worked. The third type of object we will use is called a dataframe. A dataframe is like a matrix or a table. You can make one by putting two or more vectors together. The function to do this is called data.frame. data1 <- data.frame(vector2, vector3) makes an object called data1 which contains both vectors as columns. Type data1 to see what it looks like. Notice that the columns are headed with the names of the vectors, and the rows are numbered. You can find more information on this function by typing help(data.frame) Now we have some basic functions to work with, let s deal with an example.

4 A teacher has the following data available on five students: Name Exam 1 Mark Exam 2 Mark John Anne Terry Fred Maria We will begin by making a table in R with this data. To do that, we first make a column in R for each of the three variables. At the prompt, type studentname <- c( John, Anne, Terry, Fred, Maria ) and press enter. Notice that there are commas in between each name. The names are in quotation marks because they are made of letters, not numbers. This makes a single list of names in R. The list is called studentname. To check that it has worked, type studentname You should see the list of names printed in the window. Now we will do the same thing for Exam 1 and Exam 2: exam1 <- (92, 75, 98, 62, 79) Because these are numbers, there are no quotation marks. Make a third list of numbers called exam2 containing the marks for Exam 2. *Complete part A on your answer sheet* Now, we want to make one table with all this information in it. Type results <- data.frame(studentname, exam1, exam2) This makes a single table (which R calls a dataframe ) with three columns and five rows. To see what it looks like, type results Next, the teacher wants to find the average of the two exams for each student. So we need to make a fourth column in the results dataset containing this value for each student. Type: results$avg <- ((results$exam1 + results$exam2)/2)

5 Notice how we name columns by typing the name of the dataset, then a dollar sign, then the name of the column. Next, we will assign letter grades to the students. The bands are as follows: Type: < 50 D C B A results$grade <- cut(results$avg, breaks = c(0, 49, 69, 84, 100), labels = c("d", "C", "B", "A")) Notice how we are still naming columns with the dataset dollar sign column name method, and how the letters are inside quotation marks but the numbers are not. *Complete part B on your answer sheet* Next, we want to sort the data from highest mark to lowest mark. Type: results <- results[order(-results$avg),] What is going on here? Well, we are asking it to sort all of the data in results in order of the data in the column called average. Because R sorts in ascending order by default, we asked it to sort in the opposite order by putting a minus sign before results$avg. Lastly, suppose we want to print only the students names and letter grades. First, we make a new dataframe with only those two columns in it. Type results2 <- data.frame(results$studentname, results$grade) And then print it: results2 *Complete part C on your answer sheet*

6 STAT10020: Exploratory Data Analysis Answer Sheet: Lab 1 Name: Student Number: Today s Date: Part A What code creates the list of exam2 marks? Part B Who has a better grade, Maria or Terry? Part C Suppose you wanted to print out only the names and exam 1 marks of the students. What code would you type?

7

LMS User Manual LMS Grade Book NUST LMS lms.team@nust.edu.pk

LMS User Manual LMS Grade Book NUST LMS lms.team@nust.edu.pk LMS User Manual LMS Grade Book NUST LMS lms.team@nust.edu.pk Setting up LMS Grade book Setting up LMS gradebook involves followings main steps: 1. Create gradebook categories 2. Add grade items in grade

More information

Network License File. Program CD Workstation

Network License File. Program CD Workstation Setting up Network Licensing for Visual Water Designer These directions will provide a detailed description of how to set up and run the network license version of Visual Water Designer. A network license

More information

MS Excel Template Building and Mapping for Neat 5

MS Excel Template Building and Mapping for Neat 5 MS Excel Template Building and Mapping for Neat 5 Neat 5 provides the opportunity to export data directly from the Neat 5 program to an Excel template, entering in column information using receipts saved

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Data Director Create a New Answer Sheet

Data Director Create a New Answer Sheet Data Director Create a New Answer Sheet DataDirector allows you to create answer sheets for assessments. Your answer sheet may contain multiple question types. Once the Answer Sheet is created and saved,

More information

Creating an Excel Spreadsheet Report

Creating an Excel Spreadsheet Report www.bsasoftware.com Pervasive Building Department Creating an Excel Spreadsheet Report If you track multiple jurisdictions, separate totals may be given for each of them. Please note: Spreadsheets are

More information

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.

More information

Apple Mail Setup Guide (POP3)

Apple Mail Setup Guide (POP3) Versions Addressed: Mac OS X 10.4 (Tiger), 10.5 (Leopard), 10.6 (Snow Leopard) Document Updated: 9/23/2010 Copyright 2010 Smarsh, Inc. All rights Purpose: This document will assist the end user in configuring

More information

4. You must link at least one student before you can create a user profile for yourself.

4. You must link at least one student before you can create a user profile for yourself. PowerSchool Parent and Student Access Website 1. Sign into the Peace Wapiti PowerSchool Public Access Website at https://sis.pwsd76.ab.ca/public 2. Click Create Account 3. Fill in the information on the

More information

Fig. 1 Suitable data for a Crosstab Query.

Fig. 1 Suitable data for a Crosstab Query. Crosstab Queries A Crosstab Query is a special kind of query that summarizes data by plotting one field against one or more other fields. Crosstab Queries can handle large amounts of data with ease and

More information

Before you may use any database in Limnor, you need to create a database connection for it. Select Project menu, select Databases:

Before you may use any database in Limnor, you need to create a database connection for it. Select Project menu, select Databases: How to connect to Microsoft SQL Server Question: I have a personal version of Microsoft SQL Server. I tried to use Limnor with it and failed. I do not know what to type for the Server Name. I typed local,

More information

Community College of Rhode Island Budget Transfer Procedures

Community College of Rhode Island Budget Transfer Procedures Community College of Rhode Island Budget Transfer Procedures Banner Self Serve Budget Transfer Procedures From time to time, college departments may need to transfer Operating Budget funds from one account

More information

VDF Query User Manual

VDF Query User Manual VDF Query User Manual Page 1 of 25 Table of Contents Quick Start... 3 Security... 4 Main File:... 5 Query Title:... 6 Fields Tab... 7 Printed Fields... 8 Task buttons... 9 Expression... 10 Selection...

More information

Identity Finder Setup

Identity Finder Setup Identity Finder Information Sheet for MAC This document will walk you through how to install, scan, and secure any SI found on your computer, or storage devices using the Identity Finder Software. This

More information

Business Intelligence Overview. BW/BI Security. BW/BI Architecture. Business Explorer (BEx) BW/BI BEx Tools Overview. What is BEx?

Business Intelligence Overview. BW/BI Security. BW/BI Architecture. Business Explorer (BEx) BW/BI BEx Tools Overview. What is BEx? SAP Business Warehouse/Business Intelligence Reporting Business Explorer (BEx) Washington State HRMS Business Warehouse/Business Intelligence (BW/BI) BW/BI Power User Workshop Materials General Topics

More information

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email Financial.Reports@dartmouth.edu

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email Financial.Reports@dartmouth.edu IRA Pivot Table Review and Using Analyze to Modify Reports 1 What is a Pivot Table? A pivot table takes rows of detailed data (such as the lines in a downloadable table) and summarizes them at a higher

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new

More information

UW- Green Bay QuickBooks Accounts Receivable User Manual

UW- Green Bay QuickBooks Accounts Receivable User Manual UW- Green Bay QuickBooks Accounts Receivable User Manual Table of Contents Topic Page Number Logging into QuickBooks 2 Changing your password. 3 Creating Invoices. 4 Customer Entry/Search. 5-7 Entering

More information

Comparables Sales Price

Comparables Sales Price Chapter 486 Comparables Sales Price Introduction Appraisers often estimate the market value (current sales price) of a subject property from a group of comparable properties that have recently sold. Since

More information

How to Import Data into Microsoft Access

How to Import Data into Microsoft Access How to Import Data into Microsoft Access This tutorial demonstrates how to import an Excel file into an Access database. You can also follow these same steps to import other data tables into Access, such

More information

X1 Professional Client

X1 Professional Client X1 Professional Client What Will X1 Do For Me? X1 instantly locates any word in any email message, attachment, file or Outlook contact on your PC. Most search applications require you to type a search,

More information

Change Compensation for a Position or Employee

Change Compensation for a Position or Employee Change Compensation for a Position or Employee Employee Work Center Revised: April, 2014 Table of Contents: Log in to Employee Work Center... 3 Edit Compensation... 3 Request Compensation Change Screen...

More information

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at:

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at: TRIM: Web Tool Accessing TRIM Records through the Web The TRIM web tool is primarily aimed at providing access to records in the TRIM system. While it is possible to place records into TRIM or amend records

More information

Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1

Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1 Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1 A Turning Account is a unique identifier that is used to tie together all software accounts and response devices. A Turning Account is required

More information

GUIDE. To access reports in the Skyward Gradebook open the Gradebook Main Screen.

GUIDE. To access reports in the Skyward Gradebook open the Gradebook Main Screen. GUIDE FOR TEACHERS TABLE OF CONTENTS Accessing Reports and Printing Reports Customizing Reports Types of Reports To access reports in the Skyward Gradebook open the Gradebook Main Screen. 1. Click on the

More information

DataDirector-to-Illuminate Transition Guide

DataDirector-to-Illuminate Transition Guide Reports Pre-Built Reports DataDirector-to-Illuminate Transition Guide Pre-Built Reports Click on Reports and scroll down to the Pre-Built Reports section. Click the Reports tab and then click Pre-Built

More information

i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide

i>clicker v7 Gradebook Integration: Blackboard Learn Instructor Guide i>clicker v7 Gradebook Integration: Blackboard Learn July 2015 Table of Contents Overview... 3 Step 1: Prepare a Configured Version of i>clicker... 4 Step 2: Configure your i>clicker Software... 5 Step

More information

Building Queries in Microsoft Access 2007

Building Queries in Microsoft Access 2007 Building Queries in Microsoft Access 2007 Description In this class we will explore the purpose, types and uses of Queries. Learn to design a query to retrieve specific data using criteria and operators.

More information

Unit 10: Microsoft Access Queries

Unit 10: Microsoft Access Queries Microsoft Access Queries Unit 10: Microsoft Access Queries Introduction Queries are a fundamental means of accessing and displaying data from tables. Queries used to view, update, and analyze data in different

More information

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate. Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.

More information

TABLE OF CONTENTS. Do not click to Remember my password, so that unauthorized persons will not access your gradebook.

TABLE OF CONTENTS. Do not click to Remember my password, so that unauthorized persons will not access your gradebook. TABLE OF CONTENTS 1. Logging into etac 2. Creating a Short Cut on Your Desktop 3. Navigating Around Your Home Page 4. Taking Attendance 5. Printing a Class Roster with Columns 6. Grading Templates/Categories

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

March 2015 SOLARO Version 4.8

March 2015 SOLARO Version 4.8 SOLARO Guide for School Administrators March 2015 SOLARO Version 4.8 SOLARO Guide for School Administrators Contents Getting Started... 3 Managing Teacher accounts:... 5 Creating a Teacher Account... 5

More information

DropSend Getting Started Guide

DropSend Getting Started Guide DropSend Getting Started Guide DropSend Ltd. 2012 Step 1: How to send a file without registration If you want to quickly send a large file, you can do it from the homepage in just a couple of clicks. Here

More information

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual Lab Manual Databases Microsoft Access 1 Table of Contents Lab 1: Introduction to Microsoft Access... 3 Getting started... 3 Tables... 3 Primary Keys... 6 Field Properties... 7 Validation Rules... 11 Input

More information

Creating A Grade Sheet With Microsoft Excel

Creating A Grade Sheet With Microsoft Excel Creating A Grade Sheet With Microsoft Excel Microsoft Excel serves as an excellent tool for tracking grades in your course. But its power is not limited to its ability to organize information in rows and

More information

Creating Reports with Microsoft Dynamics AX SQL Reporting Services

Creating Reports with Microsoft Dynamics AX SQL Reporting Services Creating Reports with Microsoft Dynamics AX SQL Reporting Services. Table of Contents Lab 1: Building a Report... 1 Lab Objective... 1 Pre-Lab Setup... 1 Exercise 1: Familiarize Yourself with the Setup...

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

TRAINING MANUAL. Executing Reports. Formatting Options. Copyright 2004 University of San Diego. All rights reserved.

TRAINING MANUAL. Executing Reports. Formatting Options. Copyright 2004 University of San Diego. All rights reserved. TRAINING MANUAL Executing Reports Formatting Options Copyright 2004 by the University of San Diego. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or

More information

Microsoft Access Database

Microsoft Access Database 1 of 6 08-Jun-2010 12:38 Microsoft Access Database Introduction A Microsoft Access database is primarily a Windows file. It must have a location, also called a path, which indicates how the file can be

More information

How to Login Username Password:

How to Login Username Password: How to Login After navigating to the SelecTrucks ATTS Call Tracking & Support Site: www.selectrucksatts.com Select Corporate Link to login for Corporate owned Centers/Locations. Username: Your Email Address

More information

To access assessments, click the Assessments icon to be directed to the Find Assessments page.

To access assessments, click the Assessments icon to be directed to the Find Assessments page. About Assessments The Assessments section stores, displays, and reports summary and assessment data for test scores, proficiency levels, and results from state, local. and custom created tests. Assessments

More information

Add and Change Direct Deposit Elections

Add and Change Direct Deposit Elections Purpose and Overview The purpose of this quick guide is to help you create, add, update, and delete your payment election (direct deposit information) accounts in Workday. In addition, you can specify

More information

Using Folder Views Effectively in CCS HelpDesk

Using Folder Views Effectively in CCS HelpDesk Using Folder Views Effectively in CCS HelpDesk Crow Canyon Systems, Inc. (Note: There is extensive documentation on grouping, sorting, filtering and displaying folder items in the Microsoft Outlook Help,

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Ryerson Custom Reports. Guide for Users Updated on 21 December 2015

Ryerson Custom Reports. Guide for Users Updated on 21 December 2015 Updated on 21 December 2015 Contents Getting Help... iii Supported Browsers... iii... 1 Overview... 1 Retrieve an actuals report... 2 Retrieve an encumbrance report... 13 Retrieve an OPSEU salary report...

More information

Directions for using SPSS

Directions for using SPSS Directions for using SPSS Table of Contents Connecting and Working with Files 1. Accessing SPSS... 2 2. Transferring Files to N:\drive or your computer... 3 3. Importing Data from Another File Format...

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Harmony High School Teacher Training

Harmony High School Teacher Training Harmony High School Teacher Training Harmony High School Teacher Training 2 Logging into Harmony Harmony High School Teacher Training 1. Harmony is started by double clicking on the Harmony icon. 2. Harmony

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Database Applications Microsoft Access Lesson 4 Working with Queries Difference Between Queries and Filters Filters are temporary Filters are placed on data in a single table Queries are saved as individual

More information

How to use SURA in three simple steps:

How to use SURA in three simple steps: How to use SURA in three simple steps: Most of SURA s functionality can be accessed through these three steps. 1) Download SURA to your computer Go to the SU Downloads page to obtain the SURA utility.

More information

SMART Sync 2011. Windows operating systems. System administrator s guide

SMART Sync 2011. Windows operating systems. System administrator s guide SMART Sync 2011 Windows operating systems System administrator s guide Trademark notice SMART Sync, smarttech and the SMART logo are trademarks or registered trademarks of SMART Technologies ULC in the

More information

Chapter 5. Microsoft Access

Chapter 5. Microsoft Access Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,

More information

RIFIS Ad Hoc Reports

RIFIS Ad Hoc Reports RIFIS Ad Hoc Reports To retrieve the entire list of all Ad Hoc Reports, including the Base reports and any additional reports published to your Role, select Ad Hoc for the Type under Filter Report By and

More information

Computer Skills Microsoft Excel Creating Pie & Column Charts

Computer Skills Microsoft Excel Creating Pie & Column Charts Computer Skills Microsoft Excel Creating Pie & Column Charts In this exercise, we will learn how to display data using a pie chart and a column chart, color-code the charts, and label the charts. Part

More information

ServSafe California Food Handler: View Scores and Print Certificate of Achievement

ServSafe California Food Handler: View Scores and Print Certificate of Achievement ServSafe California Food Handler: View Scores and Print Certificate of Achievement To print your certificate of achievement or view your score, begin from www.servsafe.com/foodhandler and log in. 1. To

More information

EXCEL FINANCIAL USES

EXCEL FINANCIAL USES EXCEL FINANCIAL USES Table of Contents Page LESSON 1: FINANCIAL DOCUMENTS...1 Worksheet Design...1 Selecting a Template...2 Adding Data to a Template...3 Modifying Templates...3 Saving a New Workbook as

More information

Lab 14A: Using Task Manager and Event Viewer

Lab 14A: Using Task Manager and Event Viewer Lab 14A: Using Task Manager and Event Viewer Objectives After completing this lab, you will be able to:!" Monitor application performance by using Task Manager.!" Shut down applications by using Task Manager.!"

More information

Business Objects Enterprise version 4.1. Report Viewing

Business Objects Enterprise version 4.1. Report Viewing Business Objects Enterprise version 4.1 Note about Java: With earlier versions, the Java run-time was not needed for report viewing; but was needed for report writing. The default behavior in version 4.1

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008 Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD

More information

(GXFDWLRQ Backpack Manual 2007 LearningStation. All rights reserved. 9/21/2007

(GXFDWLRQ Backpack Manual 2007 LearningStation. All rights reserved. 9/21/2007 Backpack Manual 2007 LearningStation. All rights reserved. 9/21/2007 LearningStation, Inc. 8008 Corporate Center Drive Suite 210 Charlotte, NC 28226 704-926-5400 888-679-7058 LSCsupport@learningstation.com

More information

Web Site Customer Service

Web Site Customer Service Web Site Customer Service Copyright 2005-2006, 2010 NCS Pearson, Inc., a Pearson Education business. All rights reserved. Pearson, the Pearson VUE logo, and VUE are trademarks, in the U.S. and/or other

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe` Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A OwnCloud User Manual TO I Cafe` DATED 20 Sep 2014 User Manual Guid For Owncloud I. Accessing the owncloud Web Interface To access the owncloud

More information

Document Versions in ProjectWise

Document Versions in ProjectWise Document Versions in ProjectWise A useful feature of ProjectWise is version control of documents. A version is a read-only snapshot of a document. Maintaining the history of a document as edits are made

More information

Departmental Reporting in Microsoft Excel for Sage 50 Accounts

Departmental Reporting in Microsoft Excel for Sage 50 Accounts al Reporting in Microsoft Excel for Sage 50 Accounts 1 Introduction Whilst Sage 50 Accounts does already offer integrated Excel reporting functionality, we found that it was often missing the flexibility

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

Microsoft Excel Tips & Tricks

Microsoft Excel Tips & Tricks Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying

More information

Running a Cognos Report

Running a Cognos Report Running a Cognos Report Do I have access? Cognos is only accessible to users with a licence. If you require access but are unable to log in, please contact the IT Service Centre. It is recommended that

More information

Global Knowledge European Remote Labs Accessing the Remote Labs portal from Windows

Global Knowledge European Remote Labs Accessing the Remote Labs portal from Windows Global Knowledge European Remote Labs Accessing the Remote Labs portal from Windows Summary The Remote Labs Access Portal can be accessed from a variety of operating systems and clients. This guide demonstrates

More information

CONTENTS MANUFACTURERS GUIDE FOR PUBLIC USERS

CONTENTS MANUFACTURERS GUIDE FOR PUBLIC USERS OPA DATABASE GUIDE FOR PUBLIC USERS - MARCH 2013 VERSION 5.0 CONTENTS Manufacturers 1 Manufacturers 1 Registering a Manufacturer 2 Search Manufacturers 3 Advanced Search Options 3 Searching for Manufacturers

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Download and Install the Citrix Receiver for Mac/Linux

Download and Install the Citrix Receiver for Mac/Linux Download and Install the Citrix Receiver for Mac/Linux NOTE: WOW can only be used with Internet Explorer for Windows. To accommodate WOW customers using Mac or Linux computers, a Citrix solution was developed

More information

Databases in Microsoft Access David M. Marcovitz, Ph.D.

Databases in Microsoft Access David M. Marcovitz, Ph.D. Databases in Microsoft Access David M. Marcovitz, Ph.D. Introduction Schools have been using integrated programs, such as Microsoft Works and Claris/AppleWorks, for many years to fulfill word processing,

More information

The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created.

The software shall provide the necessary tools to allow a user to create a Dashboard based on the queries created. IWS BI Dashboard Template User Guide Introduction This document describes the features of the Dashboard Template application, and contains a manual the user can follow to use the application, connecting

More information

Google Apps for Sharing Folders and Collecting Assignments

Google Apps for Sharing Folders and Collecting Assignments Google Apps for Sharing Folders and Collecting Assignments The Google Drive is cloud (online) storage space, and it is also where you create and work with Google Docs, Sheets, Slides, etc. Create a Folder

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab. - Dashboard Pipeline tab

This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab. - Dashboard Pipeline tab This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab - Dashboard Pipeline tab - My Meetings Dashlet - My Calls Dashlet - My Calendar Dashlet - My

More information

Directions for Using TIES 2.0 One-Clicks and the Grade Level Facilitators Excel Template

Directions for Using TIES 2.0 One-Clicks and the Grade Level Facilitators Excel Template Directions for Using TIES 2.0 One-Clicks and the Grade Level Facilitators Excel Template This set of directions assumes you know how to log in to the TIES website and open Excel. If you need support in

More information

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9 TABLE OF CONTENTS Query 4 Lesson Objectives 4 Review 5 Smart Query 5 Create a Smart Query 6 Create a Smart Query Definition from an Ad-hoc Query 9 Query Functions and Features 13 Summarize Output Fields

More information

Using Microsoft Access Databases

Using Microsoft Access Databases Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database

More information

NextGen EHR: Clinic Password and User Preferences Setup in PROD

NextGen EHR: Clinic Password and User Preferences Setup in PROD NextGen EHR: Clinic Password and User Preferences Setup in PROD FALL 2014 1 Click the NextGen icon on your desktop. The NextGen Application Window opens. FALL 2014 2 Click the icon for EHR. The EHR login

More information

Host Excellence. Client Helpdesk. Version 1.0

Host Excellence. Client Helpdesk. Version 1.0 Host Excellence Client Helpdesk Version 1.0 1 Table of Contents 1 Accessing the Helpdesk... 3 2 What Is A Helpdesk Ticket?... 3 3 Ticket Overview... 3 3.1 Ticket Status... 4 3.2 Ticket Category... 4 3.3

More information

10.3.1.8 Lab - Configure a Windows 7 Firewall

10.3.1.8 Lab - Configure a Windows 7 Firewall 5.0 10.3.1.8 Lab - Configure a Windows 7 Firewall Print and complete this lab. In this lab, you will explore the Windows 7 Firewall and configure some advanced settings. Recommended Equipment Step 1 Two

More information

DataDirector Getting Started

DataDirector Getting Started DataDirector Getting Started LOG-IN 1. Login to the DataDirector website: https://www.achievedata.com/yourdistrictname 2. Enter your User Name and Password. 3. You may need to select the site and level

More information

Creating and Modifying PVAAS Accounts for Your School District

Creating and Modifying PVAAS Accounts for Your School District District Admin Account Holder Has full access to all reports for the district level and below (ex: access to all district, school, and student reports) Has the ability to create the following types of

More information

Banner Training Manual: Department Chairs

Banner Training Manual: Department Chairs Banner Training Manual: Department Chairs Tom Boegel Version 0.2 October 2007 Introduction to Banner... 4 Accessing Banner... 5 Accounts... 5 INB System... 5 Logging In... 5 Forgotten Passwords... 6 Banner

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

Using the NuView Employee Self-Service Module Time Attendance / Time Entry. Introduction. Logging In

Using the NuView Employee Self-Service Module Time Attendance / Time Entry. Introduction. Logging In Using the NuView Employee Self-Service Module Time Attendance / Time Entry Introduction The hourly employee self-service time entry process is changing. As Cort-web is phased out, NuView will be implemented

More information

Application Purpose: Application Description:

Application Purpose: Application Description: AIM User Documentation Application Purpose: The Assessment Information Management System (AIM) is designed to help academic programs and support units to record their assessment plans which consist of

More information

Turbo Lister Listing Activity Quick Start Guide

Turbo Lister Listing Activity Quick Start Guide Turbo Lister Listing Activity Quick Start Guide ebay Inc. Date: April, 2007 Version: 1.1 2 ebay File Exchange Catalog Listing Template Instructions Document History Version Date 1.0 January, 2007 1.1 April,

More information

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

More information

Time Clock Import Setup & Use

Time Clock Import Setup & Use Time Clock Import Setup & Use Document # Product Module Category CenterPoint Payroll Processes (How To) This document outlines how to setup and use of the Time Clock Import within CenterPoint Payroll.

More information

Cisco WebEx Training Center

Cisco WebEx Training Center Cisco WebEx Training Center User Guide Training Center 5.17 Copyright 1997 2010 Cisco and/or its affiliates. All rights reserved. WEBEX, CISCO, Cisco WebEx, the CISCO logo, and the Cisco WebEx logo are

More information

THE CHILDREN S HEALTH NETWORK CONTRACTING TOOL TRAINING MANUAL

THE CHILDREN S HEALTH NETWORK CONTRACTING TOOL TRAINING MANUAL THE CHILDREN S HEALTH NETWORK CONTRACTING TOOL TRAINING MANUAL 1 TCHN CONTRACTING TOOL TABLE OF CONTENTS 2 Overview 3 Step by Step Instructions 3 Logging In 4 The Main Menu Options 5 Creating Custom Lists

More information

Using the Medical Language Specialist Client Application

Using the Medical Language Specialist Client Application Page 1 Using the MLSClient Application April 20, 2008 Using the Medical Language Specialist Client Application April 20, 2008 Prepared by: WebChartMD P.O. Box 6154 Johnson City, TN 37602 877-302-9263 Page

More information

Excel 2003: Ringtones Task

Excel 2003: Ringtones Task Excel 2003: Ringtones Task 1. Open up a blank spreadsheet 2. Save the spreadsheet to your area and call it Ringtones.xls 3. Add the data as shown here, making sure you keep to the cells as shown Make sure

More information