Introduction to R. base -> R win32.exe (this will change depending on the latest version)

Size: px
Start display at page:

Download "Introduction to R. base -> R win32.exe (this will change depending on the latest version)"

Transcription

1 Dr Raffaella Calabrese, Essex Business School 1. GETTING STARTED Introduction to R R is a powerful environment for statistical computing which runs on several platforms. R is available free of charge. R is now under active development by a group of statisticians called 'the R core team', with a home page at The current version is and was released in October New releases occur every six months or so, often around April and October. You will find binaries for Windows, Mac OS X and Linux in the Comprehensive R Archive Network. R users can program their own code. Hence, R is useful if you need to implement a new statistical method that is not available in SPSS or Excel. R is interactive to the user thus providing immediate feedback. It is highly versatile and ideal for statistical simulations such as monte carlo, jackknifing and bootstrapping. Finally, R source code is available for both inspection and modification where need be. Furthermore only a few tasks can be accomplished through the menu system and therefore it requires some effort to learn to use R. 1.1 R installation The first step to install R is to go to the site called Comprehensive R Archive Network (CRAN). It is a collection of sites which carry identical material, consisting of the R distribution(s), the contributed extensions, documentation for R, and binaries. Type its full address, or just type CRAN into Google and you will be taken to the site. Select under CRAN CRAN - Mirrors -> UK ( Under Download and Install R click Windows and then base -> R win32.exe (this will change depending on the latest version) Find the mirror ( nearest you and follow the links. The Windows installer is fairly easy to use and, after agreeing to the license terms, lets you choose which components you want to install. Additional packages can always be installed directly from R at a later time. 1.2 Loading and installation of R packages Every function in R is in a package, and packages come with documentation. In addition to those packages included in the initial installation, R comes with several useful contributed packages. You can view the packages available for installation by entering the command library(). Type

2 >library() To check the functions available on a certain package, type for e.g. >library(help= stats ) will open a help window containing one-line descriptions of all functions in the stats package. When you want to do some specific tasks, for example Analysis of dose-response curves, you will need to install the package that does the intended tasks. In this case you install drc package. The easiest way to install an additional package (eg. drc) is through the Packages menu of the R graphical users interface (RGUI): From the menu select Packages ->Install package(s). A window opens asking you to pick a CRAN mirror site; choose the one nearest you (for our case, its UK- st-andrews); after this, a window will open with the various packages that are available on CRAN. Select the package that you want to install. After selection, click the OK button and the package will be installed (see Figure below). It s not enough to just install the package. You have to load it in memory to make it available for use. You accomplish this by entering the command library( nameofpackage ) at the R console, where nameofpackage is replace with drc for our case type in >library(drc) or from the menu bar packages->load package -> drc

3 Below is the figure Notice that there is an error message (highlighted). The reason is that drc requires some other package to have been installed for it to run. Here, plotrix is one of them in addition to lattice, MASS and nlme. You will therefore need to install plotrix. You accomplish this using any one of the two procedures of installing packages covered above. In general a good number of packages will not work singly and will require other packages to have been installed. This will be clear from the messages whenever you attempt to load a package and therefore be on the watch. To see the packages currently loaded into memory, type in >search() 1.3 Running the Software To run R click on Start -> All programs -> R The R icon was created by the setup program during installation. What appears when R is started is called R Graphical Users Interface (RGUI). R issues a prompt where it expects the user to issue a command. The default prompt is (see Figure below).

4 When R starts you will see a window called the RConsole. This is where you type your commands and see the text results. (Graphs appear in a separate window.) First thing that appears is the version number of R and the date of the version. Warning: some packages work only with the recent versions of R. 1.4 Changing your workspace The first thing you probably want to check is your working directory. You can find this from R by issuing the command getwd() at the R prompt. To change the directory type in >setwd( c://rcourse ) (this will change the directory to data on drive c) or from the menu click on File -> Change dir

5 1.5 Getting help in R and also online help Online documentation for most of the functions and variables in R exists and can be printed on screen. The easiest way for getting help in R is to click on the Help button on the toolbar of the R general user interface (RGUI). R comes with several official manuals. The following manuals for R are downloadable as PDF files or can be directly browsed as HTML: An Introduction to R, The R language definition, Writing R Extensions, R Data Import/Export, R Installation and Administration, R Internals and The R Reference Index and FAQs. These should be your primary source of information. You should also know about the help function, which opens a help window. This function can be called with arguments to obtain help about specific features of R, for example >help(write.table). A shortcut for help on a topic is a question mark followed by the topic as in >?plot. You obtain the screen below

6 other times, you only know the subject for which you want help and not the function (eg. anova). In this case use the help.search function and enclose your query with double quotes as follows; >help.search( anova ) or from the menu bar Help->Search help. (enter the anova in the Question dialogue box) The find function tells us what package the object or item you are looking for is contained. For example if you want to find plot, you type; >find( plot ) (remember double quotes on plot) When you use find function, the item that you are looking for must be a function in one of the installed packages and also unique. If you know the name of a package and you need further information concerning the package, you type help(nameofpackage). For example I know there is a package called stats and I want more information about it. At the R console type >help(stats) (and select index to get further details on the package) (see Figures below).

7 1.6 Importing data We usually measure or observe more than one attribute from a study unit also called a sampling unit. Therefore we organise data sets into collections of variables (vectors). In R, such collections are called data frames in R. You generate a data frame by combining variables whereby each variable becomes a separate column. In order that a data frame to represents the data properly, the sequence in which observations appear in the vectors (variables) must be the same for each vector and each vector should have the same number of observations. For example, the first observations from each of the vectors to be included in the data frame must represent observations collected from the same sampling unit. First, recall that R uses the working directory (or the startup directory). Your data file must be located in the working directory for it to be accessible. Find out what is your working directory and change it if necessary. Use getwd() and setwd() commands. If the file you want to read is not in the working directory, you will need to specify it s complete path. In excel, you can create a comma separated values file (csv). To read a csv file, use the command read.csv. Suppose we have a csv file named Spatial located at c:\rworkshop\ directory. The data will appear as spreadsheet with rows as cases and columns as variables. The columns will have names equal to those in the header of the text datafile. Cases will equal total number of lines excluding header. Then to read it into R, issue the command >mydata<-read.csv(file="c://rworkshop/spatial.csv", header = TRUE) >mydata # List the data for visualization If you want to import a spss file, you need the package foreign >library(foreign) >read.spss("spatial.sav", to.data.frame=t)->data If you want to export your R dataset into excel for viewing/editing, you use the write.table

8 (for a text file) or write.csv (for a csv file) commands >write.csv(mydata, file="c://rworkshop//csvmdata"). 2. IS SPATIAL MEMORY AGE-RELATED? There is a commonly held belief that the younger you are the more easily you can absorb new material. In fact we are used to parents or grandparents being forgetful having a senior moment. In order to investigate this for a particular kind of memory, spatial, an investigation has been carried out to test the spatial memory of two groups of people, designated as Elderly (over 65) and Young (20-25). In the test, 18 objects were arranged randomly on a 10x 10 grid. Participants were allowed to examine the positions of the objects for as long as they liked and were subsequently asked to recall these positions by replacing the objects on the grid. Their study times and two measures of performance the number positioned correctly and the error in positioning - are recorded. We analyse the dataset Spatial.

Instruction: Download and Install R and RStudio

Instruction: Download and Install R and RStudio 1 Instruction: Download and Install R and RStudio We will use a free statistical package R, and a free version of RStudio. Please refer to the following two steps to download both R and RStudio on your

More information

Regression III: Advanced Methods

Regression III: Advanced Methods Lecture 2: Software Introduction Regression III: Advanced Methods William G. Jacoby Department of Political Science Michigan State University jacoby@msu.edu Getting Started with R What is R? A tiny R session

More information

How to Download and Install R The R software can be downloaded from: Click on download R link.

How to Download and Install R The R software can be downloaded from:   Click on download R link. Tutorial 1: Getting Acquainted with R (Windows version) How to Download and Install R The R software can be downloaded from: www.r-project.org. Click on download R link. Choose a CRAN mirror from a location

More information

Module 1: Introduction RStudio

Module 1: Introduction RStudio Module 1: Introduction RStudio Contents Page(s) Installing R and RStudio Software for Social Network Analysis 1-2 Introduction to R Language/ Syntax 3 Welcome to RStudio 4-14 A. The 4 Panes 5 B. Calculator

More information

Stat 302 Statistical Software and Its Applications Data Import and Export

Stat 302 Statistical Software and Its Applications Data Import and Export 1 Stat 302 Statistical Software and Its Applications Data Import and Export Fritz Scholz Department of Statistics, University of Washington Winter Quarter 2015 January 26, 2015 2 General Remarks on I/O

More information

A whirlwind introduction to using R for your research

A whirlwind introduction to using R for your research A whirlwind introduction to using R for your research Jeremy Chacón 1 Outline 1. Why use R? 2. The R-Studio work environment 3. The mock experimental analysis: 1. Writing and running code 2. Getting data

More information

Computer lab 2 Course: Introduction to R for Biologists

Computer lab 2 Course: Introduction to R for Biologists Computer lab 2 Course: Introduction to R for Biologists April 23, 2012 1 Scripting As you have seen, you often want to run a sequence of commands several times, perhaps with small changes. An efficient

More information

An Introduction to R 1.3 Some important practical matters when working with R

An Introduction to R 1.3 Some important practical matters when working with R An Introduction to R 1.3 Some important practical matters when working with R Dan Navarro (daniel.navarro@adelaide.edu.au) School of Psychology, University of Adelaide ua.edu.au/ccs/people/dan DSTO R Workshop,

More information

IN-CLASS EXERCISE: INTRODUCTION TO R

IN-CLASS EXERCISE: INTRODUCTION TO R NAVAL POSTGRADUATE SCHOOL IN-CLASS EXERCISE: INTRODUCTION TO R Survey Research Methods Short Course Marine Corps Combat Development Command Quantico, Virginia May 2013 In-class Exercise: Introduction to

More information

Installing and running R

Installing and running R Installing and running R The R website: http://www.r-project.org/ R on the web here you can find information on the software, download the current version R-2.9.2 (released on 2009-08-24), packages, tutorials

More information

Step by step to getting R installed on your computer

Step by step to getting R installed on your computer Step by step to getting R installed on your computer 1. Go to the R-Project webpage (www.r-project.org) 2. Select the CRAN option under Download on the left hand side of the page: 3. On the CRAN Mirrors

More information

.txt - Exporting and Importing. Table of Contents

.txt - Exporting and Importing. Table of Contents .txt - Exporting and Importing Table of Contents Export... 2 Using Add Skip... 3 Delimiter... 3 Other Options... 4 Saving Templates of Options Chosen... 4 Editing Information in the lower Grid... 5 Import...

More information

Introduction to R. 1 Introduction 2. 2 What You Need 2

Introduction to R. 1 Introduction 2. 2 What You Need 2 Introduction to R Dave Armstrong University of Wisconsin-Milwaukee Department of Political Science e: armstrod@uwm.edu w: http://www.quantoid.net/teachuw/uwmpsych Contents 1 Introduction 2 2 What You Need

More information

QPM Lab 1: Installing R and R Studio

QPM Lab 1: Installing R and R Studio QPM Lab 1: Installing R and R Studio Department of Political Science Washington University, St. Louis September 1-2, 2016 QPM Lab 1: Installing R and R Studio 1 Introductions About me Your turn: Name Year

More information

University of Wollongong School of Mathematics and Applied Statistics. STAT231 Probability and Random Variables Introductory Laboratory

University of Wollongong School of Mathematics and Applied Statistics. STAT231 Probability and Random Variables Introductory Laboratory 1 R and RStudio University of Wollongong School of Mathematics and Applied Statistics STAT231 Probability and Random Variables 2014 Introductory Laboratory RStudio is a powerful statistical analysis package.

More information

Introduction to R Commander

Introduction to R Commander Introduction to R Commander 1. Get R and Rcmdr to run 2. Familiarize yourself with Rcmdr 3. Look over Rcmdr metadata (Fox, 2005) 4. Start doing stats / plots with Rcmdr Tasks 1. Clear Workspace and History.

More information

Reading data into R. 1. Data in human readable form, which can be inspected with a text editor.

Reading data into R. 1. Data in human readable form, which can be inspected with a text editor. Reading data into R There is a famous, but apocryphal, story about Mrs Beeton, the 19th century cook and writer, which says that she began her recipe for rabbit stew with the instruction First catch your

More information

A system for statistical analysis. Instructions for installing software. R, R-studio and the R-commander

A system for statistical analysis. Instructions for installing software. R, R-studio and the R-commander Instructions for installing software R, R-studio and the R-commander Graeme.Hutcheson@manchester.ac.uk Manchester Institute of Education, University of Manchester This course uses the following software...

More information

8.1 Come analizzare i dati: R

8.1 Come analizzare i dati: R 8.1 Come analizzare i dati: R Insegnamento di Informatica Elisabetta Ronchieri Corso di Laurea di Economia, Universitá di Ferrara I semestre, anno 2014-2015 Elisabetta Ronchieri (Universitá) Insegnamento

More information

Programming R. Manuel J. A. Eugster. Chapter 1: Basic Vocabulary. Last modification on April 11, 2012

Programming R. Manuel J. A. Eugster. Chapter 1: Basic Vocabulary. Last modification on April 11, 2012 Manuel J. A. Eugster Programming R Chapter 1: Basic Vocabulary Last modification on April 11, 2012 Draft of the R programming book I always wanted to read http://mjaeugster.github.com/progr Licensed under

More information

Introduction to Statistics using R/Rstudio

Introduction to Statistics using R/Rstudio Introduction to Statistics using R/Rstudio R and Rstudio Getting Started Assume that R for Windows and Macs already installed on your laptop. (Instructions for installations sent) R on Windows R on MACs

More information

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center Switching to Sheets from Microsoft Excel 2010 Learning Center gsuite.google.com/learning-center Welcome to Sheets Now that you've switched from Microsoft Excel to G Suite, learn how to use Google Sheets

More information

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist.

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist. Chapter 5 Exporting Data from Access and MySQL Skills you will learn: How to export data in text format from Microsoft Access, and from MySQL using Navicat and Sequel Pro. If you are unsure of the basics

More information

Lecture 1: Getting Started and Data Basics

Lecture 1: Getting Started and Data Basics Lecture 1: Getting Started and Data Basics The first lecture is intended to provide you the basics for running R. Outline: 1. An Introductory R Session 2. R as a Calculator 3. Import, export and manipulate

More information

R Website R Installation and Folder R Packages R Documentation R Search R Workspace Interface R Common and Important Basic Commands

R Website R Installation and Folder R Packages R Documentation R Search R Workspace Interface R Common and Important Basic Commands Table of Content R Website R Installation and Folder R Packages R Documentation R Search R Workspace Interface R Common and Important Basic Commands R Website http://www.r project.org/ Download, Package

More information

my.scouting Tools Member Assignment Roster Details

my.scouting Tools Member Assignment Roster Details my.scouting Tools my.scouting Tools is best experienced using the latest version of Google Chrome or Mozilla Firefox. Also works with the latest version of Safari, and Internet Explorer (v11). Version

More information

Goals of this course. Crash Course in R. Getting Started with R. What is R? What is R? Getting you setup to use R under Windows

Goals of this course. Crash Course in R. Getting Started with R. What is R? What is R? Getting you setup to use R under Windows Oxford Spring School, April 2013 Effective Presentation ti Monday morning lecture: Crash Course in R Robert Andersen Department of Sociology University of Toronto And Dave Armstrong Department of Political

More information

Introduction to R & R Commander

Introduction to R & R Commander Introduction to R & R Commander Alexander Ploner 2011-03-18 CONTENTS CONTENTS Contents 1 Getting started 3 1.1 First steps............................................ 3 1.2 A simple

More information

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here:

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here: Lab 1. Introduction to R & SAS R is free, open-source software. Get it here: http://tinyurl.com/yfet8mj for your own computer. 1.1. Using R like a calculator Open R and type these commands into the R Console

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Introduction to R. Dataset Basics. March 2018

Introduction to R. Dataset Basics. March 2018 Introduction to R March 2018 1. Preliminaries.... a) Suggested packages for importing/exporting data.... b) FAQ: How to find the path of your dataset (or whatever). 2. Import/Export Data........ a) R (.Rdata)

