Dear Statalists,
I would like to show a simple pwcorr of two variables (as indicated in the example below), of which one variable is logged. What is the difference I have to explain, when showing the relationship between the variable and the logged variable, as the results differ to when I do not log my variable.
Best,
Alexander
I would like to show a simple pwcorr of two variables (as indicated in the example below), of which one variable is logged. What is the difference I have to explain, when showing the relationship between the variable and the logged variable, as the results differ to when I do not log my variable.
HTML Code:
. pwcorr mpg price, sig
| mpg price
-------------+------------------
mpg | 1.0000
|
|
price | -0.4686 1.0000
| 0.0000
|
HTML Code:
. pwcorr mpg price_log, sig
| mpg price_~g
-------------+------------------
mpg | 1.0000
|
|
price_log | -0.4910 1.0000
| 0.0000
|
Alexander

Comment