Hi everyone,

For my Panel Data descriptive Analysis I am trying to graph the development of Charging stations per Km for my 18 counties.

Since I have monthly data, I first created the yearly means for every county (to reduce the amount of datapoints)

Code:
egen meanCHS4 = mean(ChStationsRoadKm), by (Year county)
For my graph I am using the following code

Code:
twoway line meanCHS4 Year, by(county)
see attached picture.

My problem now is that Oslo has a much higher amount of charging stations per Km than the other 17 counties and since they all use the same scale there is not much information I can see in the other 17 graphs. Is there a way to scale Oslo differently than the other 17 counties?

Thank you in advance,
Alex
Array