Generalized Linear Models

Size: px
Start display at page:

Download "Generalized Linear Models"

Transcription

1 Generalized Linear Models Summer School Manchester University July 2 6, 2018 Software and Data Graeme.Hutcheson@manchester.ac.uk University of Manchester

2 The slides and R-files for this session are available on the course website... Lecture Slides: Manchester/2018Manchester02SoftwareData.pdf R-notebook: Manchester/2018Manchester02.Rmd...or from the course DVD.

3 This session assumes that you have read the installation notes for R, the R-studio and the Rcmdr... and have managed to install these software packages onto your own laptop or USB drive, or have access to the programmes through the University computer network.

4 This session assumes that you have read the installation notes for R, the R-studio and the Rcmdr... and have managed to install these software packages onto your own laptop or USB drive, or have access to the programmes through the University computer network. If you have not installed the software onto your own computer and it is not available on the University network, please use the software provided on disk (a full copy of R, R-studio and the Rcmdr are provided on the course DVD).

5 This course uses R, which performs statistical analyses, the R-studio, which provides a sophisticated interface for R, and the Rcmdr, which provides a convenient way for using and learning R.

6 This course uses R, which performs statistical analyses, the R-studio, which provides a sophisticated interface for R, and the Rcmdr, which provides a convenient way for using and learning R. R is open-source software developed for multiple platforms (Unix, Linux, MacOS X and Windows) under the GPL licence.

7 This course uses R, which performs statistical analyses, the R-studio, which provides a sophisticated interface for R, and the Rcmdr, which provides a convenient way for using and learning R. R is open-source software developed for multiple platforms (Unix, Linux, MacOS X and Windows) under the GPL licence. The open-source environment is essential for the developement and use of statistics and provides advantages and resources that cannot be matched by commercial packages such as SPSS, STATA, S-PLUS, GenSTAT, Minitab and SAS.

8 R can be installed onto your computer, or directly onto a USB drive or CD and run from any computer. You can, therefore, guarantee access to and control over your software and also take it with you when you travel. This is becoming essential for those of us who use networked computers.

9 R can be installed onto your computer, or directly onto a USB drive or CD and run from any computer. You can, therefore, guarantee access to and control over your software and also take it with you when you travel. This is becoming essential for those of us who use networked computers. R has a vast number of add-on packages that allow a full range of analytical techniques to be employed.

10 R can be installed onto your computer, or directly onto a USB drive or CD and run from any computer. You can, therefore, guarantee access to and control over your software and also take it with you when you travel. This is becoming essential for those of us who use networked computers. R has a vast number of add-on packages that allow a full range of analytical techniques to be employed. It has a simple and automatic installation and updating system.

11 R can be installed onto your computer, or directly onto a USB drive or CD and run from any computer. You can, therefore, guarantee access to and control over your software and also take it with you when you travel. This is becoming essential for those of us who use networked computers. R has a vast number of add-on packages that allow a full range of analytical techniques to be employed. It has a simple and automatic installation and updating system. It has a comprehensive help-system which includes data sets and examples for most packages and a number of books and papers that can also be downloaded for free (look on CRAN, the Comprehensive R Archive Network).

12 An exercise using R This exercise provides a basic introduction to using R.

13 Exercise: A first session using notebooks 1. Start the R-studio From your laptop or from the programmes available on the network... If you are running a windows version of R-studio from a USB or DVD, change to the directory RStudio\bin on this drive and double click on the file rstudio.exe. Note: If your computer has multiple copies of R available select the version you wish to use when asked, or select from the Tools, Global Options... R-studio menu.

14 Exercise: A first session using notebooks 2. Open a new Rnotebook in the R-studio...

15 Exercise: A first session using notebooks

16 Exercise: A first session using notebooks 3. run and edit R code... Plot the graph by running the R-code in the notebook. look at the help available for plot (lower-right R-studio window) try changing the type of graph plot(cars, type="l") plot(cars, type="b") what does changing the aspect ratio do? plot(cars, asp=1) plot(cars, asp=0.01)

17 Exercise: A first session using notebooks Replace plot(cars) with hist(cars) or scatterplotmatrix(cars) Look at the help menu for scatterplotmatrix - try changing the graphs on the diagonal... scatterplotmatrix(cars, diagonal="boxplot") Preview your results...

18 Data An essential skill to master when using R is how to load and manipulate data.

19 There are many ways in which data can be loaded into R. This course uses data recorded in two formats, RData which is a format specifically designed for R and gives easy access to data used in this course, and csv which is a text-format that can be accessed by most, if not all, statistical software.

20 There are many ways in which data can be loaded into R. This course uses data recorded in two formats, RData which is a format specifically designed for R and gives easy access to data used in this course, and csv which is a text-format that can be accessed by most, if not all, statistical software. During this course, we will be loading datasets directly from the internet and from computer media. We will also be loading example data from various R packages. Full details about how to import data from various formats is available on-line at r-data-import-tutorial

21 Exercise: loading and importing data This exercise provides a basic introduction to loading and importing data into R Loading RData and.csv files from the net 2. Loading RData and.csv files from computer media 3. Loading data from packages Note: When completing this exercise it is useful to start a new Rnotebook which you can use to record all your working and return to it at a later date.

22 Exercise: Loading data from the web Loading RData files from the web: The simplest method for loading these data directly from the web is to use the load(url()) command. For example, to load and view ExampleData.RData from

23 Exercise: Loading and importing data Once loaded, the dataset is shown in the R-studio environment window (lower-left). Try clicking on the blue arrow and the data filename...

24 Exercise: Loading and importing data Loading csv files from the web: The simplest method for loading these data directly from the web is to use the Rcmdr...

25 Exercise: Loading and importing data Loading csv files from the web: The simplest method for loading these data directly from the web is to use the Rcmdr... Load the Rcmdr from the packages window. Select Data, Import data, from text file, clipboard or URL...

26 Exercise: Loading and importing data The command to load the dataset is shown in the Rcmdr script window... cut and paste this text into your Rnotebook...

27 Exercise: Loading data from the web When this command is run, examplecsvdata will appear in the R-studio environment window from where it can be viewed...