More information

CITO2 Installation & User Instructions

CITO2 Installation & User Instructions CITO2 Installation & User Instructions DD 56107 Stoneridge Electronics Ltd 1. Installation...4 1.1. System Requirements...4 1.2. Installing CITO2...4 1.3. Uninstalling CITO2...4 2. Starting and closing

More information

An Introduction to R- Programming

An Introduction to R- Programming An Introduction to R- Programming Hadeel Alkofide, Msc, PhD NOT a biostatistician or R expert just simply an R user Some slides were adapted from lectures by Angie Mae Rodday MSc, PhD at Tufts University

More information

Instructions for using pre-defined EMIS Web searches with CHART

Instructions for using pre-defined EMIS Web searches with CHART Instructions for using pre-defined EMIS Web searches with CHART We would be grateful if you could feedback your experience of using the EMIS Web versions of our tools, particularly if you identify any

More information

The R and R-commander software

The R and R-commander software The R and R-commander software This course uses the statistical package 'R' and the 'R-commander' graphical user interface (Rcmdr). Full details about these packages and the advantages associated with

More information

Figure 1: The PMG GUI on startup

Figure 1: The PMG GUI on startup Statistics involves a fair number of computations that can be made much more convenient using either a calculator or a computer. Although the basic TI-83 or 84 series of calculators can do most of the

