question7 %>% ggplot(aes(x = year, y = n , group = state)) + geom_point(aes(color = state)) + geom_smooth(method = "loess", formula = y ~ x, level = 1, aes(color=state))+ labs(x = "Year", y = "No Visitors",#lab means labels title = "Number of Visitors by year by state", # title of title making interpretation subtitle = "Yearly comparison trend between NY and CA")
For the Y axis , i would like to label it as 1,2,3,4,5,6... all the way to 45.

