Starting from a csv file, i'm having problem to create a lineplot with the ggplot2 library.
the error is "geom_path: Each group consists of only one observation. Do you need to adjust the group aesthetic?"
i'm tryng with the mutate function to get a line on the graph, but the variable Date is character and i need it to be numerical.
library(ggplot2)
library(dplyr)
dataset_room <- read.csv("dataset_room-temperature.csv")
ggplot (dataset_room, aes(x=Date, y=FrontLeft))+
geom_point()+
geom_line()