More information

Desktop & Laptop Edition

Desktop & Laptop Edition Desktop & Laptop Edition USER MANUAL For Mac OS X Copyright Notice & Proprietary Information Redstor Limited, 2016. All rights reserved. Trademarks - Mac, Leopard, Snow Leopard, Lion and Mountain Lion

More information

Using Turnitin for electronic submission and marking of assignments: guidance paper for staff.

Using Turnitin for electronic submission and marking of assignments: guidance paper for staff. Using Turnitin for electronic submission and marking of assignments: guidance paper for staff. College of Nursing, Midwifery and Health Care June 2011 Catherine Lynch amended April 2012, February 2013,

More information

Version 1.6. UDW+ Quick Start Guide to Functionality. Program Services Office & Decision Support Group

Version 1.6. UDW+ Quick Start Guide to Functionality. Program Services Office & Decision Support Group Version 1.6 UDW+ Quick Start Guide to Functionality Program Services Office & Decision Support Group Table of Contents Access... 2 Log in/system Requirements... 2 Data Refresh... 2 00. FAME Chartfield

More information

RKWard: IRT analyses and person scoring with ltm

RKWard: IRT analyses and person scoring with ltm Software Corner Software Corner: RKWard: IRT analyses and person scoring with ltm Aaron Olaf Batty abatty@sfc.keio.ac.jp Keio University Lancaster University In SRB 16(2), I introduced the ever-improving,

