R and Rstudio: Getting Started (Day 0 Tutorial)

Size: px
Start display at page:

Download "R and Rstudio: Getting Started (Day 0 Tutorial)"

Transcription

1 R and Rstudio: Getting Started (Day 0 Tutorial) Data Use in the Natural Sciences SCIE4401 Atakelty Hailu February 23, Introduction This unit is taught with R, a software for statistical computing and graphics development. The base R software includes a large number of methods (functions or procedures) for data manipulation, statistical computations and statistical tests and a lot more. Its capabilities can easily be extended by installing add-on packages written by others. You can also add your own methods to implement specialized techniques. You will see that R is commonly described as a programming language and software environment for statistical computing and graphical visualisation. This description better reflects the fact that R is more than a standard application software (such as GenStat or Eviews) and that it combines the strenghts of both tailor-made software and general computer programming languages. R has been around for over two decades and is very well documented. And there is a vast network of servers known as CRAN (Comprehensive R Archive Network) mirror sites that it can be downloaded from. See R is platform independent, meaning that the R scripts you write work in the same way whether you are using a Windows, a Unix/Linux or a Mac/iOS operating system. R can be used on its own. However, it is more productive and less frustrating to work with a user-friendly front end such as Rstudio, which is an integrated programming environment (IDE). An IDE is menu driven and makes the use of R easy for beginners and others, reducing frustration and enhancing productivity. In SCIE4401, we will be using the Rstudio IDE. Below you will find information on R/Rstudio installation, a description of the Rstudio environment as well as exercises that will help you familiarise yourself with that IDE (Section 2), and a set of online resources that will help you learn about R so that you are ready for the second day of tutorials and subsequent sessions (Section 3). It is important that you check, before the tutorials, that you are able to log on to the computers in the lab. In the past, there have always been one or two students who were not able to do that at the start of the semester. If you are in the same situation, contact IT and try to get the problem sorted out as soon as you can. If you 1

