Skip to ContentGo to accessibility pageKeyboard shortcuts menu
OpenStax Logo
Principles of Finance

13.7 The R Statistical Analysis Tool

Principles of Finance13.7 The R Statistical Analysis Tool

By the end of this section, you will be able to:

  • Create a vector of data values for the R statistical analysis tool.
  • Write basic statistical commands using the R statistical analysis tool.

Commands and Vectors in R

R is a statistical analysis tool that is widely used in the finance industry. It is available as a free program and provides an integrated suite of functions for data analysis, graphing, and statistical programming. R is increasingly being used as a data analysis and statistical tool as it is an open-source language and additional features are constantly being added by the user community. The tool can be used on many different computing platforms and can be downloaded at the R Project website.

Once you have installed and started R on your computer, at the bottom of the R console, you should see the symbol >, which indicates that R is ready to accept commands.


    Type 'demo()' for some demos, 'help()' for on-line help, or
    'help.start()' for an HTML browser interface to help.

    Type 'q()' to quit R.

    > 
    

R is a command-driven language, meaning that the user enters commands at the prompt, which R then executes one at a time. R can also execute a program containing multiple commands. There are ways to add a graphic user interface (GUI) to R. An example of a GUI tool for R is RStudio.

The R command line can be used to perform any numeric calculation, similar to a handheld calculator. For example, to evaluate the expression 10+3·7,10+3·7, enter the following expression at the command line prompt and hit return:

    > 10+3*7

    [1] 31    
    

Most calculations in R are handled via functions. For statistical analysis, there are many preestablished functions in R to calculate mean, median, standard deviation, quartiles, and so on. Variables can be named and assigned values using the assignment operator <-. For example, the following R commands assign the value of 20 to the variable named x and assign the value of 30 to the variable named y:

    > x <- 20

    > y <- 30
    

These variable names can be used in any calculation, such as multiplying x by y to produce the result 600:

    > x*y

    [1] 600
    

The typical method for using functions in statistical applications is to first create a vector of data values. There are several ways to create vectors in R. For example, the c function is often used to combine values into a vector. The following R command will generate a vector called salaries that contains the data values 40,000, 50,000, 75,000, and 92,000:

    > salaries <- c(40000, 50000, 75000, 92000)
    

This vector salaries can then be used in statistical functions such as mean, median, min, max, and so on, as shown:

    > mean(salaries)

    [1] 64250
      
    > median(salaries)
      
    [1] 62500
      
    > min(salaries)
      
    [1] 40000
      
    > max(salaries)
      
    [1] 92000      
    

Another option for generating a vector in R is to use the seq function, which will automatically generate a sequence of numbers. For example, we can generate a sequence of numbers from 1 to 5, incremented by 0.5, and call this vector example1, as follows:

    > example1 <- seq(1, 5, by=0.5)
    

If we then type the name of the vector and hit enter, R will provide a listing of numeric values for that vector name.

    > salaries

    [1] 40000 50000 75000 92000
      
    > example1
      
    [1] 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
    

Often, we are interested in generating a quick statistical summary of a data set in the form of its mean, median, quartiles, min, and max. The R command called summary provides these results.

    > summary(salaries)

     Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
   
     40000   47500   62500   64250   79250   92000
    

For measures of spread, R includes a command for standard deviation, called sd, and a command for variance, called var. The standard deviation and variance are calculated with the assumption that the data set was collected from a sample.

    > sd(salaries)

    [1] 23641.42
      
    > var(salaries)
      
    [1] 558916667
    

To calculate a weighted mean in R, create two vectors, one of which contains the data values and the other of which contains the associated weights. Then enter the R command weighted.mean(values, weights).

The following is an example of a weighted mean calculation in R:
Assume your portfolio contains 1,000 shares of XYZ Corporation, purchased on three different dates, as shown in Table 13.14. Calculate the weighted mean of the purchase price, where the weights are based on the number of shares in the portfolio.