28 Exercise: Loading and importing data Data can also be loaded from computer media (hard drives, USB, DVD) using the Files menu in R-studio...

29 Exercise: Loading and importing data Data can also be loaded from computer media (hard drives, USB, DVD) using the Files menu in R-studio... RData files can be opened from the File, Open File... menu...

30 Exercise: Loading and importing data Data can also be loaded from computer media (hard drives, USB, DVD) using the Files menu in R-studio... RData files can be opened from the File, Open File... menu... csv files can be opened from the File, Import Dataset..., From Text (base) menu...

31 Exercise: Loading and importing data Data can also be loaded from computer media (hard drives, USB, DVD) using the Files menu in R-studio... RData files can be opened from the File, Open File... menu... csv files can be opened from the File, Import Dataset..., From Text (base) menu... Use the R-studio menu to load the Arrests.RData and happy.csv datasets that are included in the course documentation...

32 Exercise: Loading and importing data Data can also be loaded from computer media (hard drives, USB, DVD) using the Files menu in R-studio... RData files can be opened from the File, Open File... menu... csv files can be opened from the File, Import Dataset..., From Text (base) menu... Use the R-studio menu to load the Arrests.RData and happy.csv datasets that are included in the course documentation... Copy the commands to load these data into your Rnotebook...

33

34 Exercise: Loading and importing data Many R packages provide example data which can be easily loaded from the Rcmdr. To load the ChickWeight dataset which is available in the datasets package...

35 Exercise: Loading and importing data The commands to load the ChickWeight data can be copied from the Rcmdr into your Rnotebook. All files loaded will appear in the list of datasets...

36 Exercise: Loading and importing data Make sure that you have documented all your work. Preview your Rnotebook. Try knitting it to an html, or Word file... Save your Rnotebook file so you can return to this document later.

37 Data Frames and Data Coding

38 Data may be represented using vectors, matrices, lists and data-frames. The system proposed here uses data-frames as they are, perhaps, the easiest to deal with and also provide a structure for data that will be familiar to anyone who has used a spreadsheet or a statistics package such as Excel, Gnumeric, SPSS, STATA, S-Plus or SAS.

39 Data may be represented using vectors, matrices, lists and data-frames. The system proposed here uses data-frames as they are, perhaps, the easiest to deal with and also provide a structure for data that will be familiar to anyone who has used a spreadsheet or a statistics package such as Excel, Gnumeric, SPSS, STATA, S-Plus or SAS. Data-frames are simply matrices where each variable is represented in it s own column. Data-frames are rectangular in shape as they have the same number of observations, or cases, recorded for each variable. Data-frames are particularly useful as they can be used to represent entire data sets and provide a format for easily dealing with data.

40 There are many rules and conventions that can be applied to coding data. The following are a few that can be applied as general rules for data coding. The main principles are that data should... accurately represent the measurement scales (in particular - code categories as categories and not as numbers).

41 There are many rules and conventions that can be applied to coding data. The following are a few that can be applied as general rules for data coding. The main principles are that data should... accurately represent the measurement scales (in particular - code categories as categories and not as numbers). be able to code information without the use of any hidden codes or labels.

42 There are many rules and conventions that can be applied to coding data. The following are a few that can be applied as general rules for data coding. The main principles are that data should... accurately represent the measurement scales (in particular - code categories as categories and not as numbers). be able to code information without the use of any hidden codes or labels. be coded clearly and unabiguously.

43 There are many rules and conventions that can be applied to coding data. The following are a few that can be applied as general rules for data coding. The main principles are that data should... accurately represent the measurement scales (in particular - code categories as categories and not as numbers). be able to code information without the use of any hidden codes or labels. be coded clearly and unabiguously. be of a form that can be easily imported into different software packages (the coded data should be transportable).

44 General Coding Conventions Variable names should be included in the first row.

45 General Coding Conventions Variable names should be included in the first row. There should be NO EMPTY ROWS OR COLUMNS in the data file (spreadsheet).

