# Calculate the sum of numbers from 1 to 10
sum(1:10)
[1] 55
This lab tutorial will guide you through installing R and RStudio on your computer, managing packages, and loading data into R. This setup is essential for performing all kinds of data analysis tasks in R.
R is a programming language designed for statistical computing and graphics, widely used in data analysis, statistical modeling, and research. RStudio is an integrated development environment (IDE) that facilitates the use of R by providing a user-friendly interface for scripting, debugging, and visualization.
R and RStudio are critical tools in statistics education for several reasons:
Statistical Analysis: They provide a robust environment for performing and learning a wide range of statistical analyses.
Reproducible Research: Tools like knitr and R Markdown in RStudio promote reproducibility, allowing for seamless integration of analysis and reporting.
Interactive Learning: The interactive nature of RStudio helps in visualizing data and statistical concepts more effectively.
.exe
file and follow the installation instructions..exe
file..pkg
file to start the installation..dmg
file and drag RStudio to your Applications folder.RMarkdown is a powerful tool for combining narrative text and executable R code into a single document, which can then be rendered into various formats including HTML, PDF, and Word documents. It’s especially valuable in academic, scientific, and data analysis settings for creating reproducible data analysis scripts and reports.
R Markdown allows you to integrate code and text in the same document, facilitating reproducible research and interactive data analysis reports. Here’s a quick overview:
To effectively manage your course materials in RStudio, follow these steps:
math216
in a suitable location on your computer or within your RStudio account.math216
folder to keep your course materials organized.Text in R Markdown is written using standard markdown syntax. This allows you to add headers, lists, links, and other styling features to create dynamic reports.
Markdown is a lightweight markup language that allows you to add formatting elements using plain text. Here’s how you can use different Markdown syntax to format text within your R Markdown documents.
Create headers by prefixing the text with one or more hash symbols (#
). The number of #
symbols before the text determines the level of the header.
# Header 1
## Header 2
### Header 3
You can create bulleted or numbered lists:
- Item 1
- Item 2
- Subitem 1
- Subitem 2
1. First item
2. Second item
1. Subitem 1
2. Subitem 2
Include hyperlinks using the format [link text](URL)
:
[Visit Canvas](https://salisbury.instructure.com/courses/66117)
Italicize or bold text using asterisks or underscores:
*Italic*
or _Italic_
**Bold**
or __Bold__
Embed images using the format 
:

Create blockquotes with >
:
> This is a blockquote.
Display inline code with backticks and code blocks with triple backticks:
`code`
\```
This is a code block
\```
Insert a horizontal line with three or more hyphens:
---
Markdown can be interleaved with executable R code chunks:
# Calculate the sum of numbers from 1 to 10
sum(1:10)
[1] 55
Before diving into data loading, let’s understand important R chunk options:
eval
: Use eval=FALSE
to prevent code from running but still display it.echo
: With echo=FALSE
, the code is run but not displayed in the document.include
: include=FALSE
runs the code and hides both the code and output from the final output.Example to demonstrate:
# This code will run, and both code and output will appear in the document.
summary(cars)
speed dist
Min. : 4.0 Min. : 2.00
1st Qu.:12.0 1st Qu.: 26.00
Median :15.0 Median : 36.00
Mean :15.4 Mean : 42.98
3rd Qu.:19.0 3rd Qu.: 56.00
Max. :25.0 Max. :120.00
R packages extend R’s capabilities, offering tools for additional statistical techniques, data manipulation, and graphical outputs. Knowing how to install and manage these packages is essential for leveraging R’s full potential in practical and academic applications.
# To install a package
# install.packages("tidyverse") # uncomment to install
# To load the package
library(tidyverse)
It’s crucial to set the working directory in R to the folder where your course files are stored. This can be done in several ways:
Using RStudio:
Session > Set Working Directory > Choose Directory...
and selecting your math313
folder.Using R Script:
setwd()
function. Place the following line of code at the beginning of your script:setwd("~/math313")
Replace "~/math313"
with the actual path to your course folder.
Using R Console:
setwd("~/math313")
Here’s how you can load a CSV file into R:
# Assuming the CSV file is in your working directory and is named 'data.csv'
<- read.csv("data.csv")
data
# Viewing the first few rows of the dataset
head(data)