2 are not able to log on and are not sure that your access problem will be sorted out for the tutorial, make every effort to bring your own laptop to the lab. The laptop would be useful, especially if it has R and Rstudio already installed (see below for advice on how to do the installations). 1.1 Installing R/Rstudio Both R and Rstudio have been installed in the labs where the tutorials are to be held. To launch Rstudio in those labs, try to access it via the Start Menu\All Programs\Statistical analysis\rstudio menu choice sequence. 1 Rstudio will give you an R console. Therefore, you do not need to launch R directly. Beyond the labs, you might find it useful to have your own installation of R and Rstudio on your personal computer/laptop. To install R, please go the R-project website at click on the CRAN link, choose an Australian mirror site to download the software. Once R is installed on your computer, you can download and install the desktop version of Rstudio from the developer s site at The learning curve With good and sustained effort, it is easy to learn R. Start learning early in the semesteer and build your knowledge gradually. In particular, it is useful for you to learn as much as you can about Rstudio and basic R commands before the tutorials for Day 1. And there are a large number of resources that you can use to climb up the learning curve. These come in the form of the information and exercices provided in the unit, help pages that are part of the installed software as well as tutorials and other information sources on the web (including the R project search engine (Rseek) at The key, therefore, is to learn how to look for answers, i.e. to learn how to learn well. If you are a bit confused or feel you are working too hard at the beginning, try to remember that the benefits of learning R/Rstudio do not end with the semester. You are investing in a software that you can use to produce high quality research outputs in your future work. Previous experience in this unit shows that many of the students who were completely clueless when they started become good users of R/Rstudio by the end of the semester. 2 Using Rstudio When Rstudio is launched, you get a graphical user interface (gui) that has the following four default panes or sections inside: (1) the Source pane: This is the section where R scripts (commands or source code) are displayed. In the figure below, the source pane is displaying lines of code (and comments in between), all highlighted in blue. 1 Note that in previous semesters, this sequence was different: Start Menu \All Programs\Applications - Coursework \Agricultural and Resource Economics\RStudio 2

3 (2) the R console: This pane is exactly what you would have if you were running R on its own, i.e. a command prompt for interacting with R. Any commands written directly into the R console can be executed by hitting the return key. Commands executed from the source pane are sent down to the R console for execution. (3) the Workspace/Histroy pane: R (and Rstudio) keep a history of command execution and this list is of commands is in the History tab of this pane. The Workspace tab provides a list of objects (variables and data objects) that are in the workspace. This is a good place to check if an object (e.g. a data frame or a vector) does indeed exist in the workpace. (4) the Plots/Files... pane: This section has several tabs. The Plots tab is where any plots created are displayed. This tab also allows you to navigate through a list of plots and also to export them into different image formats (for use in reporting) or to just copy the plot into the clipboard and then paste it directly into your a Word file. The Files tab shows a list of the files and directories in the current working directory. Note that the working directory is what R/Rstudio uses as the default directory to look for files or to write files, and this directory is shown in blue above the list of files/directories. A common problem among beginners is not knowing what this working directory is and wether the file to be read is where R is looking for it. The working directory can be set through the Set Working Directory command under the Session menu in Rstudio. If a new project is being set up, the working directory can be specified as part of the set up. It can also be reset by using the setwd() command directly in the R Console. The are other tabs in the pane explore to find out more. Figure 1: Rstudio and its four panes 3

4 2.1 Explore R studio Set a working directory Whenever you work on the computer, it is likely that at some stage you will need to write out data into a file or to read in data from a file. To avoid confusion, organize your files using a sensible directory structure and useful names for your files (and directories). For example, as suggested in the diagram below, you could create a SCIE4401 directory in your home folder to store all materials related to the unit. Then create a subdirectory called Day0 for the first day materials. If you are not creating a project with its own directory as suggested below, make this Day0 directory your working directory. You choose your working subdirectory by going through the Session menu in R studio. At the end, check the displayed working directory in the Files tab of the Plots/Files pane to be sure that it is what you expected. If not, set your working directory properly Create a project You do not need to create a project. But it can be useful. A project is a good way to organize your work and to quickly switch between different tasks in Rstudio. For the first days exercises, for example, you could create a project called R and Rstudio. To do this, click on the File > New Project > New Directory menu sequence, choose the Day1 directory for the parent folder and then create the project R and Rstudio under it (this project would have its own subdirectory with the same name). Finally, open a file that will hold your R commands or source code. Click on File in Rstudio top menu and create an R script file (you can call this test.r). The new file and the file path to it should now be visible in the Files tab listing (If they are not, refresh the file listing in the Plots/Files pane). 4

5 Figure 2: Directory structure for Day 1 5

6 2.1.3 Learning more about R studio Useful documentation is available at the Rstudio website: org/docs/. Explore the material on the following topics: 1. Working in the Console 2. Editing and Executing Code 3. Command History Testing the R/Rstudio environment Run some R commands to get a feel for how things work. You can do this by typing the commands in your new test.r script (source code) file and then executing the lines. You could also directly type the commads on the R Console and execute them. The first option is recommended as you would have copies of all the commands you tried out in a file that you can reuse later. Let s get started! 1. What is the value of the constant pi? > pi [1] What is the square of 9? > 9^2 [1] Calculate the square root of 2 and store it in a variable called t1. And print t1. > t1 = sqrt(2) > t1 [1] > #or > print(t1) [1] Take a random draw from the standard normal distribution and store it in the variable xi. However, to avoid having to type xi to examine the result, put the whole command in parentheses so that the variable is generated, assigned to xi and then displayed for you to see. > ( xi = rnorm(1) ) [1]

7 > print(xi) [1] Take a random draw of 100 values from the standard normal distribution and store it in the vector x. Calculate the mean of these random draws and store it in a variable (scalar) called xbar. (Let the values be displayed as they are generated.) > ( x = rnorm(100) ) [1] [7] [13] [19] [25] [31] [37] [43] [49] [55] [61] [67] [73] [79] [85] [91] [97] > ( xbar = mean(x)) [1] Generate summary statistics for the vector x. > summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max Generate a histogram of x, with golden colours. > hist(x,col="gold") 7

8 Histogram of x Frequency x 8. Generate a boxplot of x. > boxplot(x, col="gray")

9 2.1.5 Reusing commands Note that Rstudio keeps track of the commands that you have executed. The list can be viewed by clicking on the History tab in the Workspace/History pane (top/right section of screen). Commands from the history listing can be inserted into the source code or sent down to the R console for execution. The history feature is especially useful if you are trying out different commands by typing directly into the R console. Once you have found a sequence of commands that works for you, you can go to the History pane, highlight those commands and then store them in your source code (script). If this does not make much sense on the first day, ignore this feature. 3 Learn R On the first day, you should attempt to familiarise yourself with R and the resources available to support your learning. Some are listed below. (A) Online R Tutorial 1: Start today and, over the coming week, work your way through the top third (chapters 1 to 6) of Kelly Black s tutorial at covering the following topics: 1. Input methods (How do you create variables inside R?): Variables can be created inside R either through direct assignment (e.g. a = 3 or a <- 3) or by reading values from a file, e.g. a comma separated spreadsheet file (CSV file), where the file might be on your local drive or on the web (e.g. heisenberg <- read.csv(" simple.csv"). Do section 1 in the tutorial to learn about both methods. 2. Data types (What are the different classes of variables?): The key types are Numbers (numeric data types), strings, factors, logical (TRUE/FALSE) values. The data set you work on commonly comes in the form of a table that has different variables (columns). In R, these are usually read into a data frame. The section in the tutorial also discusses data tables, which can have multiple dimensions. Data frames are commonly used and useful to know about. For example, when you read in a CVS file using R s read.csv command, the values are automatically stored in a data frame. Use the class command to find out the type of a data object (e.g. class(heisenberg)). 3. Basic operations (How do you carry out arithematic and other operations on variables, vectors and data frames?). Find out how you add, multiply, exponentiate, take logs, etc. and how you generate the minimum, maximum, mean and other summary statistics for a vector or for all the columns of a data frame simultaneously using the summary command. 4. Probability distributions (How do you generate random values, calculate the probability of a value, etc.?) The tutorial shows you how to work with some of the most commonly used distributions, the standard normal and t-distributions. For example, try to find out what 9

10 percentage of women in the US would be taller than 69.5 inches if the height of US women is normally distributed with a mean and a standard deviation of 64.1 and 2.75 inches, respectively. (Use the pnorm function to find the answer to this.) 5. Plot generation (How do you visualise data using plots?) Learn to generate strip charts, histograms, box plots, scatter plots, etc. Also learn how to generate chart & axes titles and how to enhance the impact of your plots by using colours. (B) Online R Tutorial 2: Use the interactive tutorial Try R at tryr.codeschool.com to accomplish the following: 1. Learn how to create and access variables, how to call R functions and how to access R s help functionality (chapter 1). 2. Learn how to create, access (using indices or names) and modify vectors; how to plot vector values; how to operate on one or more vectors; how to plot vectors; how to deal with Not Available or NA values when operating on vectors, e.g. removing NA values from a summation operation using the na.rm=true option in a call to the sum function (chapter 2). 3. Go through chapter 3 of the interactive tutorial to learn: how to create matrices through direct assignment or by re-shaping a vector; how to access values within a matrix one-by-one or in sections; and also how to visualise data in a matrix (or table) using contours, perspective plots and heat maps. 4. Create summary statistics for your data set (mean, median, standard deviation) and visualise the raw data along with some additional values (chapter 4). 5. In chapter 5, learn how to work with factor data types to group your observations into categories and how to use factors to plot your data. 6. Learn about what data frames are and the different ways of accessing values or columns inside data frames; how to read in (or load) data frames using read.csv and the more general read.table commands; and how to merge two columns (chapter 6). (C) Explore Tom Short s R reference card at doc/contrib/short-refcard.pdf (D) Reading/Practice: Skim through the first two (electronic) chapters of Applied Econometrics with R by Christian Kleiber & Achim Zeileis, You can access this book online through the UWA library. The AER package that accompanies the book is installed in the labs; you can load it up using the library(aer) command in the R Console. (E) Rseek: Check out the Rseek search engine at This is an engine that would throw up a lot of possibly useful links. It also shows you how extensively documented R is. The key is to learn how to get to the answer quickly. That requires patience and some experience. 10

Getting Started with R and RStudio 1

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

More information

Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller

Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller Most of you want to use R to analyze data. However, while R does have a data editor, other programs such as excel are often better

More information

GeoGebra Statistics and Probability

GeoGebra Statistics and Probability GeoGebra Statistics and Probability Project Maths Development Team 2013 www.projectmaths.ie Page 1 of 24 Index Activity Topic Page 1 Introduction GeoGebra Statistics 3 2 To calculate the Sum, Mean, Count,

More information

How to Use the H-ITT Analyzer Version 2.4.4

How to Use the H-ITT Analyzer Version 2.4.4 How to Use the H-ITT Analyzer Version 2.4.4 I. Preparing to Use Analyzer: Adding Your Class II. Introduction to the Analyzer Interface III. Sync Your Class Roster in Analyzer IV. Update Your Class Roster

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

Introduction to RStudio

Introduction to RStudio Introduction to RStudio (v 1.3) Oscar Torres-Reyna otorres@princeton.edu August 2013 http://dss.princeton.edu/training/ Introduction RStudio allows the user to run R in a more user-friendly environment.

More information

The Reporting Console

The Reporting Console Chapter 1 The Reporting Console This chapter provides a tour of the WebTrends Reporting Console and describes how you can use it to view WebTrends reports. It also provides information about how to customize

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

Understanding BEx Query Designer: Part-2 Structures, Selections and Formulas

Understanding BEx Query Designer: Part-2 Structures, Selections and Formulas Understanding BEx Query Designer: Part-2 Structures, Selections and Formulas Applies to: SAP NetWeaver BW. Summary This document is the second installment of a 6 part Query Designer Training guide for

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

CHARTS AND GRAPHS INTRODUCTION USING SPSS TO DRAW GRAPHS SPSS GRAPH OPTIONS CAG08

CHARTS AND GRAPHS INTRODUCTION USING SPSS TO DRAW GRAPHS SPSS GRAPH OPTIONS CAG08 CHARTS AND GRAPHS INTRODUCTION SPSS and Excel each contain a number of options for producing what are sometimes known as business graphics - i.e. statistical charts and diagrams. This handout explores

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Eclipse installation, configuration and operation

Eclipse installation, configuration and operation Eclipse installation, configuration and operation This document aims to walk through the procedures to setup eclipse on different platforms for java programming and to load in the course libraries for

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

FileNet System Manager Dashboard Help

FileNet System Manager Dashboard Help FileNet System Manager Dashboard Help Release 3.5.0 June 2005 FileNet is a registered trademark of FileNet Corporation. All other products and brand names are trademarks or registered trademarks of their

More information

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial

Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Excel file for use with this tutorial Tutor1Data.xlsx File Location http://faculty.ung.edu/kmelton/data/tutor1data.xlsx Introduction:

More information

Using R for Windows and Macintosh

Using R for Windows and Macintosh 2010 Using R for Windows and Macintosh R is the most commonly used statistical package among researchers in Statistics. It is freely distributed open source software. For detailed information about downloading

More information

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5 Physics 161 FREE FALL Introduction This experiment is designed to study the motion of an object that is accelerated by the force of gravity. It also serves as an introduction to the data analysis capabilities

More information

Asset Track Getting Started Guide. An Introduction to Asset Track

Asset Track Getting Started Guide. An Introduction to Asset Track Asset Track Getting Started Guide An Introduction to Asset Track Contents Introducing Asset Track... 3 Overview... 3 A Quick Start... 6 Quick Start Option 1... 6 Getting to Configuration... 7 Changing

More information

A Short Introduction to Eviews

A Short Introduction to Eviews A Short Introduction to Eviews Note You are responsible to get familiar with Eviews as soon as possible. All homeworks are likely to contain questions for which you will need to use this software package.

More information

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

Tutorial 2 Online and offline Ship Visualization tool Table of Contents

Tutorial 2 Online and offline Ship Visualization tool Table of Contents Tutorial 2 Online and offline Ship Visualization tool Table of Contents 1.Tutorial objective...2 1.1.Standard that will be used over this document...2 2. The online tool...2 2.1.View all records...3 2.2.Search

More information

PowerWorld Simulator

PowerWorld Simulator PowerWorld Simulator Quick Start Guide 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com http://www.powerworld.com Purpose This quick start guide is intended to

More information

BI 4.1 Quick Start Guide

BI 4.1 Quick Start Guide BI 4.1 Quick Start Guide BI 4.1 Quick Start Guide... 1 Introduction... 4 Logging in... 4 Home Screen... 5 Documents... 6 Preferences... 8 Setting Up Preferences to Display Public Folders... 10 Web Intelligence...

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

This activity will show you how to draw graphs of algebraic functions in Excel.

This activity will show you how to draw graphs of algebraic functions in Excel. This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the

More information

Introduction to the TI Connect 4.0 software...1. Using TI DeviceExplorer...7. Compatibility with graphing calculators...9

Introduction to the TI Connect 4.0 software...1. Using TI DeviceExplorer...7. Compatibility with graphing calculators...9 Contents Introduction to the TI Connect 4.0 software...1 The TI Connect window... 1 Software tools on the Home screen... 2 Opening and closing the TI Connect software... 4 Using Send To TI Device... 4

More information

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that

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

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

SPSS Introduction. Yi Li

SPSS Introduction. Yi Li SPSS Introduction Yi Li Note: The report is based on the websites below http://glimo.vub.ac.be/downloads/eng_spss_basic.pdf http://academic.udayton.edu/gregelvers/psy216/spss http://www.nursing.ucdenver.edu/pdf/factoranalysishowto.pdf

More information

Introduction to R Statistical Software

Introduction to R Statistical Software Introduction to R Statistical Software Anthony (Tony) R. Olsen USEPA ORD NHEERL Western Ecology Division Corvallis, OR 97333 (541) 754-4790 Olsen.Tony@epa.gov What is R? A language and environment for

More information

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Getting to know the data An important first step before performing any kind of statistical analysis is to familiarize

More information

Universal Simple Control, USC-1

Universal Simple Control, USC-1 Universal Simple Control, USC-1 Data and Event Logging with the USB Flash Drive DATA-PAK The USC-1 universal simple voltage regulator control uses a flash drive to store data. Then a propriety Data and

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

AT&T Connect myat&t User Guide Integrated Edition Version 9.0 January 2011

AT&T Connect myat&t User Guide Integrated Edition Version 9.0 January 2011 AT&T Connect myat&t User Guide Integrated Edition Version 9.0 January 2011 2009-2011 AT&T Intellectual Property. All rights reserved. AT&T, the AT&T logo and all other AT&T marks contained herein are trademarks

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

einstruction CPS (Clicker) Instructions

einstruction CPS (Clicker) Instructions Two major approaches to run Clickers a. Anonymous b. Tracked Student picks any pad as s/he enters classroom; Student responds to question, but pad is not linked to student; Good for controversial questions,

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Installing R and the psych package

Installing R and the psych package Installing R and the psych package William Revelle Department of Psychology Northwestern University August 17, 2014 Contents 1 Overview of this and related documents 2 2 Install R and relevant packages

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

EXST SAS Lab Lab #4: Data input and dataset modifications

EXST SAS Lab Lab #4: Data input and dataset modifications EXST SAS Lab Lab #4: Data input and dataset modifications Objectives 1. Import an EXCEL dataset. 2. Infile an external dataset (CSV file) 3. Concatenate two datasets into one 4. The PLOT statement will

More information

Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information.

Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information. Excel Tutorial Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information. Working with Data Entering and Formatting Data Before entering data

More information

Financial Econometrics MFE MATLAB Introduction. Kevin Sheppard University of Oxford

Financial Econometrics MFE MATLAB Introduction. Kevin Sheppard University of Oxford Financial Econometrics MFE MATLAB Introduction Kevin Sheppard University of Oxford October 21, 2013 2007-2013 Kevin Sheppard 2 Contents Introduction i 1 Getting Started 1 2 Basic Input and Operators 5

More information

Bitrix Site Manager 4.1. User Guide

Bitrix Site Manager 4.1. User Guide Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Excel Basics By Tom Peters & Laura Spielman

Excel Basics By Tom Peters & Laura Spielman Excel Basics By Tom Peters & Laura Spielman What is Excel? Microsoft Excel is a software program with spreadsheet format enabling the user to organize raw data, make tables and charts, graph and model

More information

Using an Edline Gradebook. EGP Teacher Guide

Using an Edline Gradebook. EGP Teacher Guide Using an Edline Gradebook EGP Teacher Guide Table of Contents Introduction...3 Setup...3 Get the Gradebook Web Plugin... 3 Using Your Web Gradebook... 4 Using the Web Gradebook on a Shared Computer...

More information

Excel 2007: Basics Learning Guide

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

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

Inteset Secure Lockdown ver. 2.0

Inteset Secure Lockdown ver. 2.0 Inteset Secure Lockdown ver. 2.0 for Windows XP, 7, 8, 10 Administrator Guide Table of Contents Administrative Tools and Procedures... 3 Automatic Password Generation... 3 Application Installation Guard

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

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

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

McAfee Endpoint Encryption Reporting Tool

McAfee Endpoint Encryption Reporting Tool McAfee Endpoint Encryption Reporting Tool User Guide Version 5.2.13 McAfee, Inc. McAfee, Inc. 3965 Freedom Circle, Santa Clara, CA 95054, USA Tel: (+1) 888.847.8766 For more information regarding local

More information

Microsoft PowerPoint 2007

Microsoft PowerPoint 2007 Microsoft PowerPoint 2007 PowerPoint is currently the most common software used for making visual aids for presentations. It has been redesigned for the 2007 release with a much more user-friendly and

More information

CHAPTER 7 INTRODUCTION TO SAMPLING DISTRIBUTIONS

CHAPTER 7 INTRODUCTION TO SAMPLING DISTRIBUTIONS CHAPTER 7 INTRODUCTION TO SAMPLING DISTRIBUTIONS CENTRAL LIMIT THEOREM (SECTION 7.2 OF UNDERSTANDABLE STATISTICS) The Central Limit Theorem says that if x is a random variable with any distribution having

More information

Using Mail Merge in Microsoft Word 2003

Using Mail Merge in Microsoft Word 2003 Using Mail Merge in Microsoft Word 2003 Mail Merge Created: 12 April 2005 Note: You should be competent in Microsoft Word before you attempt this Tutorial. Open Microsoft Word 2003 Beginning the Merge

More information

Didacticiel Études de cas

Didacticiel Études de cas 1 Theme Data Mining with R The rattle package. R (http://www.r project.org/) is one of the most exciting free data mining software projects of these last years. Its popularity is completely justified (see

More information

This web-based report provides information for single funds centers. The report can be run for one funds center or multiple single funds centers.

This web-based report provides information for single funds centers. The report can be run for one funds center or multiple single funds centers. Budget Status Report This web-based report provides information for single funds centers. The report can be run for one funds center or multiple single funds centers. The report includes the following

More information

Kodu Curriculum: Getting Started with Keyboard and Mouse

Kodu Curriculum: Getting Started with Keyboard and Mouse Kodu Curriculum: Getting Started with Keyboard and Mouse PC Requirements 1. Kodu requires a Windows Operating System 2. DirectX9 graphics 3. Shader Model 2.0 or greater. How to Check Your DirectX Version

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

2Creating Reports: Basic Techniques. Chapter

2Creating Reports: Basic Techniques. Chapter 2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited

More information

Introduction and usefull hints for the R software

Introduction and usefull hints for the R software What is R Statistical software and programming language Freely available (inluding source code) Started as a free re-implementation of the S-plus programming language Introduction and usefull hints for

More information

TxDMV RTS Training Guide for Working with Cognos Reports

TxDMV RTS Training Guide for Working with Cognos Reports TxDMV RTS Training Guide for Working with Cognos Reports April, 2015 About This Guide This Training Guide introduces the implementation of the Cognos enterprise reporting tool for the TxDMV Registration

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

Getting your data into R

Getting your data into R 1 Getting your data into R How to load and export data Dr Simon R. White MRC Biostatistics Unit, Cambridge 2012 2 Part I Case study: Reading data into R and getting output from R 3 Data formats Not just

More information

An introduction to using Microsoft Excel for quantitative data analysis

An introduction to using Microsoft Excel for quantitative data analysis Contents An introduction to using Microsoft Excel for quantitative data analysis 1 Introduction... 1 2 Why use Excel?... 2 3 Quantitative data analysis tools in Excel... 3 4 Entering your data... 6 5 Preparing

More information

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language, in any form, by any

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

More information

DWGSee Professional User Guide

DWGSee Professional User Guide DWGSee Professional User Guide DWGSee is comprehensive software for viewing, printing, marking and sharing DWG files. It is fast, powerful and easy-to-use for every expert and beginners. Starting DWGSee

More information

Data and Projects in R- Studio

Data and Projects in R- Studio Data and Projects in R- Studio Patrick Thompson Material prepared in part by Etienne Low-Decarie & Zofia Taranu Learning Objectives Create an R project Look at Data in R Create data that is appropriate

More information

Excel Tutorial. Bio 150B Excel Tutorial 1

Excel Tutorial. Bio 150B Excel Tutorial 1 Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and

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

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC Installing Secure Shell (SSH) Client Nicholas Fitzkee Mississippi State University The first thing you will need is SSH. SSH is a program for accessing

More information

OVERVIEW OF R SOFTWARE AND PRACTICAL EXERCISE

OVERVIEW OF R SOFTWARE AND PRACTICAL EXERCISE OVERVIEW OF R SOFTWARE AND PRACTICAL EXERCISE Hukum Chandra Indian Agricultural Statistics Research Institute, New Delhi-110012 1. INTRODUCTION R is a free software environment for statistical computing

More information

Calculator Notes for the TI-Nspire and TI-Nspire CAS

Calculator Notes for the TI-Nspire and TI-Nspire CAS INTRODUCTION Calculator Notes for the Getting Started: Navigating Screens and Menus Your handheld is like a small computer. You will always work in a document with one or more problems and one or more

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

OneDrive for Business User Guide

OneDrive for Business User Guide OneDrive for Business User Guide Contents About OneDrive for Business and Office 365... 2 Storing University Information in the Cloud... 2 Signing in... 2 The Office 365 Interface... 3 The OneDrive for

More information

IBM SPSS Statistics 20 Part 1: Descriptive Statistics

IBM SPSS Statistics 20 Part 1: Descriptive Statistics CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 1: Descriptive Statistics Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

Test Generator. Creating Tests

Test Generator. Creating Tests Test Generator Creating Tests Table of Contents# Cognero Overview... 1 Cognero Basic Terminology... 2 Logging On to Cognero... 3 Test Generator Organization... 4 Question Sets Versus Tests... 4 Editing

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Mulberry Internet Email/Calendar Client Version 4.0 Cyrus Daboo Pittsburgh PA USA mailto:mulberry@mulberrymail.com http://www.mulberrymail.com/ Information in this document is subject

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office Hands-on Guide FileMaker Pro Using FileMaker Pro with Microsoft Office Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker Pro and Microsoft Excel... 5 Drag and

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

Umbraco v4 Editors Manual

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...

More information

SPSS for Simple Analysis

SPSS for Simple Analysis STC: SPSS for Simple Analysis1 SPSS for Simple Analysis STC: SPSS for Simple Analysis2 Background Information IBM SPSS Statistics is a software package used for statistical analysis, data management, and

More information

Step 2: Save the file as an Excel file for future editing, adding more data, changing data, to preserve any formulas you were using, etc.

Step 2: Save the file as an Excel file for future editing, adding more data, changing data, to preserve any formulas you were using, etc. R is a free statistical software environment that can run a wide variety of tests based on different downloadable packages and can produce a wide variety of simple to more complex graphs based on the data

More information

Introduction to SharePoint For Team Site Owner/Administrators. Instructional Guide

Introduction to SharePoint For Team Site Owner/Administrators. Instructional Guide Instructional Guide Class Goals: 1. Understanding & Navigating the SP Team Site Structure 2. Using SP to create & maintain a collaborative site for your team: Planning & Design, Lists, Libraries, Web Parts

More information

COGNOS Query Studio Ad Hoc Reporting

COGNOS Query Studio Ad Hoc Reporting COGNOS Query Studio Ad Hoc Reporting Copyright 2008, the California Institute of Technology. All rights reserved. This documentation contains proprietary information of the California Institute of Technology

More information