Hello i am a beginner in R and i am dealing with this problem several days. I have downloaded Hadley Wickham's book called ggplot2 Elegant Graphics for Data Analysis and i practise this problem. I want to tidy my data but all comes in one column and i do not know how to separate what's inside my table. I am familliar with the tidy data principles( variables in columns , observations in rows and values in cells), but i do not understand what i do wrong. Any help?
Thank you
bpd <- readr::read_table(
"name age start week1 week2 week3
Anne 35 2014-03-27 100/80 100/75 120/90
Ben 41 2014-03-09 110/65 100/65 135/70
Carl 33 2014-04-02 125/80 <NA> <NA>
", na = "<NA>")