46 General Coding Conventions Variable names should be included in the first row. There should be NO EMPTY ROWS OR COLUMNS in the data file (spreadsheet). Avoid spaces, commas, underscores, quotation marks or mathematical signs and other strange characters (eg., $%^&*?/\"!~#+-_) whenever possible...

47 General Coding Conventions Variable names should be included in the first row. There should be NO EMPTY ROWS OR COLUMNS in the data file (spreadsheet). Avoid spaces, commas, underscores, quotation marks or mathematical signs and other strange characters (eg., $%^&*?/\"!~#+-_) whenever possible... Avoid using highlights, colours, lines or anything else in the data files.

48 General Coding Conventions Variable names should be included in the first row. There should be NO EMPTY ROWS OR COLUMNS in the data file (spreadsheet). Avoid spaces, commas, underscores, quotation marks or mathematical signs and other strange characters (eg., $%^&*?/\"!~#+-_) whenever possible... Avoid using highlights, colours, lines or anything else in the data files. No formulas.

49 Coding Measurement Scales Explicitly code the 3 basic measurement scales

50 Coding Measurement Scales Explicitly code the 3 basic measurement scales Unordered categorical Code data using text

51 Coding Measurement Scales Explicitly code the 3 basic measurement scales Unordered categorical Code data using text Ordered categorical Code data using text preceded by a number to explicitly indicate order (so that it orders the data appropriately for graphics and analyses)

52 Coding Measurement Scales Explicitly code the 3 basic measurement scales Unordered categorical Code data using text Ordered categorical Code data using text preceded by a number to explicitly indicate order (so that it orders the data appropriately for graphics and analyses) Numeric Code data using numbers that best represents the information.

53 Coding Missing Data Problems may arise for any coding system which uses numeric, hidden or substitution codes to indicate missingness.

54 Coding Missing Data Problems may arise for any coding system which uses numeric, hidden or substitution codes to indicate missingness. Information about missing data is qualitatively different to the information about the variable.

55 Coding Missing Data Problems may arise for any coding system which uses numeric, hidden or substitution codes to indicate missingness. Information about missing data is qualitatively different to the information about the variable. Missing data should be indicated using a unique categorical indicator code such as NA which can be ignored by the analysis (SPSS, however, insists on a numeric code for missing data which is identified using a hidden label).

56 Coding Missing Data Problems may arise for any coding system which uses numeric, hidden or substitution codes to indicate missingness. Information about missing data is qualitatively different to the information about the variable. Missing data should be indicated using a unique categorical indicator code such as NA which can be ignored by the analysis (SPSS, however, insists on a numeric code for missing data which is identified using a hidden label). If there are multiple missing codes (eg., not applicable, unanswered, spoiled) this information needs to be coded separately using an additional variable.

57 Subject Age Nationality EconStatus FactorSocial ManGrade ManGradeMiss subject01 23 Russian 2ses NA 1junior answered subject02 24 English 4ses NA spoiled subject03 31 Welsh 1ses junior answered subject04 NA NA NA NA 3upper answered subject05 43 Irish 2ses middle answered subject06 41 German 2ses NA 2middle answered subject07 19 German 3ses upper answered subject08 38 Portuguese 3ses middle answered subject09 59 Spanish NA NA notapplic subject10 24 Scottish 2ses NA notapplic subject11 39 Irish 4ses junior answered

58 numeric data just numbered Subject Age Nationality EconStatus FactorSocial ManGrade ManGradeMiss subject01 23 Russian 2ses NA 1junior answered subject02 24 English 4ses NA spoiled subject03 31 Welsh 1ses junior answered subject04 NA NA NA NA 3upper answered subject05 43 Irish 2ses middle answered subject06 41 German 2ses NA 2middle answered subject07 19 German 3ses upper answered subject08 38 Portuguese 3ses middle answered subject09 59 Spanish NA NA notapplic subject10 24 Scottish 2ses NA notapplic subject11 39 Irish 4ses junior answered

59 numeric data just numbered Ordered data numbered and named Subject Age Nationality EconStatus FactorSocial ManGrade ManGradeMiss subject01 23 Russian 2ses NA 1junior answered subject02 24 English 4ses NA spoiled subject03 31 Welsh 1ses junior answered subject04 NA NA NA NA 3upper answered subject05 43 Irish 2ses middle answered subject06 41 German 2ses NA 2middle answered subject07 19 German 3ses upper answered subject08 38 Portuguese 3ses middle answered subject09 59 Spanish NA NA notapplic subject10 24 Scottish 2ses NA notapplic subject11 39 Irish 4ses junior answered

60 numeric data just numbered Unordered data just named Ordered data numbered and named Subject Age Nationality EconStatus FactorSocial ManGrade ManGradeMiss subject01 23 Russian 2ses NA 1junior answered subject02 24 English 4ses NA spoiled subject03 31 Welsh 1ses junior answered subject04 NA NA NA NA 3upper answered subject05 43 Irish 2ses middle answered subject06 41 German 2ses NA 2middle answered subject07 19 German 3ses upper answered subject08 38 Portuguese 3ses middle answered subject09 59 Spanish NA NA notapplic subject10 24 Scottish 2ses NA notapplic subject11 39 Irish 4ses junior answered

61 numeric data just numbered Unordered data just named Ordered data numbered and named Subject Age Nationality EconStatus FactorSocial ManGrade ManGradeMiss subject01 23 Russian 2ses NA 1junior answered subject02 24 English 4ses NA spoiled subject03 31 Welsh 1ses junior answered subject04 NA NA NA NA 3upper answered subject05 43 Irish 2ses middle answered subject06 41 German 2ses NA 2middle answered subject07 19 German 3ses upper answered subject08 38 Portuguese 3ses middle answered subject09 59 Spanish NA NA notapplic subject10 24 Scottish 2ses NA notapplic subject11 39 Irish 4ses junior answered missing data coded as NA

62 The data structure above enables the management grade (ManGrade) and the missing data (ManGradeMiss) to be modelled and graphed. Below are shown the relationships between these variables and the FactorSocial variable FactorSocial FactorSocial junior 2middle 3upper ManGrade answered notapplic spoiled ManGrade.miss

63 Data Manipulation and Management

64 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3)

65 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3) sub-setting data (eg., only include males, or records from the last 5 years)

66 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3) sub-setting data (eg., only include males, or records from the last 5 years) re-labelling (change category names)

67 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3) sub-setting data (eg., only include males, or records from the last 5 years) re-labelling (change category names) data transformation (log, sqrt, etc.)

68 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3) sub-setting data (eg., only include males, or records from the last 5 years) re-labelling (change category names) data transformation (log, sqrt, etc.) changing numeric data into categoric (when numbers in the dataset refer to categories; such as year ).

69 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3) sub-setting data (eg., only include males, or records from the last 5 years) re-labelling (change category names) data transformation (log, sqrt, etc.) changing numeric data into categoric (when numbers in the dataset refer to categories; such as year ).

70 Data often require manipulating to run certain analyses and graphics. Some of the more common data transformations that can be applied are: Recoding categories (eg., recode 5 ordered categories into 3) sub-setting data (eg., only include males, or records from the last 5 years) re-labelling (change category names) data transformation (log, sqrt, etc.) changing numeric data into categoric (when numbers in the dataset refer to categories; such as year ). All of these operations can be applied using R...

71 Recoding The 5-category variable EconStatus from the ExampleData dataset can be recoded into 3-categories using the Rcmdr...

72 Recoding The 5-category variable EconStatus from the ExampleData dataset can be recoded into 3-categories using the Rcmdr...

73 Recoding The 5-category variable EconStatus from the ExampleData dataset can be recoded into 3-categories using the Rcmdr... During this course we will be recoding a number of variables, particularly when dealing with ordered categories...

74 Compute a new variable The weight from the ChickWeight dataset can be transformed into the log of weight using the Rcmdr...

75 Compute a new variable The weight from the ChickWeight dataset can be transformed into the log of weight using the Rcmdr...

76 Compute a new variable The weight from the ChickWeight dataset can be transformed into the log of weight using the Rcmdr... The session on data transformation will involve computing new variables...