More information

Introduction to RStudio

Introduction to RStudio Introduction to RStudio Ulrich Halekoh Epidemiology and Biostatistics, SDU May 4, 2018 R R is a language that started by Ross Ihaka and Robert Gentleman in 1991 as an open source alternative to S emphasizes

More information

EMCO Remote Installer Professional 5. Copyright EMCO. All rights reserved.

EMCO Remote Installer Professional 5. Copyright EMCO. All rights reserved. EMCO Remote Installer Professional 5 Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction

More information

STATA 13 INTRODUCTION

STATA 13 INTRODUCTION STATA 13 INTRODUCTION Catherine McGowan & Elaine Williamson LONDON SCHOOL OF HYGIENE & TROPICAL MEDICINE DECEMBER 2013 0 CONTENTS INTRODUCTION... 1 Versions of STATA... 1 OPENING STATA... 1 THE STATA

More information

POL 345: Quantitative Analysis and Politics

POL 345: Quantitative Analysis and Politics POL 345: Quantitative Analysis and Politics Precept Handout 1 Week 2 (Verzani Chapter 1: Sections 1.2.4 1.4.31) Remember to complete the entire handout and submit the precept questions to the Blackboard

More information

Chapter 1 Introduction to using R with Mind on Statistics

Chapter 1 Introduction to using R with Mind on Statistics Chapter 1 Introduction to using R with Mind on Statistics Manual overview The purpose of this manual is to help you learn how to use the free R software to perform the graphs, simulations, and data analyses

