I have a data set, in which I am trying to fit a regression model for the Y axis - which has 35 rows. Before regression, I am running a Q-Q plot to see if the data is normal, but instead my data is following two trends in the same plot, which means that there are 2 groups, how should I split the existing Q-Q plot according to the groups?
qqnorm(sqrt(Total_Crime))
qqline(sqrt(Total_Crime))
Above is the code I am using now
Expectation :-
qqnorm(sqrt(Total_Crime **where crime count is >500**))
qqline(sqrt(Total_Crime ** where crime count is >500**))