I want to do something that I thought would be simple but I can't find the answer anywhere. I have the following graph, which maps the goal differential of various hockey teams over time. I would like to make it so that one specific team stands out, preferably by making its line size bigger. Here's the graph:
And here's the code that generated it:
p <- ggplot(data = NHLRegularSeason.2014.2015, aes(x = Date, y = GPlusMinus, group = Team, color = Team))
p + geom_smooth(fill = NA)
Is there a way to add another style to just one specific team?
If it helps, here's how I created a subset of a specific team:
RangersRegularSeason <- subset(NHLRegularSeason.2014.2015, Team == "NYR")