Using this data frame, I attempted to create a simple line graph using the following code:
crypto_data<-
crypto_data %>% gather(Cryptocurrencies, USD_Ex
Thanks for the edit suggestion, have found a solution!
crypto_data <-
crypto_data %>% gather(Cryptocurrencies, USD_Exchange, -Date)
ggplot(data=crypto_data) +
geom_line(aes(x=as.numeric(Date), y = USD_Exchange, colour = Cryptocurrencies)
Just had to make the Date variable (that was a factor variable) numeric...