Date Purchased Purchase Price ($) Number of Shares Purchased
January 17 78 200
February 10 122 300
March 23 131 500
Total   1,000
Table 13.14 Portfolio of XYZ Shares

Here is how you would create two vectors in R: the price vector will contain the purchase price, and the shares vector will contain the number of shares. Then execute the R command weighted.mean(price, shares), as follows:

    > price <- c(78, 122, 131)

    > shares <- c(200, 300, 500)
      
    > weighted.mean(price, shares)
      
    [1] 117.7
    

A list of common R statistical commands appears in Table 13.15.

R Command Result
mean( ) Calculates the arithmetic mean
median( ) Calculates the median
min( ) Calculates the minimum value
max( ) Calculates the maximum value
weighted.mean( ) Calculates the weighted mean
sum( ) Calculates the sum of values
summary( ) Calculates the mean, median, quartiles, min, and max
sd( ) Calculates the sample standard deviation
var( ) Calculates the sample variance
IQR( ) Calculates the interquartile range
barplot( ) Plots a bar chart of non-numeric data
boxplot( ) Plots a boxplot of numeric data
hist( ) Plots a histogram of numeric data
plot( ) Plots various graphs, including a scatter plot
freq( ) Creates a frequency distribution table
Table 13.15 List of Common R Statistical Commands

Graphing in R

There are many statistical applications in R, and many graphical representations are possible, such as bar graphs, histograms, time series plots, scatter plots, and others. The basic command to create a plot in R is the plot command, plot(x, y), where x is a vector containing the x-values of the data set and y is a vector containing the y-values of the data set.

The general format of the command is as follows:

    >plot(x, y, main="text for title of graph", xlab="text for x-axis label", ylab="text for y-axis label")
    

For example, we are interested in creating a scatter plot to examine the correlation between the value of the S&P 500 and Nike stock prices. Assume we have the data shown in Table 13.13, collected over a one-year time period.

Note that data can be read into R from a text file or Excel file or from the clipboard by using various R commands. Assume the values of the S&P 500 have been loaded into the vector SP500 and the values of Nike stock prices have been loaded into the vector Nike. Then, to generate the scatter plot, we can use the following R command:

    >plot(SP500, Nike, main="Scatter Plot of Nike Stock Price vs. S&P 500", xlab="S&P 500", ylab="Nike Stock Price")
    

As a result of these commands, R provides the scatter plot shown in Figure 13.10. This is the same data that was used to generate the scatter plot in Figure 13.8 in Excel.

A scatter plot generated by the R statistical program compares the Nike stock price against the Standard & Poor's 500 stock market index. The scatter plot shows that the Nike stock price rises from approximately 85 to 140, as the S&P 500 rises from approximately 2900 to 4000. The data points generally align along an upwardly sloping line.
Figure 13.10 Scatter Plot Generated by R for Nike Stock Price versus S&P 500
Order a print copy

As an Amazon Associate we earn from qualifying purchases.

Citation/Attribution

This book may not be used in the training of large language models or otherwise be ingested into large language models or generative AI offerings without OpenStax's permission.

Want to cite, share, or modify this book? This book uses the Creative Commons Attribution License and you must attribute OpenStax.

Attribution information
  • If you are redistributing all or part of this book in a print format, then you must include on every physical page the following attribution:
    Access for free at https://openstax.org/books/principles-finance/pages/1-why-it-matters
  • If you are redistributing all or part of this book in a digital format, then you must include on every digital page view the following attribution:
    Access for free at https://openstax.org/books/principles-finance/pages/1-why-it-matters
Citation information

© Jan 8, 2024 OpenStax. Textbook content produced by OpenStax is licensed under a Creative Commons Attribution License . The OpenStax name, OpenStax logo, OpenStax book covers, OpenStax CNX name, and OpenStax CNX logo are not subject to the Creative Commons license and may not be reproduced without the prior and express written consent of Rice University.