More information

Introduction to VA Analysis using openva the R Shiny App in Windows 10

Introduction to VA Analysis using openva the R Shiny App in Windows 10 Introduction to VA Analysis using openva the R Shiny App in Windows 10 Jason Thomas & Sam Clark September 28, 2017 1 Introduction There are several methods for analyzing verbal autopsy (VA) data with the

More information

The MAXQDA Stats Data Editor

The MAXQDA Stats Data Editor The Data Editor The Data Editor The MAXQDA Stats Data Editor displays the cases in the rows and the variables in the columns. Each case is therefore in a separate line. The following figure shows the Data

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Tutorial: SeqAPass Boxplot Generator

Tutorial: SeqAPass Boxplot Generator 1 Tutorial: SeqAPass Boxplot Generator 1. Access SeqAPASS by opening https://seqapass.epa.gov/seqapass/ using Mozilla Firefox web browser 2. Open the About link on the login page or upon logging in to

More information

Process Eye Professional. Recall

Process Eye Professional. Recall Process Eye Professional Recall Process Eye Professional Recall User Manual SP104010.101 August 2005 As part of our continuous product improvement policy, we are always pleased to receive your comments

More information

User Guide DYMO Label TM v.8

User Guide DYMO Label TM v.8 User Guide DYMO Label TM v.8 Copyright Trademarks 2012-2015 Sanford, L.P. All rights reserved. Revised 9/6/2016. No part of this document or the software may be reproduced or transmitted in any form or

More information

HMIS Guide to Running & Retrieving the CSV APR 2017 Export in ClientTrack An HMIS End User Training Resource

HMIS Guide to Running & Retrieving the CSV APR 2017 Export in ClientTrack An HMIS End User Training Resource 2018 HMIS Guide to Running & Retrieving the CSV APR 2017 Export in ClientTrack An HMIS End User Training Resource This guide will demonstrate how to run the CSV APR 2017 Export and prepare files for submission

More information

Getting Started Guide

Getting Started Guide Getting Started Guide for education accounts Setup Manual Edition 7 Last updated: September 15th, 2016 Note: Click on File and select Make a copy to save this to your Google Drive, or select Print, to

More information

HOW TO BUILD YOUR FIRST ROBOT

HOW TO BUILD YOUR FIRST ROBOT Kofax Kapow TM HOW TO BUILD YOUR FIRST ROBOT INSTRUCTION GUIDE Table of Contents How to Make the Most of This Tutorial Series... 1 Part 1: Installing and Licensing Kofax Kapow... 2 Install the Software...

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

Updating Users. Updating Users CHAPTER

Updating Users. Updating Users CHAPTER CHAPTER 18 Update the existing user information that is in the database by using the following procedure:, page 18-1 Retaining Stored Values, page 18-2 Using the BAT Spreadsheet to Create a CSV Data File

