Examine the confidence interval of the slope coefficient. If it includes 1, then we will not reject the null hypothesis stating that the slope is 1. The drawback is that you will not know the p-value other than it has to be smaller than 0.05.
Some software such as Stata allows user to implement customized testing of the coefficient. And that can get you the specific p-value. For example, in Stata, one can use the test
command to further test the slope against a null value is that not zero.
. sysuse auto
(1978 Automobile Data)
. reg price mpg
Source | SS df MS Number of obs = 74
-------------+------------------------------ F( 1, 72) = 20.26
Model | 139449474 1 139449474 Prob > F = 0.0000
Residual | 495615923 72 6883554.48 R-squared = 0.2196
-------------+------------------------------ Adj R-squared = 0.2087
Total | 635065396 73 8699525.97 Root MSE = 2623.7
------------------------------------------------------------------------------
price | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
mpg | -238.8943 53.07669 -4.50 0.000 -344.7008 -133.0879
_cons | 11253.06 1170.813 9.61 0.000 8919.088 13587.03
------------------------------------------------------------------------------
Here we see that the regression coefficient for mile/gallon is -238.9 with a 95% CI of -344.7 and -133.1. Using test
, we can test against our value, like, -400:
. test mpg = -400
( 1) mpg = -400
F( 1, 72) = 9.21
Prob > F = 0.0033
The p-value is 0.0033, and we reject the null that the coefficient is equal to -400. (Should also note that the 95% CI does not include -400.) Similar function can be found in other software as well. For instance, in SAS, the same function is also called test
, assigned after the proc reg
model statement.
An alternate way (which I think is better, thanks to whuber's comment) is to compute the mean of the pairs and then use a one-sample t-test to check if their means are equal to zero. If one of the methods, however, is constantly and persistently bigger and you know what that difference is, you can also test the difference against that number rather than zero.