77 Convert numeric variables to factors The year variable from the Arrests dataset can be re-defined as a categorical variable using the Rcmdr...

78 Convert numeric variables to factors The year variable from the Arrests dataset can be re-defined as a categorical variable using the Rcmdr...

79 Convert numeric variables to factors The year variable from the Arrests dataset can be re-defined as a categorical variable using the Rcmdr... When we analyse the Arrests dataset, year needs to be considered as a categorical variable...

80 Reorder factor levels The nationality variable from the ExampleData dataset can be re-ordered using the Rcmdr...

81 Reorder factor levels The nationality variable from the ExampleData dataset can be re-ordered using the Rcmdr...

82 Reorder factor levels The nationality variable from the ExampleData dataset can be re-ordered using the Rcmdr...

83 Reorder factor levels The nationality variable from the ExampleData dataset can be re-ordered using the Rcmdr... Reordering categories is particularly useful for arranging categories for graphical displays and for assigning a specific order to ordered categorical data (eg., low = 1, medium = 2, high = 3)

84 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels...

85 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels... 0 = none

86 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels... 0 = none 1,2 = minor

87 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels... 0 = none 1,2 = minor 3,4 = medium

88 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels... 0 = none 1,2 = minor 3,4 = medium 5,6 = major

89 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels... 0 = none 1,2 = minor 3,4 = medium 5,6 = major Using the Rcmdr, draw a bar graph of checkscat

90 Exercise Start a new Rnotebook to save examples of data manipulation. Open the Arrests dataset... Convert the numeric variable checks to a categorical variable with 4 categories with the following labels... 0 = none 1,2 = minor 3,4 = medium 5,6 = major Using the Rcmdr, draw a bar graph of checkscat change the order of the categories in checkscat so that none appears on left of the bar graph and major appears on the right.

91 Exercise compute a new variable (agemonth) which shows age in months

92 Exercise compute a new variable (agemonth) which shows age in months split age up into four groups using the Rcmdr function bin numeric variable...

93 Exercise compute a new variable (agemonth) which shows age in months split age up into four groups using the Rcmdr function bin numeric variable... Copy and paste your commands into an Rnotebook. Fully document your work.

94 Exercise compute a new variable (agemonth) which shows age in months split age up into four groups using the Rcmdr function bin numeric variable... Copy and paste your commands into an Rnotebook. Fully document your work. Save your Rnotebook so that you can add any new data manipulation techniques that you subsequently come across.

95 The problem of data proliferation Data are routinely manipulated and changed by, for example, recoding variables, combining and renaming categories, transforming observations, changing reference categories, dummy-coding variables and changing measurement scales. If these changes are written to the data-frame it quickly increases in size and complexity with individual variables often represented in multiple columns.

96 The problem of data proliferation Data are routinely manipulated and changed by, for example, recoding variables, combining and renaming categories, transforming observations, changing reference categories, dummy-coding variables and changing measurement scales. If these changes are written to the data-frame it quickly increases in size and complexity with individual variables often represented in multiple columns. Recoded data may also be saved into new data sets; For example, Results.csv, ResultsAll.csv, ResultsFinal.csv, ResultsPublish.csv, ResultsFinal2.csv, Results25/07/18.csv, ResultsVeryFinal.csv, ResultsVeryFinal02.csv etc.,.

97 This proliferation of variables and data sets can cause problems...

98 This proliferation of variables and data sets can cause problems... It is confusing as a single attribute may be represented using multiple variables.

99 This proliferation of variables and data sets can cause problems... It is confusing as a single attribute may be represented using multiple variables. If data are amended or corrected, all data files and recoded copies of the data also need amending.

100 This proliferation of variables and data sets can cause problems... It is confusing as a single attribute may be represented using multiple variables. If data are amended or corrected, all data files and recoded copies of the data also need amending. Analyses may apply to different versions of your data.

101 A solution to data proliferation: Use a master data-frame that contains the most accurate and complete representation of the information available. This data-frame is the only one that is saved to disk and and is the data file that is accessed at the start of all analysis sessions.

102 A solution to data proliferation: Use a master data-frame that contains the most accurate and complete representation of the information available. This data-frame is the only one that is saved to disk and and is the data file that is accessed at the start of all analysis sessions. Any changes to the data (recodes, transformations, renaming etc.,) should be made on a temporary basis and not saved to the master data file (unless absolutely necessary).

103 A solution to data proliferation: Use a master data-frame that contains the most accurate and complete representation of the information available. This data-frame is the only one that is saved to disk and and is the data file that is accessed at the start of all analysis sessions. Any changes to the data (recodes, transformations, renaming etc.,) should be made on a temporary basis and not saved to the master data file (unless absolutely necessary). The master data file should ONLY include the most complete coding of the information with each variable accurately coded according to its measurement scale.

104 This method of working with data has a number of advantages... Data sets and variables do not proliferate.

105 This method of working with data has a number of advantages... Data sets and variables do not proliferate. You may only load the data you actually need for each analysis.

106 This method of working with data has a number of advantages... Data sets and variables do not proliferate. You may only load the data you actually need for each analysis. The command files document accurately how your data have been coded.

Practical Quantitative Analysis

Practical Quantitative Analysis Manchester University Dealing with Data in R www.research-training.net/2018manchesterma Graeme.Hutcheson@manchester.ac.uk University of Manchester Your MA dissertation data If you are going to be using

More information

a course in statistical modelling. January 15 17, 2014

a course in statistical modelling. January 15 17, 2014 Methods@Manchester a course in statistical modelling January 15 17, 2014 An introduction to R, the R-studio and the Rcmdr Graeme Hutcheson Manchester Institute of Education University of Manchester This

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

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

To appear in... Journal of Modelling in Management. Tutorial Section. 2011, No. 1. Data Coding, Management and Manipulation. Measurement Scales

To appear in... Journal of Modelling in Management. Tutorial Section. 2011, No. 1. Data Coding, Management and Manipulation. Measurement Scales To appear in... Journal of Modelling in Management 0, No. Tutorial Section Data Coding, Management and Manipulation This tutorial discusses a very common problem in quantitative methods the appropriate

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

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

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

Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction

Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction In this exercise, we will learn how to reorganize and reformat a data