More information

Introduction to R. Andy Grogan-Kaylor October 22, Contents

Introduction to R. Andy Grogan-Kaylor October 22, Contents Introduction to R Andy Grogan-Kaylor October 22, 2018 Contents 1 Background 2 2 Introduction 2 3 Base R and Libraries 3 4 Working Directory 3 5 Writing R Code or Script 4 6 Graphical User Interface 4 7

More information

Lab 1: Getting started with R and RStudio Questions? or

Lab 1: Getting started with R and RStudio Questions? or Lab 1: Getting started with R and RStudio Questions? david.montwe@ualberta.ca or isaacren@ualberta.ca 1. Installing R and RStudio To install R, go to https://cran.r-project.org/ and click on the Download

More information

DHL MyBill FAQ MyBill.dhl.com

DHL MyBill FAQ MyBill.dhl.com DHL MyBill FAQ MyBill.dhl.com DHL Express dhlexpress.nl DHL MyBill manual 2 DHL Express dhlexpress.nl Content Page FAQ... 4 Account Management... 4 Invoices... 5 Payments... 6 Disputes... 6 Miscellaneous...

More information

An Introduction to R 1.1 Getting started

An Introduction to R 1.1 Getting started An Introduction to R 1.1 Getting started Dan Navarro (daniel.navarro@adelaide.edu.au) School of Psychology, University of Adelaide ua.edu.au/ccs/people/dan DSTO R Workshop, 29-Apr-2015 There s a book http://ua.edu.au/ccs/teaching/lsr/

More information

Below is an example workflow of file inventorying at the American Geographical Society Library at UWM Libraries.

Below is an example workflow of file inventorying at the American Geographical Society Library at UWM Libraries. File Inventory with DROID Updated January 2018 Tool Homepage: http://www.nationalarchives.gov.uk/information-management/manageinformation/policy-process/digital-continuity/file-profiling-tool-droid/ Introduction

More information

Report Fundamentals An introduction to basic report functionality in SAP.

Report Fundamentals An introduction to basic report functionality in SAP. Report Fundamentals An introduction to basic report functionality in SAP. Budget Office Texas State University-San Marcos 601 University Drive JCK 820 San Marcos, TX 78666 512-245-2376 budget@txstate.edu

More information

Testwise User Guide. Getting Started. UK gl-assessment.co.uk/testwise

Testwise User Guide. Getting Started. UK gl-assessment.co.uk/testwise Testwise User Guide Getting Started UK 0330 123 5375 gl-assessment.co.uk/testwise support@gl-assessment.co.uk ROI 1800 806185 gl-assessment.ie/testwise support@gl-assessment.ie International +44 (0)20

More information

> z <- cart(sc.cele~k.sc.cele+veg2+elev+slope+aspect+sun+heat, data=envspk)

> z <- cart(sc.cele~k.sc.cele+veg2+elev+slope+aspect+sun+heat, data=envspk) Using Cartware in R Bradley W. Compton, Department of Environmental Conservation, University of Massachusetts, Amherst, MA 01003, bcompton@eco.umass.edu Revised: November 16, 2004 and November 30, 2005

More information

R Basics / Course Business

R Basics / Course Business R Basics / Course Business We ll be using a sample dataset in class today: CourseWeb: Course Documents " Sample Data " Week 2 Can download to your computer before class CourseWeb survey on research/stats

More information

Depending on the computer you find yourself in front of, here s what you ll need to do to open SPSS.

Depending on the computer you find yourself in front of, here s what you ll need to do to open SPSS. 1 SPSS 11.5 for Windows Introductory Assignment Material covered: Opening an existing SPSS data file, creating new data files, generating frequency distributions and descriptive statistics, obtaining printouts

More information

Note: For more information on creating labels in CDS, watch Volume 22 of the Fast Class Update: Label Creation.

Note: For more information on creating labels in CDS, watch Volume 22 of the Fast Class Update: Label Creation. Information used to create labels the Client Data System (CDS) can be exported out of CDS and used to create labels in Microsoft Word. In Word, you can make changes to the style, size, and color of fonts

More information

Merging, exploring, and batch processing data from the Human Fertility Database and Human Mortality Database

Merging, exploring, and batch processing data from the Human Fertility Database and Human Mortality Database Max-Planck-Institut für demografische Forschung Max Planck Institute for Demographic Research Konrad-Zuse-Strasse 1 D-18057 Rostock GERMANY Tel +49 (0) 3 81 20 81-0; Fax +49 (0) 3 81 20 81-202; http://www.demogr.mpg.de

More information

Table of Contents. Part I How do I... Part II Zetafax Client. Foreword. 3 Advanced tasks. 1 Menu options. Annotate a fax? View a text message?

