1 of 11

An Introduction to R-Studio�ISEE Lab Instructional Video

PRESENTED BY ANIKA NAYAK

04 April 2026

ISEE LAB

2 of 11

Data Types

ISEE LAB

2

3 of 11

R-Studio Interface

ISEE LAB

3

4 of 11

Simple Math

  • Maximum
    • max (x, y ,z)
  • Minimum
    • min (x, y, z)
  • Absolute value
    • abs (x)
  • Sum
    • sum (x, y)
  • Mean
    • mean (c (x, y, z))

ISEE LAB

4

5 of 11

Strings

str <- “Example Phrase”

input: cat (str)

output: Example Phrase

ISEE LAB

5

6 of 11

If Statements

if (condition)

{command�}else {command}

ISEE LAB

6

7 of 11

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

8 of 11

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

9 of 11

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

10 of 11

Resources

ISEE LAB

10

11 of 11

THANK YOU FOR WATCHING!��Q&A�

ISEE LAB

11