Skip to content

Commit 73d015b

Browse files
committed
switch code to read the csv in
1 parent bf37830 commit 73d015b

File tree

3 files changed

+1744
-3
lines changed

3 files changed

+1744
-3
lines changed

global.R

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library(shiny)
2+
library(readr)
3+
4+
data_path <- "data"
5+
csv_old_faithful <- "faithful_data.csv"
6+
7+
old_faithful <- read_csv(file.path(data_path, csv_old_faithful))

0 commit comments

Comments
 (0)