My data looks something like this:
There are 10,000 rows, each representing a city and all months since 1998-01 to 2013-9:
RegionName| State|  Metro|         CountyName|  1998-01|      1998-02|  1998-03
New York|   NY| New York|   Queens|         1.3414|   1.344|             1.3514
Los Angeles|    CA| Los Angeles|    Los Angeles|    12.8841|     12.5466|   12.2737
Philadelphia|   PA| Philadelphia|   Philadelphia|   1.626|    0.5639|   0.2414
Phoenix|            AZ| Phoenix|            Maricopa|    2.7046|       2.5525|  2.3472
I want to be able to do a plot for all months since 1998 for any city or more than one city.
I tried this but i get an error. I am not sure if i am even attempting this right. Any help will be appreciated. Thank you.
forecl <- ts(forecl, start=c(1998, 1), end=c(2013, 9), frequency=12)
plot(forecl)
Error in plots(x = x, y = y, plot.type = plot.type, xy.labels = xy.labels,  : 
  cannot plot more than 10 series as "multiple"
 
     
     
     
    