Table of Contents. Part I How do I... Part II Zetafax Client. Foreword. 3 Advanced tasks. 1 Menu options. Annotate a fax? View a text message? I Table of Contents Foreword 0 1 Part I How do I... 1 Zetafax Client... actions 2 Send a fax?... Specify options... when sending a fax? View a fax?... Annotate a fax?... Print a fax?... Preview a message...

More information

Introduction to R. UCLA Statistical Consulting Center R Bootcamp. Irina Kukuyeva September 20, 2010

Introduction to R. UCLA Statistical Consulting Center R Bootcamp. Irina Kukuyeva September 20, 2010 UCLA Statistical Consulting Center R Bootcamp Irina Kukuyeva ikukuyeva@stat.ucla.edu September 20, 2010 Outline 1 Introduction 2 Preliminaries 3 Working with Vectors and Matrices 4 Data Sets in R 5 Overview

More information

BGGN 213 Working with R packages Barry Grant

BGGN 213 Working with R packages Barry Grant BGGN 213 Working with R packages Barry Grant http://thegrantlab.org/bggn213 Recap From Last Time: Why it is important to visualize data during exploratory data analysis. Discussed data visualization best

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

MBV4410/9410 Fall Bioinformatics for Molecular Biology. Introduction to R

MBV4410/9410 Fall Bioinformatics for Molecular Biology. Introduction to R MBV4410/9410 Fall 2018 Bioinformatics for Molecular Biology Introduction to R Outline Introduce R Basic operations RStudio Bioconductor? Goal of the lecture Introduce you to R Show how to run R, basic

More information

PART I (Must be done first) Download and Install R

PART I (Must be done first) Download and Install R How to Download and Install R and R-Studio Version Fall 2016 Introduction: R is a free software for statistical computing and graphics. Its learning curve is a bit steep. But, fortunately for us, there

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

Guide to getting information out of Sage 200

Guide to getting information out of Sage 200 Guide to getting information out of Sage 200 Copyright statement Sage (UK) Limited, 2011. All rights reserved. If this documentation includes advice or information relating to any matter other than using

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual. TopLine Results Corporation Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

ACA-1095 Reporting Help Pro-Ware, LLC

ACA-1095 Reporting Help Pro-Ware, LLC ACA-1095 Reporting Help Contents 3 Table of Contents Foreword 0 Part I Introduction 6 1 Overview 6 2 Welcome Screen 6 3 What's New 6 4 Home Screen 7 Toolbar... 7 File Manager... (Multi-Client Only) 8

More information

Highway Performance Monitoring System

Highway Performance Monitoring System Highway Performance Monitoring System Version 1.0 June 2011 Quick Start Guide for Version 8.0 Federal Highway Administration Table of Contents Chapter 1 Introduction... 1 Chapter 2 HPMS Workflow... 2 Chapter

More information

Job Aid. Remote Access BAIRS Printing and Saving a Report. Table of Contents

Job Aid. Remote Access BAIRS Printing and Saving a Report. Table of Contents Remote Access BAIRS Printing and Saving a Report Table of Contents Remote Access BAIRS Printing a Report PDF HTML... 2 Remote Access BAIRS Printing a Report Export to PDF Interactive Reporting... 3 Remote

More information

Chapter 11 Dealing With Data SPSS Tutorial

Chapter 11 Dealing With Data SPSS Tutorial Chapter 11 Dealing With Data SPSS Tutorial 1. Visit the student website at for this textbook at www.clowjames.net/students. 2. Download the following files: Chapter 11 Dealing with Data (SPSS data file)

More information

Flowlogic. User Manual Version GraphLogic: Developed by scientists, for scientists. Graphing and Statistical Analysis.

Flowlogic. User Manual Version GraphLogic: Developed by scientists, for scientists. Graphing and Statistical Analysis. Flowlogic Flow Cytometry Analysis Software Developed by scientists, for scientists User Manual Version 7.2.1 GraphLogic: Graphing and Statistical Analysis www.inivai.com TABLE OF CONTENTS GraphLogic Graphing

More information

AG01 Run Quick Guide V1.0

AG01 Run Quick Guide V1.0 AG01 Run Quick Guide V1.0 1.0 Introduction The AG01 RUN is a simple software that helps you to manage your workout activities in the computer. When this software is successfully installed, you may read

More information

Handling Your Data in SPSS. Columns, and Labels, and Values... Oh My! The Structure of SPSS. You should think about SPSS as having three major parts.

Handling Your Data in SPSS. Columns, and Labels, and Values... Oh My! The Structure of SPSS. You should think about SPSS as having three major parts. Handling Your Data in SPSS Columns, and Labels, and Values... Oh My! You might think that simple intuition will guide you to a useful organization of your data. If you follow that path, you might find

