I am fairly new to R and I have the following queries :
I am trying to generate a plot in R which has multiple lines (data series each weeks of months from 2020-09-01 to 2021-05-26). Each of these lines is a category and I want it to have a unique color.
Currently my code is setup in this way :
GEE<-read.csv("GEE.CSV")
library(ggplot2)
# Plot the Line chart.
plot(v,type = "o",col = "red", xlab = "Month", ylab = "Crops",
main = "Crops chart")
lines(t, type = "o", col = "blue")