I am trying to change the colour scheme by category for this time series in ggplot in R. I do not like the default colour scheme as for the number of categories (9) the colours get hard to distinguish, for lots of data (414 data points).
g = ggplot(data=NCARsOld,aes(x=`Date Reported`,
                         y=as.numeric(`No. of Days Opened`),
                         colour=factor(NCARsOld$`Subject/ 
    Category`))) + geom_point() +  scale_fill_discrete("Multi word 
    title", breaks=c(1:length(subjects)), labels=subjects)
 
     
     
    