I'm wondering if there is a name for one to one line graphs. Is it qq-plots? Is the qq-plots applicable on all types of variables or only quantiles? In other words, what's the name of the graph that compare two variables to assess if one variable is overestimating the other in relation to a 1:1 line?
If I want to built a one to one line plot, how should I standardized my variables so that the are comparable on the one to one line?
For example, here is a one to one line graph.
plot(x= 1:100, y = c(12*(1:100)^(1/2) + rnorm(1,1,1)),
asp = 1, xlim = c(0,100),ylim = c(0,100)) ; abline(a=0, b = 1, col = "red")
In that case, we could say that the y variable is alway overestimated in comparison of the x variable.