More information

Running Minitab for the first time on your PC

Running Minitab for the first time on your PC Running Minitab for the first time on your PC Screen Appearance When you select the MINITAB option from the MINITAB 14 program group, or click on MINITAB 14 under RAS you will see the following screen.

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

UNIT 4. Research Methods in Business

UNIT 4. Research Methods in Business UNIT 4 Preparing Data for Analysis:- After data are obtained through questionnaires, interviews, observation or through secondary sources, they need to be edited. The blank responses, if any have to be

More information

Data analysis using Microsoft Excel

Data analysis using Microsoft Excel Introduction to Statistics Statistics may be defined as the science of collection, organization presentation analysis and interpretation of numerical data from the logical analysis. 1.Collection of Data

More information

Quick Start Guide Jacob Stolk PhD Simone Stolk MPH November 2018

Quick Start Guide Jacob Stolk PhD Simone Stolk MPH November 2018 Quick Start Guide Jacob Stolk PhD Simone Stolk MPH November 2018 Contents Introduction... 1 Start DIONE... 2 Load Data... 3 Missing Values... 5 Explore Data... 6 One Variable... 6 Two Variables... 7 All

More information

INTRODUCTION TO SPSS. Anne Schad Bergsaker 13. September 2018

INTRODUCTION TO SPSS. Anne Schad Bergsaker 13. September 2018 INTRODUCTION TO SPSS Anne Schad Bergsaker 13. September 2018 BEFORE WE BEGIN... LEARNING GOALS 1. Be familiar with and know how to navigate between the different windows in SPSS 2. Know how to write a

More information

Getting started with Minitab 14 for Windows

Getting started with Minitab 14 for Windows INFORMATION SYSTEMS SERVICES Getting started with Minitab 14 for Windows This document provides an introduction to the Minitab (Version 14) statistical package. AUTHOR: Information Systems Services, University

More information

Charts in Excel 2003

Charts in Excel 2003 Charts in Excel 2003 Contents Introduction Charts in Excel 2003...1 Part 1: Generating a Basic Chart...1 Part 2: Adding Another Data Series...3 Part 3: Other Handy Options...5 Introduction Charts in Excel

More information

A brief introduction to R

A brief introduction to R A brief introduction to R Ionuţ Florescu Dept. of Mathematical Sciences Stevens Institute of Technology May 15, 2009 1 What is R? Where to obtain it? R is a software package, one of the most versatile

More information

Creating a data file and entering data

Creating a data file and entering data 4 Creating a data file and entering data There are a number of stages in the process of setting up a data file and analysing the data. The flow chart shown on the next page outlines the main steps that

More information

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide SyncFirst Standard Quick Start Guide Step-By-Step Guide How to Use This Manual This manual contains the complete documentation set for the SyncFirst system. The SyncFirst documentation set consists of

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

#61-844SW ThermalVision Software Instruction Manual

#61-844SW ThermalVision Software Instruction Manual ThermalVision Software Instruction Manual ND-7035-1 Page 1 of 23 Contents 1. Installing the ThermalVision software onto a PC... 3 2. Transferring saved images from the camera to the PC.... 3 2.1. Direct

More information

For many people, learning any new computer software can be an anxietyproducing

For many people, learning any new computer software can be an anxietyproducing 1 Getting to Know Stata 12 For many people, learning any new computer software can be an anxietyproducing task. When that computer program involves statistics, the stress level generally increases exponentially.

More information

EXCELLING WITH ANALYSIS AND VISUALIZATION

EXCELLING WITH ANALYSIS AND VISUALIZATION EXCELLING WITH ANALYSIS AND VISUALIZATION A PRACTICAL GUIDE FOR DEALING WITH DATA Prepared by Ann K. Emery July 2016 Ann K. Emery 1 Welcome Hello there! In July 2016, I led two workshops Excel Basics for

More information

Surviving SPSS.

Surviving SPSS. Surviving SPSS http://dataservices.gmu.edu/workshops/spss http://dataservices.gmu.edu/software/spss Debby Kermer George Mason University Libraries Data Services Research Consultant Mason Data Services

More information

Chapter 3: The IF Function and Table Lookup

Chapter 3: The IF Function and Table Lookup Chapter 3: The IF Function and Table Lookup Objectives This chapter focuses on the use of IF and LOOKUP functions, while continuing to introduce other functions as well. Here is a partial list of what

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

Econ Stata Tutorial I: Reading, Organizing and Describing Data. Sanjaya DeSilva

Econ Stata Tutorial I: Reading, Organizing and Describing Data. Sanjaya DeSilva Econ 329 - Stata Tutorial I: Reading, Organizing and Describing Data Sanjaya DeSilva September 8, 2008 1 Basics When you open Stata, you will see four windows. 1. The Results window list all the commands

More information

Basic concepts and terms

Basic concepts and terms CHAPTER ONE Basic concepts and terms I. Key concepts Test usefulness Reliability Construct validity Authenticity Interactiveness Impact Practicality Assessment Measurement Test Evaluation Grading/marking

More information

Preparatory steps before you begin

Preparatory steps before you begin Preparatory steps before you begin If the course comes on a CD-ROM / DVD-ROM If your course is on a CD-ROM, it might be easiest to copy its entire content, i.e., the folder containing the course, to your

More information

INTRODUCTORY LAB INTRODUCTION TO STATCRUNCH 5.0

INTRODUCTORY LAB INTRODUCTION TO STATCRUNCH 5.0 INTRODUCTORY LAB INTRODUCTION TO STATCRUNCH 5.0 StatCrunch is a free web-based statistical software package containing all statistical features covered in introductory statistics courses. It is very easy

More information

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America.

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. Exsys RuleBook Selector Tutorial Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. This documentation, as well as the software described in it, is furnished under license

More information

AN OVERVIEW AND EXPLORATION OF JMP A DATA DISCOVERY SYSTEM IN DAIRY SCIENCE

