Open EmilyForden opened 7 years ago
Livy <- read_csv("All_Livy.csv") %>%
mutate(Book = parse_number(Book))
Just convert Book
as soon as you import. Drop all the extra arguments and it should be fine.
As for scale_x_continuous
, I think that will draw a tick mark at 5. To draw at every five marks, create a sequence using the seq
function. Like seq(from = 1, to = 36, by = 5)
Currently, my data looks like this:
I'm trying to parse the number out of my Book column so I am running:
It isn't working. I must be missing how to parse from a specific column.
Once I get that figured out, I need to deal with scale_x_continuous. I think it will be something like:
Does that sound about right?