Presentation is loading. Please wait.

Presentation is loading. Please wait.

Introduction to R: The Basics Rosales de Veliz L., David S.L., McElhiney D., Price E., & Brooks G. Contributions from Ragan. M., Terzi. F., & Smith. E.

Similar presentations


Presentation on theme: "Introduction to R: The Basics Rosales de Veliz L., David S.L., McElhiney D., Price E., & Brooks G. Contributions from Ragan. M., Terzi. F., & Smith. E."— Presentation transcript:

1 Introduction to R: The Basics Rosales de Veliz L., David S.L., McElhiney D., Price E., & Brooks G. Contributions from Ragan. M., Terzi. F., & Smith. E. Midwestern Educational Research Association in Illinois, November 2012.

2 Overview 1.Getting Started 2.The Basics 3.Data Input 4.R Commander 5.Descriptive Statistics 6.Means Comparisons 7.Relationships 8.Factor Analysis

3 Getting Started To install R on your MAC or PC you first need to go to http://www.r- project.org/.http://www.r- project.org/

4

5

6

7

8

9

10 Installing Packages

11

12 Using Help Command ?solve help.search or ?? –allows searching for help in various ways

13 R Basics R is object base –Types of objects (scalar, vector, matrices and arrays –Assignment of objects Building a data frame

14 R as a Calculator > 1550+2000 [1] 3550 or various calculations in the same row > 2+3; 5*9; 6-6 [1] 5 [1] 45 [1] 0

15 Operation Symbols SymbolMeaning +Addition -Subtraction *Multiplication /Division % Modulo (estimates remainder in a division) ^Exponential

16 Numbers in R: NAN and NA NAN (not a number) NA (missing value) –Basic handling of missing values > x [1] 1 2 3 4 5 6 7 8 NA > mean(x) [1] NA > mean(x,na.rm=TRUE) [1] 4.5

17 Objects in R Objects in R obtain values by assignment. This is achieved by the gets arrow, <-, and not the equal sign, =. Objects can be of different kinds.

18 Built in Functions R has many built in functions that compute different statistical procedures. Functions in R are followed by ( ). Inside the parenthesis we write the object (vector, matrix, array, dataframe) to which we want to apply the function.

19 Vectors Vectors are variables with one or more values of the same type. A variable with a single value is known as scalar. In R a scalar is a vector of length 1. There are at least three ways to create vectors in R: (a) sequence, (b) concatenation function, and (c) scan function.

20 Arrays Arrays are numeric objects with dimension attributes. The difference between a matrix and an array is that arrays have more than two dimensions.

21 Matrices A matrix is a two dimensional array. The command colnames

22 String Characters In R, string variables are defined by double quotation marks. > letters [1] "a" "b" "c"

23 Subscripts and Indices Select only one or some of the elements in a vector, a matrix or an array. We can do this by using subscripts in square brackets [ ]. In matrices or dataframes the first subscript refers to the row and the second to the column.

24 Dataframe Researchers work mostly with dataframes. With previous knowledge you can built dataframes in R Also, import dataframes into R.

25 R Commander Loading R Commander –Packages -> Install Packages -> Cran Mirror Selection -> Rcmdr

26 Opening R Commander Open R -> Packages - > Load Packages -> Rcmdr

27 Loading Data with R Commander Data -> Load data

28 Active Data with R Commander Data ->Active data set -> Select active data set

29 File/Edit Options

30 Summaries Statistics -> Summaries

31 Descriptive Statistics

32 Mean, Standard Deviation, Skewness, Kurtosis

33

34 Contingency Tables

35

36

37 Correlations in R Commander

38

39 Independent T-Test Statistics -> Independent T Test

40

41

42 One Way ANOVA Statistics -> One Way ANOVA

43

44 Factor Analysis

45

46

47 Graphs in R Commander Box Plot Graphs -> Box Plots

48 Graphs in R Commander Scatter Plot Graphs -> Scatter Plot

49 Helpful Resources Fox, J. (2005). R commander: A basic-statistics user interface to R. Journal of Statistical Software. 14, (9), 1-42. Teetor, P. (2011). 25 Recipes for Getting Started with R. Sebastopol, CA: O’Reilly Media Inc. Teetor, P. (2011). R cookbook. Sebastopol, CA: O’Reilly Media Inc. Crowley, M. J. (2007). The R Book. Chichester, New England: John Wiley & Sons, Ltd.

50 Questions Thank you for your time!! Leslie Rosales de Veliz lr236007@ohio.edulr236007@ohio.edu Shannon David sd156409@ohio.edusd156409@ohio.edu Danielle Mc Elhiney dm356310@ohio.edudm356310@ohio.edu Emily Price ep311508@ohio.eduep311508@ohio.edu Gordon Brooksbrooksg@ohio.edubrooksg@ohio.edu


Download ppt "Introduction to R: The Basics Rosales de Veliz L., David S.L., McElhiney D., Price E., & Brooks G. Contributions from Ragan. M., Terzi. F., & Smith. E."

Similar presentations


Ads by Google