AN OVERVIEW AND EXPLORATION OF JMP A DATA DISCOVERY SYSTEM IN DAIRY SCIENCE AN OVERVIEW AND EXPLORATION OF JMP A DATA DISCOVERY SYSTEM IN DAIRY SCIENCE A.P. Ruhil and Tara Chand National Dairy Research Institute, Karnal-132001 JMP commonly pronounced as Jump is a statistical software

More information

IST Computational Tools for Statistics I. DEÜ, Department of Statistics

IST Computational Tools for Statistics I. DEÜ, Department of Statistics IST 1051 Computational Tools for Statistics I 1 DEÜ, Department of Statistics Course Objectives Computational Tools for Statistics-I course can increase the understanding of statistics and helps to learn

More information

One does not necessarily have special statistical software to perform statistical analyses.

One does not necessarily have special statistical software to perform statistical analyses. Appendix F How to Use a Data Spreadsheet Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures.

More information

SAS Business Rules Manager 1.2

SAS Business Rules Manager 1.2 SAS Business Rules Manager 1.2 User s Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Business Rules Manager 1.2. Cary,

More information

Creating and Managing Surveys

Creating and Managing Surveys Creating and Managing Surveys May 2014 Survey Software Contents 1. INTRODUCTION 2 2. HOW TO ACCESS THE SURVEY SOFTWARE 3 The User Profile 3 3. GETTING STARTED ON A NEW SURVEY 5 4. FURTHER WORK ON SURVEY

More information

Opening a Data File in SPSS. Defining Variables in SPSS

Opening a Data File in SPSS. Defining Variables in SPSS Opening a Data File in SPSS To open an existing SPSS file: 1. Click File Open Data. Go to the appropriate directory and find the name of the appropriate file. SPSS defaults to opening SPSS data files with

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information

The Top 10 New Features in KNIME 2.8. Rosaria Silipo KNIME.com AG, San Francisco

The Top 10 New Features in KNIME 2.8. Rosaria Silipo KNIME.com AG, San Francisco The Top 10 New Features in KNIME 2.8 Rosaria Silipo KNIME.com AG, San Francisco KNIME 2.8 KNIME 2.8 was out end of July 2013 Many New Features Documentation available at: http://tech.knime.org/whats-new-in-knime-28

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

command.name(measurement, grouping, argument1=true, argument2=3, argument3= word, argument4=c( A, B, C ))

command.name(measurement, grouping, argument1=true, argument2=3, argument3= word, argument4=c( A, B, C )) Tutorial 3: Data Manipulation Anatomy of an R Command Every command has a unique name. These names are specific to the program and case-sensitive. In the example below, command.name is the name of the

More information

Experimental epidemiology analyses with R and R commander. Lars T. Fadnes Centre for International Health University of Bergen