More information

Chapter 10 Linking Calc Data

Chapter 10 Linking Calc Data Calc Guide Chapter 10 Linking Calc Data Sharing data in and out of Calc This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option

More information

Working with Target for ArcGIS Drillhole Tools

Working with Target for ArcGIS Drillhole Tools Working with Target for ArcGIS Drillhole Tools This Working with Target for ArcGIS Drillhole Tools How-to Guide walks you through setting up a new Target for ArcGIS drillhole project, importing data into

More information

CCRS Quick Start Guide for Program Administrators. September Bank Handlowy w Warszawie S.A.

CCRS Quick Start Guide for Program Administrators. September Bank Handlowy w Warszawie S.A. CCRS Quick Start Guide for Program Administrators September 2017 www.citihandlowy.pl Bank Handlowy w Warszawie S.A. CitiManager Quick Start Guide for Program Administrators Table of Contents Table of Contents

More information

Creating consistent content pages

Creating consistent content pages Creating consistent content pages Content pages link from the electronic portfolio s home page. Using the ideas from the class discussion, determine the consistent elements of your content pages and plan

More information

To complete the computer assignments, you ll use the EViews software installed on the lab PCs in WMC 2502 and WMC 2506.

To complete the computer assignments, you ll use the EViews software installed on the lab PCs in WMC 2502 and WMC 2506. An Introduction to EViews The purpose of the computer assignments in BUEC 333 is to give you some experience using econometric software to analyse real-world data. Along the way, you ll become acquainted

More information

INSTITUTE BUSINESS SYSTEMS IMSS COGNOS REPORT STUDIO GUIDE

INSTITUTE BUSINESS SYSTEMS IMSS COGNOS REPORT STUDIO GUIDE INSTITUTE BUSINESS SYSTEMS IMSS COGNOS REPORT STUDIO GUIDE Table of Contents Logging into Cognos... 3 Viewing Summary Information... 6 Running a Report... 6 Rerunning a Report... 9 Comparing Summary Information...

More information

Adding Users. Adding Users CHAPTER

Adding Users. Adding Users CHAPTER CHAPTER 15 You can use Cisco Unified Communications Manager Bulk Administration (BAT) to add a group of new users and to associate users to phones and other IP Telephony devices in the Cisco Unified Communications

More information

ForeScout CounterACT. Configuration Guide. Version 5.0

ForeScout CounterACT. Configuration Guide. Version 5.0 ForeScout CounterACT Core Extensions Module: Reports Plugin Version 5.0 Table of Contents About the Reports Plugin... 3 Requirements... 3 Supported Browsers... 3 Verify That the Plugin Is Running... 5

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

Mintel Oxygen. User s Guide

Mintel Oxygen. User s Guide Mintel Oxygen User s Guide Welcome to Mintel Oxygen. This user guide will show you everything you need to know to access and utilize the wealth of information available from Mintel Oxygen. The Mintel program

More information

CounterACT Reports Plugin

CounterACT Reports Plugin CounterACT Reports Plugin Version 4.1.8 and Above Table of Contents About the Reports Plugin... 3 Requirements... 3 Supported Browsers... 3 Accessing the Reports Portal... 5 Saving Reports and Creating

More information

Before data can be exported out of CDS, an export definition must be created in the Import/Export utility.

Before data can be exported out of CDS, an export definition must be created in the Import/Export utility. Before data can be exported out of CDS, an export definition must be created in the Import/Export utility. To create an export definition in CDS From the main screen of CDS, click on Database in the main

More information

WHI Virtual Data Enclave (VDE) User Guide

WHI Virtual Data Enclave (VDE) User Guide WHI Virtual Data Enclave (VDE) User Guide Revised: 12/29/2016 Overview The WHI Virtual Data Enclave (VDE) is a remote computing platform that you access over the internet for the secure analysis of restricted

More information

Outline. Mixed models in R using the lme4 package Part 1: Introduction to R. Following the operations on the slides

Outline. Mixed models in R using the lme4 package Part 1: Introduction to R. Following the operations on the slides Outline Mixed models in R using the lme4 package Part 1: Introduction to R Douglas Bates University of Wisconsin - Madison and R Development Core Team UseR!2009, Rennes, France

More information

User Manual of ClimMob Software for Crowdsourcing Climate-Smart Agriculture (Version 1.0) Jacob van Etten

User Manual of ClimMob Software for Crowdsourcing Climate-Smart Agriculture (Version 1.0) Jacob van Etten User Manual of ClimMob Software for Crowdsourcing Climate-Smart Agriculture (Version 1.0) Jacob van Etten Designed for double-sided printing. How to cite van Etten, J. 2014. User Manual for ClimMob, Software

More information