Welcome to Introduction to R for Finance!

Introduction to R for Finance

Lore Dirick

Manager of Data Science Curriculum at Flatiron School

A Hands-On Course

ch1_v1_1.gif

Introduction to R for Finance

What will you learn?

  • Basics of R
  • Data structures
  • Finance examples
Introduction to R for Finance

Console

  • Execute R commands

ch1_vid1_slides.010.png

Introduction to R for Finance

Console

ch1_v1_2.gif

Introduction to R for Finance

Variables or objects

ch1_vid1_slides.015.png

Introduction to R for Finance

Variables or objects

ch1_vid1_slides.016.png

Introduction to R for Finance

Variables or objects

ch1_vid1_slides.017.png

my_number <- 5

my_number
5
Introduction to R for Finance

Arithmetic in R

dan <- 100
rob <- 50

dan + rob
150
total <- dan + rob
total
150
Introduction to R for Finance

R Scripts

  • script.R
dan <- 100
rob <- 50
total <- dan + rob
total
dan <- 100
rob <- 50
total <- dan + rob
total
150
Introduction to R for Finance

Let's practice!

Introduction to R for Finance

Preparing Video For Download...