5 lines
94 B
R
5 lines
94 B
R
df <- read.csv('cleaned.csv')
|
|
start_milage = min(df$Km_End)
|
|
df$diff <- c(0, diff(df$Km_End))
|
|
|