Experimental epidemiology analyses with R and R commander. Lars T. Fadnes Centre for International Health University of Bergen Experimental epidemiology analyses with R and R commander Lars T. Fadnes Centre for International Health University of Bergen 1 Click to add an outline 2 How to install R commander? - install.packages("rcmdr",

More information

Understanding File Management

Understanding File Management UNIT B Windows 2007 Understanding File Management Files You Will Need: Win B-1.bmp Win B-2.bmp Most of your work on a computer involves using programs to create files. For example, you might use WordPad

More information

SPSS Statistics Patch Description

SPSS Statistics Patch Description SPSS Statistics 18.0.1 Patch Description Product: SPSS Statistics 18.0.1 Date: December 8, 2009 Description: This patch resolves the following issues: 1. A problem with reading large SAS data files was

More information

R syntax guide. Richard Gonzalez Psychology 613. August 27, 2015

R syntax guide. Richard Gonzalez Psychology 613. August 27, 2015 R syntax guide Richard Gonzalez Psychology 613 August 27, 2015 This handout will help you get started with R syntax. There are obviously many details that I cannot cover in these short notes but these

More information

CLAREMONT MCKENNA COLLEGE. Fletcher Jones Student Peer to Peer Technology Training Program. Basic Statistics using Stata

CLAREMONT MCKENNA COLLEGE. Fletcher Jones Student Peer to Peer Technology Training Program. Basic Statistics using Stata CLAREMONT MCKENNA COLLEGE Fletcher Jones Student Peer to Peer Technology Training Program Basic Statistics using Stata An Introduction to Stata A Comparison of Statistical Packages... 3 Opening Stata...

More information

FIRESTORM TX2 SCRIPT INSTRUCTIONS

FIRESTORM TX2 SCRIPT INSTRUCTIONS We recommend that you use our free FireStorm Show Maker Software to create firing scripts. The software provides an easy way to generate and error check scripts for the FireStorm Firing System. FireStorm

More information

Introduction (SPSS) Opening SPSS Start All Programs SPSS Inc SPSS 21. SPSS Menus

Introduction (SPSS) Opening SPSS Start All Programs SPSS Inc SPSS 21. SPSS Menus Introduction (SPSS) SPSS is the acronym of Statistical Package for the Social Sciences. SPSS is one of the most popular statistical packages which can perform highly complex data manipulation and analysis

More information

STAT 113: R/RStudio Intro

STAT 113: R/RStudio Intro STAT 113: R/RStudio Intro Colin Reimer Dawson Last Revised September 1, 2017 1 Starting R/RStudio There are two ways you can run the software we will be using for labs, R and RStudio. Option 1 is to log

More information

OpenCSAS : READ ME File

OpenCSAS : READ ME File Introduction OpenCSAS : READ ME File OpenCSAS is a data-entry and reporting tool for centric systematic area sample (CSAS) coverage surveys providing: Simple grid-based data-entry One-click reporting of:

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Writing Formulae with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 2.0 TUT 47 UNIVERSITY OF LEEDS

More information

Cite: CTSA NIH Grant UL1- RR024982

Cite: CTSA NIH Grant UL1- RR024982 PREREQUISITE FOR USE Review and approval of the project by the Institutional Review Board is required If colleting data for the purpose of human subject s research. Cite: CTSA NIH Grant UL1- RR024982 1

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Example how not to do it: JMP in a nutshell 1 HR, 17 Apr Subject Gender Condition Turn Reactiontime. A1 male filler

Example how not to do it: JMP in a nutshell 1 HR, 17 Apr Subject Gender Condition Turn Reactiontime. A1 male filler JMP in a nutshell 1 HR, 17 Apr 2018 The software JMP Pro 14 is installed on the Macs of the Phonetics Institute. Private versions can be bought from

More information

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline 2 T U T O R I A L Objectives In this tutorial, you will learn to: Navigate Visual Studio.NET s Start Page. Create a Visual Basic.NET solution. Use the IDE s menus and toolbars. Manipulate windows in the

More information

2. Getting started with MLwiN

2. Getting started with MLwiN 2. Getting started with MLwiN Introduction This chapter aims to provide you with some practice with MLwiN commands before you begin to fit multilevel models. It is may be helpful if you have already read

More information

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7 Business Data Analysis MA0123 Dr Gavin Shaddick Department of Mathematical Sciences g.shaddick@bath.ac.uk 4W 5.7 Lectures and computer labs Two lectures a week (Monday and Friday). One computing lab (time

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

ebook Writing Workshop Practical 1: A First Logfile-Style ebook

ebook Writing Workshop Practical 1: A First Logfile-Style ebook ebook Writing Workshop Practical 1: A First Logfile-Style ebook Introduction In this practical we will aim to get you familiar with both the TREE (Template Reading & Execution Environment) and DEEP (Documents

More information

Work with External Data in SPSS or Excel Format - Open SPSS data

Work with External Data in SPSS or Excel Format - Open SPSS data Work with External Data in SPSS or Excel Format - Open SPSS data Contents WORK WITH EXTERNAL DATA IN SPSS OR EXCEL FORMAT - OPEN SPSS DATA... 1 Open an Excel file... 1 Create new External File... 2 Save

More information

MPC2XL DATA TRANSFER UTILITY FOR MED-PC USERS SOF-731 USER S MANUAL. DOC-036 Rev Copyright 2012 All Rights Reserved

MPC2XL DATA TRANSFER UTILITY FOR MED-PC USERS SOF-731 USER S MANUAL. DOC-036 Rev Copyright 2012 All Rights Reserved instrumentation and software for research MPC2XL DATA TRANSFER UTILITY FOR MED-PC USERS SOF-731 USER S MANUAL DOC-036 Rev. 2.4 Copyright 2012 All Rights Reserved Med Associates Inc. P.O. Box 319 St. Albans,

More information

Creates a 1 X 1 matrix (scalar) with a value of 1 in the column 1, row 1 position and prints the matrix aaa in the command window.

Creates a 1 X 1 matrix (scalar) with a value of 1 in the column 1, row 1 position and prints the matrix aaa in the command window. EE 350L: Signals and Transforms Lab Spring 2007 Lab #1 - Introduction to MATLAB Lab Handout Matlab Software: Matlab will be the analytical tool used in the signals lab. The laboratory has network licenses

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

QDA Miner. Addendum v2.0

QDA Miner. Addendum v2.0 QDA Miner Addendum v2.0 QDA Miner is an easy-to-use qualitative analysis software for coding, annotating, retrieving and reviewing coded data and documents such as open-ended responses, customer comments,

More information

Creating a Pivot Table

Creating a Pivot Table Contents Introduction... 1 Creating a Pivot Table... 1 A One-Dimensional Table... 2 A Two-Dimensional Table... 4 A Three-Dimensional Table... 5 Hiding and Showing Summary Values... 5 Adding New Data and

More information

LIBREOFFICE TRAINING PROTOCOL

LIBREOFFICE TRAINING PROTOCOL LIBREOFFICE TRAINING PROTOCOL LibreOffice Training Protocol is a reference for professionals offering training services for LibreOffice, targeted at organizations and individuals deploying the free office

More information

QDS v5.0 New Features Documentation

QDS v5.0 New Features Documentation QDS v5.0 New Features Documentation NOVA Research Company Design Studio Features... 3 Design Studio Preview Mode Enhancements... 3 Preview Mode: Display Variable Name in Question Text... 3 Preview Mode:

More information

Book IX. Developing Applications Rapidly

Book IX. Developing Applications Rapidly Book IX Developing Applications Rapidly Contents at a Glance Chapter 1: Building Master and Detail Pages Chapter 2: Creating Search and Results Pages Chapter 3: Building Record Insert Pages Chapter 4:

More information

Dr Wan Nor Arifin Unit of Biostatistics and Research Methodology, Universiti Sains Malaysia.

Dr Wan Nor Arifin Unit of Biostatistics and Research Methodology, Universiti Sains Malaysia. Introduction to SPSS Dr Wan Nor Arifin Unit of Biostatistics and Research Methodology, Universiti Sains Malaysia. wnarifin@usm.my Outlines Introduction Data Editor Data View Variable View Menus Shortcut

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

NEW -- NEW -- NEW - READ THE 'Q-DB SECTION

NEW -- NEW -- NEW - READ THE 'Q-DB SECTION NEW -- NEW -- NEW - READ THE 'Q-DB SECTION QUICK LIST - NEW FEATURE as of v.6.0006 The basic Quick List functions are really easy to use. You may well find them one of the most useful 'extras' the program

More information

An Introduction to Minitab Statistics 529

An Introduction to Minitab Statistics 529 An Introduction to Minitab Statistics 529 1 Introduction MINITAB is a computing package for performing simple statistical analyses. The current version on the PC is 15. MINITAB is no longer made for the

More information

Instructor Manual Contents

Instructor Manual Contents Instructor Manual Contents Welcome to egrade Plus...1 The Roles Within egrade Plus...1 Master Course Instructor...1 Class Section Instructor...2 Navigating egrade Plus...2 Using the Universal Navigation

More information

Microsoft Excel 2010

Microsoft Excel 2010 www.jadehorizon.com Microsoft Excel 2010 Sorting and Filtering Sorting and Filtering Microsoft Excel 2010 Table of Contents Table of Contents INTRODUCTION... 3 CONVENTIONS... 3 TABLE DESIGN RULES... 5

More information

Writing Data files for Photo-Finish for a Lynx system. Ian Anholm

Writing Data files for Photo-Finish for a Lynx system. Ian Anholm Writing Data files for Photo-Finish for a Lynx system Presentation prepared by: Ryan Murphy Presentation to: Claire Furlong Date: XX/XX/XX Ian Anholm Aim of the workshop The aim of the workshop is to show

More information

BIOL 417: Biostatistics Laboratory #3 Tuesday, February 8, 2011 (snow day February 1) INTRODUCTION TO MYSTAT

BIOL 417: Biostatistics Laboratory #3 Tuesday, February 8, 2011 (snow day February 1) INTRODUCTION TO MYSTAT BIOL 417: Biostatistics Laboratory #3 Tuesday, February 8, 2011 (snow day February 1) INTRODUCTION TO MYSTAT Go to the course Blackboard site and download Laboratory 3 MYSTAT Intro.xls open this file in

More information

Windows Key e: Press and hold down the Windows (Start) Key and tap the letter e one time. Release these keys and Windows File Explorer will open.

Windows Key e: Press and hold down the Windows (Start) Key and tap the letter e one time. Release these keys and Windows File Explorer will open. Copyright 2009 BOSMA Enterprises Chapter 14 Windows File Explorer Key Terms Windows Key e: Press and hold down the Windows (Start) Key and tap the letter e one time. Release these keys and Windows File

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

More information

STAT 213: R/RStudio Intro

STAT 213: R/RStudio Intro STAT 213: R/RStudio Intro Colin Reimer Dawson Last Revised February 10, 2016 1 Starting R/RStudio Skip to the section below that is relevant to your choice of implementation. Installing R and RStudio Locally

More information

Excel. module. Lesson 1 Create a Worksheet Lesson 2 Create and Revise. Lesson 3 Edit and Format

Excel. module. Lesson 1 Create a Worksheet Lesson 2 Create and Revise. Lesson 3 Edit and Format module 2 Excel Lesson 1 Create a Worksheet Lesson 2 Create and Revise Formulas Lesson 3 Edit and Format Worksheets Lesson 4 Print Worksheets Lesson 5 Modify Workbooks Lesson 6 Create and Modify Charts

More information

INTRODUCTION to. Program in Statistics and Methodology (PRISM) Daniel Blake & Benjamin Jones January 15, 2010

INTRODUCTION to. Program in Statistics and Methodology (PRISM) Daniel Blake & Benjamin Jones January 15, 2010 INTRODUCTION to Program in Statistics and Methodology (PRISM) Daniel Blake & Benjamin Jones January 15, 2010 While we are waiting Everyone who wishes to work along with the presentation should log onto

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

Creating and Managing Surveys

Creating and Managing Surveys S Computing Services Department Creating and Managing Surveys Select Survey Apr 2016 Page 0 of 27 U n i v e r s i t y o f L i v e r p o o l Table of Contents 1. Introduction... 2 2. How to Access the Survey

More information

Stata: A Brief Introduction Biostatistics

Stata: A Brief Introduction Biostatistics Stata: A Brief Introduction Biostatistics 140.621 2005-2006 1. Statistical Packages There are many statistical packages (Stata, SPSS, SAS, Splus, etc.) Statistical packages can be used for Analysis Data

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

Your Total Training Resource. Microsoft OneNote. To Schedule / Need Additional Information

Your Total Training Resource. Microsoft OneNote. To Schedule / Need Additional Information Microsoft OneNote It's your very own digital notebook, so you can keep notes, ideas, web pages, photos, even audio and video all in one place. Whether you're at home, in the office, or on the move, you

More information

Podium Plus Data Analysis Software. User Manual. SWIS10 Version

Podium Plus Data Analysis Software. User Manual. SWIS10 Version SWIS10 Version Issue 1.10 February 2005 Contents 1 Introduction 6 1.1 What is Podium Plus? 6 1.2 About This Manual 6 1.3 Typographical Conventions 7 1.4 Getting Technical Support 7 2 Getting Started 8

More information

SAP InfiniteInsight 7.0 Modeler - Association Rules Getting Started Guide

SAP InfiniteInsight 7.0 Modeler - Association Rules Getting Started Guide End User Documentation Document Version: 1.0 2014-11 CUSTOMER SAP InfiniteInsight 7.0 Modeler - Association Rules Getting Started Guide Table of Contents Table of Contents About this Document... 4 Who

More information

LAB 1: Graphical Descriptions of Data

LAB 1: Graphical Descriptions of Data LAB 1: Graphical Descriptions of Data Part I: Before Class 1) Read this assignment all the way through; 2) Know the terms and understand the concepts of: - scatterplots - stemplots - distributions - histograms

More information

Spreadsheet Structure

Spreadsheet Structure Exercise The intersection of columns and rows in a spreadsheet creates cells. Each cell on a spreadsheet has a name or address. It is named according to its location, the name of the column first followed

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

SPSS 11.5 for Windows Assignment 2

SPSS 11.5 for Windows Assignment 2 1 SPSS 11.5 for Windows Assignment 2 Material covered: Generating frequency distributions and descriptive statistics, converting raw scores to standard scores, creating variables using the Compute option,

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Surviving SPSS.

Surviving SPSS. Surviving SPSS http://dataservices.gmu.edu/workshops/spss http://dataservices.gmu.edu/software/spss Debby Kermer George Mason University Libraries Data Services Research Consultant Mason Data Services

More information

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

More information

EPIB Four Lecture Overview of R

EPIB Four Lecture Overview of R EPIB-613 - Four Lecture Overview of R R is a package with enormous capacity for complex statistical analysis. We will see only a small proportion of what it can do. The R component of EPIB-613 is divided

More information

Data Management using Excel

Data Management using Excel Data Management using Excel Importing information from different sources Excel can import information from many different sources - the following exercises will import information using three different

More information

Introduction to Minitab 1

Introduction to Minitab 1 Introduction to Minitab 1 We begin by first starting Minitab. You may choose to either 1. click on the Minitab icon in the corner of your screen 2. go to the lower left and hit Start, then from All Programs,

More information