An Introduction to R-Studio��ISEE Lab Instructional Video
PRESENTED BY ANIKA NAYAK
04 April 2026
ISEE LAB
Data Types
ISEE LAB
2
R-Studio Interface
ISEE LAB
3
Simple Math
ISEE LAB
4
Strings
str <- “Example Phrase”
input: cat (str)
output: Example Phrase
ISEE LAB
5
If Statements
if (condition)
{command�}else {command}
ISEE LAB
6
Vectors and Lists
Vector:
a list of same-type items (ex. a list of strings)
List:
can include different data types in a single structure (ex. strings, numbers)
ISEE LAB
7
Data Frames
Name_of_Frame <- data.frame (�Column 1(row 1, row 2, row 3)�Column 2(row 1, row 2, row 3)�Column 3 (row 1, row 2, row 3)
)
Input: Name_of_Frame
Output:
ISEE LAB
Column 1 | Column 2 | Column 3 |
row 1 | row 1 | row 1 |
row 2 | row 2 | row 2 |
row 3 | row 3 | row 3 |
8
Importing Data
•From Text (readr) allows you to import CSV files
•From Text (base) allows you to import text-based files
•From Excel allows you to import data from Excel files
ISEE LAB
9
Resources
ISEE LAB
10
THANK YOU FOR WATCHING!��Q&A�
ISEE LAB
“
11