In groups of two or three, share:
[1] 16
“To understand computations in R, two slogans are helpful: Everything that exists is an object. Everything that happens is a function call.”
(Chambers, 2014)
We saw last class that we can use R to perform basic mathematical operations:
We saw last class that we can use R to perform basic mathematical operations:
Definition: an expression is a symbol or a combination of symbols that evaluates to a value.
Definition: An object is created when R evaluates an expression. The object is accessible only by name.
.Last.value
contains the value of the last evaluated expression (in console only).We saw last class that we can assign names to values:
Definition: Assignment is an operation to bind an object to name, using the symbol <-
.
Note: =
and <-
are not generally equivalent. However, they are equivalent when they are used as assignment operators.
What do you expect the output of the following chunks to be?
What do you expect the output of the following chunks to be?
We can use assignments to save values as named objects and perform math on the objects:
Today we’ll see that R can handle objects that are not numbers:
The most basic type of object in R used for storing values is the atomic vector. The four most common types of atomic vectors are:
TRUE
or FALSE
"Hello"
Integers and doubles are both also called numeric vectors.
from Advanced R, Hadley Wickham.
The typeof
function can be used to get the data type of an object.
The typeof
function can be used to get the data type of an object.
You can explicitly change the type of an object:
When elements of different types are mixed in an atomic vector, R automatically converts all of them to the same type.
Order of precedence, from the highest to the lowest: character, numeric, integer, logical.
Value | Usual meaning |
---|---|
NA |
Missing values |
NaN |
a computed value that is not a number |
NULL |
an object with no value |
-Inf and Inf |
a computed value that is large (or large and negative) |
When R evaluates an expression such as x + 1
, how does R locate the object associated with the name x
?
During an assignment, the binding between an object and its name is stored in an environment.
When R starts, a global environment (sometimes called a workspace) is created; every subsequent assignment that takes place at the command prompt adds objects to this environment.
We will see later that we can enter local environments within the global environment and define objects that are confined to these local environments.
The ls()
command displays object in the current global environment.
To remove objects, we can use the rm()
command.
An operator is a symbol that tells the compiler to perform specific mathematical or logical operations.
Types of operators:
Assignment operators
Arithmetic operators
Logical operators
Relational operators
Operator | Operation | Example | Result |
---|---|---|---|
+ |
Addition | > 3 + 4 |
[1] 7 |
- |
Subtraction | > 3 - 4 |
[1] -1 |
* |
Multiplication | > 3 * 4 |
[1] 12 |
/ |
Division | > 3 / 4 |
[1] 0.75 |
Operator | Operation | Example | Result |
---|---|---|---|
^ or ** |
Exponentiation | > 3 ^ 4 |
[1] 81 |
%% |
Modulo | > 3 %% 4 |
[1] 3 |
Operator | Operation | Example | Result | |
---|---|---|---|---|
& |
AND | > TRUE & FALSE |
[1] FALSE |
|
| |
OR | > TRUE | FALSE |
[1] TRUE |
|
! |
NOT | > !TRUE |
[1] FALSE |
Operator | Operation | Example | Result |
---|---|---|---|
> |
greater than | > 2 > 1 |
[1] TRUE |
>= |
greater than or equal to | > 2 >= 1 |
[1] TRUE |
== |
equal | > 2 == 1 |
[1] FALSE |
<= |
less than or equal to | > 2 <= 1 |
[1] FALSE |
< |
less than | > 2 < 1 |
[1] FALSE |
!= |
not equal to | > 2 != 1 |
[1] TRUE |
Answers:
The working directory is a folder where files are retrieved from or saved to by default.
The command getwd()
gets the working directory, which usually is:
/Users/USERNAME
on AppleC:\Users\USERNAME
on WindowsFiles on a computer are grouped into folders, which are organized in a hierarchy.
The absolute pathname of a file describes its location in the hierarchy.
The relative pathname of a file specifies its location relative to the working directory.
setwd()
sets the working directory for the current R session.C:
to the beginning of the absolute pathname.In this class, I encourage you to organize all your code/assignments/files into a single MATH167R folder.
Once you create this folder, you can create an RStudio Project, which will create a file that tells RStudio that all the code in the folder is associated with a single project.
Any code in the project folder assumes that the working directory is the project root directory. This ensures that the project can be moved around your computer or onto another computer and none of the paths will break. This solves the issue of everyone having differing home directories.
MATH167R
on your computer.File > New Project > Existing Directory
and select your MATH167R
folder. This will create an .Rproj
file that indicates to R where the working directory for this project should be..Rproj
file to easily open your work for this class.Tips from Jenny Bryan:
Bad:
newfinal2actualFINALnew.docx
my first lab.R
stuff.R
Better:
01_lab1.Rmd
analysis_functions.R
2020-01-08_labWriteup.Rmd
R Markdown files (see examples here)
At the top of the file, you should see the following header:
---
title: "Check-in 1: R Markdown"
author: "YOUR NAME HERE"
date: "2024-01-29"
output: html_document
---
This header contains metadata about the document that follows: the name of the file, the author, the date, and what kind of output it will create. Highlight all this code and copy it to your clipboard.
File > New File > R Markdown > OK
to accept all default options. A new .Rmd file should open. Replace everything in the new file with your copied code.---
title: "Check-in 1: R Markdown"
author: "YOUR NAME HERE"
date: "2024-01-29"
output: html_document
---
This header contains metadata about the document that follows: the name of the file, the author, the date, and what kind of output it will create.
Code chunks contain R code that is evaluated when you render your R Markdown report. You can insert a code chunk by clicking Insert > Code Chunk
or by typing the chunk delimiters ```{r}
and ```
.
Chunk output can be customized with optional arguments set in the {}
of a chunk header, as we will see in Lab 01.
Remember the following:
Not due for a while, but in your interest to do this ASAP to make sure R Markdown is working!