Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

10 lines (8 sloc) 227 Bytes
# load the data
data <- read.csv("/data_storage/testdata_exercise_3.csv")
# data wrangling
library(dplyr)
new_data <- data %>%
filter(a > 0)
# save the data
saveRDS(new_data, "/data_storage/edited_testdata_exercise_3.csv")