What is the intuitive meaning of having a linear relationship between the logs of two variables? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Is a linear correlation between logs useful for making predictions with a regression model?What type of test to use to determine correlation/relationship between two non-continuous varaiblesWhat is the qualitative difference between a Michaelis-Menten model and a log-linear model?correlation with logarithmic transformationCan I use the correlation between two variables when observations on each variable are autocorrelated?What is the relationship between orthogonal, correlation and independence?Classifying according to relationship between variablesScatterplot dovetailing?Interpreting how much my linear model has improved after Box-Cox transformationGuess Relationship/Association between two quantitatives variablesCorrelation coefficients and range of residuals

Unix AIX passing variable and arguments to expect and spawn

Is my guitar’s action too high?

Who's this lady in the war room?

Why these surprising proportionalities of integrals involving odd zeta values?

Does GDPR cover the collection of data by websites that crawl the web and resell user data

A German immigrant ancestor has a "Registration Affidavit of Alien Enemy" on file. What does that mean exactly?

Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion

What is the definining line between a helicopter and a drone a person can ride in?

Can gravitational waves pass through a black hole?

Why do C and C++ allow the expression (int) + 4*5?

Converting a text document with special format to Pandas DataFrame

Is it OK if I do not take the receipt in Germany?

What is the evidence that custom checks in Northern Ireland are going to result in violence?

Married in secret, can marital status in passport be changed at a later date?

How is an IPA symbol that lacks a name (e.g. ɲ) called?

Who can become a wight?

Like totally amazing interchangeable sister outfit accessory swapping or whatever

Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?

Can the van der Waals coefficients be negative in the van der Waals equation for real gases?

How to ask rejected full-time candidates to apply to teach individual courses?

Does the Pact of the Blade warlock feature allow me to customize the properties of the pact weapon I create?

How to charge percentage of transaction cost?

lm and glm function in R

Why isn't everyone flabbergasted about Bran's "gift"?



What is the intuitive meaning of having a linear relationship between the logs of two variables?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Is a linear correlation between logs useful for making predictions with a regression model?What type of test to use to determine correlation/relationship between two non-continuous varaiblesWhat is the qualitative difference between a Michaelis-Menten model and a log-linear model?correlation with logarithmic transformationCan I use the correlation between two variables when observations on each variable are autocorrelated?What is the relationship between orthogonal, correlation and independence?Classifying according to relationship between variablesScatterplot dovetailing?Interpreting how much my linear model has improved after Box-Cox transformationGuess Relationship/Association between two quantitatives variablesCorrelation coefficients and range of residuals



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








19












$begingroup$


I have two variables which don't show much correlation when plotted against each other as is, but a very clear linear relationship when I plot the logs of each variable agains the other.



So I would end up with a model of the type:



$$log(Y) = a log(X) + b$$ , which is great mathematically but doesn't seem to have the explanatory value of a regular linear model.



How can I interpret such a model?










share|cite|improve this question











$endgroup$







  • 4




    $begingroup$
    I've nothing substantial to add to the existing answers, but a logarithm in the outcome and the predictor is an elasticity. Searches for that term should find some good resources for interpreting that relationship, which is not very intuitive.
    $endgroup$
    – Upper_Case
    Mar 26 at 18:30










  • $begingroup$
    The interpretation of a log-log model, where the dependent variable is log(y) and the independent variable is log(x), is: $%Δ=β_1%Δx$.
    $endgroup$
    – C Thom
    Mar 27 at 15:52







  • 3




    $begingroup$
    The complementary log-log link is an ideal GLM specification when the outcome is binary (risk model) and the exposure is cumulative, such as number of sexual partners vs. HIV infection. jstor.org/stable/2532454
    $endgroup$
    – AdamO
    Mar 27 at 15:58






  • 1




    $begingroup$
    @Alexis you can see the sticky points if you overlay the curves. Try curve(exp(-exp(x)), from=-5, to=5) vs curve(plogis(x), from=-5, to=5). The concavity accelerates. If the risk of event from a single encounter was $p$, then the risk after the second event should be $1-(1-p)^2$ and so on, that's a probabilistic shape logit won't capture. High high exposures would skew logistic regression results more dramatically (falsely according to the prior probability rule). Some simulation would show you this.
    $endgroup$
    – AdamO
    Mar 27 at 20:52






  • 1




    $begingroup$
    @AdamO There's probably a pedagogical paper to be written incorporating such a simulation which motivates how to chose a particular dichotomous outcome link out of the three, including situations where it does and does not make a difference.
    $endgroup$
    – Alexis
    Mar 27 at 21:05


















19












$begingroup$


I have two variables which don't show much correlation when plotted against each other as is, but a very clear linear relationship when I plot the logs of each variable agains the other.



So I would end up with a model of the type:



$$log(Y) = a log(X) + b$$ , which is great mathematically but doesn't seem to have the explanatory value of a regular linear model.



How can I interpret such a model?










share|cite|improve this question











$endgroup$







  • 4




    $begingroup$
    I've nothing substantial to add to the existing answers, but a logarithm in the outcome and the predictor is an elasticity. Searches for that term should find some good resources for interpreting that relationship, which is not very intuitive.
    $endgroup$
    – Upper_Case
    Mar 26 at 18:30










  • $begingroup$
    The interpretation of a log-log model, where the dependent variable is log(y) and the independent variable is log(x), is: $%Δ=β_1%Δx$.
    $endgroup$
    – C Thom
    Mar 27 at 15:52







  • 3




    $begingroup$
    The complementary log-log link is an ideal GLM specification when the outcome is binary (risk model) and the exposure is cumulative, such as number of sexual partners vs. HIV infection. jstor.org/stable/2532454
    $endgroup$
    – AdamO
    Mar 27 at 15:58






  • 1




    $begingroup$
    @Alexis you can see the sticky points if you overlay the curves. Try curve(exp(-exp(x)), from=-5, to=5) vs curve(plogis(x), from=-5, to=5). The concavity accelerates. If the risk of event from a single encounter was $p$, then the risk after the second event should be $1-(1-p)^2$ and so on, that's a probabilistic shape logit won't capture. High high exposures would skew logistic regression results more dramatically (falsely according to the prior probability rule). Some simulation would show you this.
    $endgroup$
    – AdamO
    Mar 27 at 20:52






  • 1




    $begingroup$
    @AdamO There's probably a pedagogical paper to be written incorporating such a simulation which motivates how to chose a particular dichotomous outcome link out of the three, including situations where it does and does not make a difference.
    $endgroup$
    – Alexis
    Mar 27 at 21:05














19












19








19


2



$begingroup$


I have two variables which don't show much correlation when plotted against each other as is, but a very clear linear relationship when I plot the logs of each variable agains the other.



So I would end up with a model of the type:



$$log(Y) = a log(X) + b$$ , which is great mathematically but doesn't seem to have the explanatory value of a regular linear model.



How can I interpret such a model?










share|cite|improve this question











$endgroup$




I have two variables which don't show much correlation when plotted against each other as is, but a very clear linear relationship when I plot the logs of each variable agains the other.



So I would end up with a model of the type:



$$log(Y) = a log(X) + b$$ , which is great mathematically but doesn't seem to have the explanatory value of a regular linear model.



How can I interpret such a model?







regression correlation log






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Mar 26 at 20:48









StubbornAtom

3,2111536




3,2111536










asked Mar 26 at 15:57









Akaike's ChildrenAkaike's Children

1457




1457







  • 4




    $begingroup$
    I've nothing substantial to add to the existing answers, but a logarithm in the outcome and the predictor is an elasticity. Searches for that term should find some good resources for interpreting that relationship, which is not very intuitive.
    $endgroup$
    – Upper_Case
    Mar 26 at 18:30










  • $begingroup$
    The interpretation of a log-log model, where the dependent variable is log(y) and the independent variable is log(x), is: $%Δ=β_1%Δx$.
    $endgroup$
    – C Thom
    Mar 27 at 15:52







  • 3




    $begingroup$
    The complementary log-log link is an ideal GLM specification when the outcome is binary (risk model) and the exposure is cumulative, such as number of sexual partners vs. HIV infection. jstor.org/stable/2532454
    $endgroup$
    – AdamO
    Mar 27 at 15:58






  • 1




    $begingroup$
    @Alexis you can see the sticky points if you overlay the curves. Try curve(exp(-exp(x)), from=-5, to=5) vs curve(plogis(x), from=-5, to=5). The concavity accelerates. If the risk of event from a single encounter was $p$, then the risk after the second event should be $1-(1-p)^2$ and so on, that's a probabilistic shape logit won't capture. High high exposures would skew logistic regression results more dramatically (falsely according to the prior probability rule). Some simulation would show you this.
    $endgroup$
    – AdamO
    Mar 27 at 20:52






  • 1




    $begingroup$
    @AdamO There's probably a pedagogical paper to be written incorporating such a simulation which motivates how to chose a particular dichotomous outcome link out of the three, including situations where it does and does not make a difference.
    $endgroup$
    – Alexis
    Mar 27 at 21:05













  • 4




    $begingroup$
    I've nothing substantial to add to the existing answers, but a logarithm in the outcome and the predictor is an elasticity. Searches for that term should find some good resources for interpreting that relationship, which is not very intuitive.
    $endgroup$
    – Upper_Case
    Mar 26 at 18:30










  • $begingroup$
    The interpretation of a log-log model, where the dependent variable is log(y) and the independent variable is log(x), is: $%Δ=β_1%Δx$.
    $endgroup$
    – C Thom
    Mar 27 at 15:52







  • 3




    $begingroup$
    The complementary log-log link is an ideal GLM specification when the outcome is binary (risk model) and the exposure is cumulative, such as number of sexual partners vs. HIV infection. jstor.org/stable/2532454
    $endgroup$
    – AdamO
    Mar 27 at 15:58






  • 1




    $begingroup$
    @Alexis you can see the sticky points if you overlay the curves. Try curve(exp(-exp(x)), from=-5, to=5) vs curve(plogis(x), from=-5, to=5). The concavity accelerates. If the risk of event from a single encounter was $p$, then the risk after the second event should be $1-(1-p)^2$ and so on, that's a probabilistic shape logit won't capture. High high exposures would skew logistic regression results more dramatically (falsely according to the prior probability rule). Some simulation would show you this.
    $endgroup$
    – AdamO
    Mar 27 at 20:52






  • 1




    $begingroup$
    @AdamO There's probably a pedagogical paper to be written incorporating such a simulation which motivates how to chose a particular dichotomous outcome link out of the three, including situations where it does and does not make a difference.
    $endgroup$
    – Alexis
    Mar 27 at 21:05








4




4




$begingroup$
I've nothing substantial to add to the existing answers, but a logarithm in the outcome and the predictor is an elasticity. Searches for that term should find some good resources for interpreting that relationship, which is not very intuitive.
$endgroup$
– Upper_Case
Mar 26 at 18:30




$begingroup$
I've nothing substantial to add to the existing answers, but a logarithm in the outcome and the predictor is an elasticity. Searches for that term should find some good resources for interpreting that relationship, which is not very intuitive.
$endgroup$
– Upper_Case
Mar 26 at 18:30












$begingroup$
The interpretation of a log-log model, where the dependent variable is log(y) and the independent variable is log(x), is: $%Δ=β_1%Δx$.
$endgroup$
– C Thom
Mar 27 at 15:52





$begingroup$
The interpretation of a log-log model, where the dependent variable is log(y) and the independent variable is log(x), is: $%Δ=β_1%Δx$.
$endgroup$
– C Thom
Mar 27 at 15:52





3




3




$begingroup$
The complementary log-log link is an ideal GLM specification when the outcome is binary (risk model) and the exposure is cumulative, such as number of sexual partners vs. HIV infection. jstor.org/stable/2532454
$endgroup$
– AdamO
Mar 27 at 15:58




$begingroup$
The complementary log-log link is an ideal GLM specification when the outcome is binary (risk model) and the exposure is cumulative, such as number of sexual partners vs. HIV infection. jstor.org/stable/2532454
$endgroup$
– AdamO
Mar 27 at 15:58




1




1




$begingroup$
@Alexis you can see the sticky points if you overlay the curves. Try curve(exp(-exp(x)), from=-5, to=5) vs curve(plogis(x), from=-5, to=5). The concavity accelerates. If the risk of event from a single encounter was $p$, then the risk after the second event should be $1-(1-p)^2$ and so on, that's a probabilistic shape logit won't capture. High high exposures would skew logistic regression results more dramatically (falsely according to the prior probability rule). Some simulation would show you this.
$endgroup$
– AdamO
Mar 27 at 20:52




$begingroup$
@Alexis you can see the sticky points if you overlay the curves. Try curve(exp(-exp(x)), from=-5, to=5) vs curve(plogis(x), from=-5, to=5). The concavity accelerates. If the risk of event from a single encounter was $p$, then the risk after the second event should be $1-(1-p)^2$ and so on, that's a probabilistic shape logit won't capture. High high exposures would skew logistic regression results more dramatically (falsely according to the prior probability rule). Some simulation would show you this.
$endgroup$
– AdamO
Mar 27 at 20:52




1




1




$begingroup$
@AdamO There's probably a pedagogical paper to be written incorporating such a simulation which motivates how to chose a particular dichotomous outcome link out of the three, including situations where it does and does not make a difference.
$endgroup$
– Alexis
Mar 27 at 21:05





$begingroup$
@AdamO There's probably a pedagogical paper to be written incorporating such a simulation which motivates how to chose a particular dichotomous outcome link out of the three, including situations where it does and does not make a difference.
$endgroup$
– Alexis
Mar 27 at 21:05











5 Answers
5






active

oldest

votes


















27












$begingroup$

You just need to take exponential of both sides of the equation and you will get a potential relation, that may make sense for some data.



$$log(Y) = alog(X) + b$$



$$exp(log(Y)) = exp(a log(X) + b)$$



$$Y = e^bcdot X^a$$



And since $e^b$ is just a parameter that can take any positive value, this model is equivalent to:



$$Y=c cdot X^a$$



It should be noted that model expression should include the error term, and these change of variables has interesting effects on it:



$$log(Y) = a log(X) + b + epsilon$$



$$Y = e^bcdot X^acdot exp(epsilon)$$



That is, your model with a additive errors abiding to the conditions for OLS (normally distributed errors with constant variance) is equivalent to a potential model with multiplicative errors whose logaritm follows a normal distribution with constant variance.






share|cite|improve this answer











$endgroup$








  • 3




    $begingroup$
    OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
    $endgroup$
    – gardenhead
    Mar 26 at 19:40






  • 2




    $begingroup$
    What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
    $endgroup$
    – Stats
    Mar 26 at 21:17



















14












$begingroup$

You can take your model $log(Y)=alog(X)+b$ and calculate the total differential, you will end up with something like :
$$frac1YdY=afrac1XdX$$
which yields to
$$fracdYdXfracXY=a$$



Hence one simple interpretation of the coefficient $a$ will be the percent change in $Y$ for a percent change in $X$.
This implies furthermore that the variable $Y$ growths at a constant fraction ($a$) of the growth rate of $X$.






share|cite|improve this answer











$endgroup$












  • $begingroup$
    So if the log-log plot is linear, that would imply a constant growth rate?
    $endgroup$
    – Dimitriy V. Masterov
    Mar 26 at 17:22










  • $begingroup$
    Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
    $endgroup$
    – RScrlli
    Mar 26 at 18:18










  • $begingroup$
    Not over time, the growth rate with respect to the growth in x.
    $endgroup$
    – Dimitriy V. Masterov
    Mar 26 at 18:21










  • $begingroup$
    reordering doesn't help, i'd remove it
    $endgroup$
    – Aksakal
    Mar 26 at 18:21






  • 1




    $begingroup$
    @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
    $endgroup$
    – RScrlli
    Mar 26 at 18:36


















7












$begingroup$

Intuitively $log$ gives us the order of magnitude of a variable, so we can view the relationship as the orders of magnitudes of the two variables are linearly related. For example, increasing the predictor by one order of magnitude may be associated with an increase of three orders of magnitude of the response.



When plotting using a log-log plot we hope to see a linear relationship.
Using an example from this question, we can check the linear model assumptions:



log-log






share|cite|improve this answer











$endgroup$








  • 3




    $begingroup$
    +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
    $endgroup$
    – Frans Rodenburg
    Mar 27 at 7:24







  • 1




    $begingroup$
    The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
    $endgroup$
    – Pere
    Mar 27 at 8:42










  • $begingroup$
    @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
    $endgroup$
    – qwr
    Mar 27 at 9:33










  • $begingroup$
    It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
    $endgroup$
    – Henry
    Mar 28 at 9:03


















4












$begingroup$

Reconciling the answer by @Rscrill with actual discrete data, consider



$$log(Y_t) = alog(X_t) + b,;;; log(Y_t-1) = alog(X_t-1) + b$$



$$implies log(Y_t) - log(Y_t-1) = aleft[log(X_t)-log(X_t-1)right]$$



But



$$log(Y_t) - log(Y_t-1) = logleft(fracY_tY_t-1right) equiv logleft(fracY_t-1+Delta Y_tY_t-1right) = logleft(1+fracDelta Y_tY_t-1right)$$



$fracDelta Y_tY_t-1$ is the percentage change of $Y$ between periods $t-1$ and $t$, or the growth rate of $Y_t$, say $g_Y_t$. When it is smaller than $0.1$, we have that an acceptable approximation is



$$logleft(1+fracDelta Y_tY_t-1right) approx fracDelta Y_tY_t-1=g_Y_t$$



Therefore we get



$$g_Y_tapprox ag_X_t$$



which validates in empirical studies the theoretical treatment of @Rscrill.






share|cite|improve this answer









$endgroup$








  • 1




    $begingroup$
    This is probably what a mathematician would call intuitive :)
    $endgroup$
    – Richard Hardy
    Mar 28 at 10:59


















0












$begingroup$

A linear relationship between the logs is equivalent to a power law dependence:
$$Y sim X^alpha$$
In physics such behavior means that the system is scale free or scale invariant. As an example, if $X$ is distance or time this means that the dependence on $X$ cannot be characterized by a characteristic length or time scale (as opposed to exponential decays). As a result, such a system exhibits a long-range dependence of the $Y$ on $X$.






share|cite|improve this answer











$endgroup$











    protected by kjetil b halvorsen Apr 2 at 7:15



    Thank you for your interest in this question.
    Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



    Would you like to answer one of these unanswered questions instead?














    5 Answers
    5






    active

    oldest

    votes








    5 Answers
    5






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    27












    $begingroup$

    You just need to take exponential of both sides of the equation and you will get a potential relation, that may make sense for some data.



    $$log(Y) = alog(X) + b$$



    $$exp(log(Y)) = exp(a log(X) + b)$$



    $$Y = e^bcdot X^a$$



    And since $e^b$ is just a parameter that can take any positive value, this model is equivalent to:



    $$Y=c cdot X^a$$



    It should be noted that model expression should include the error term, and these change of variables has interesting effects on it:



    $$log(Y) = a log(X) + b + epsilon$$



    $$Y = e^bcdot X^acdot exp(epsilon)$$



    That is, your model with a additive errors abiding to the conditions for OLS (normally distributed errors with constant variance) is equivalent to a potential model with multiplicative errors whose logaritm follows a normal distribution with constant variance.






    share|cite|improve this answer











    $endgroup$








    • 3




      $begingroup$
      OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
      $endgroup$
      – gardenhead
      Mar 26 at 19:40






    • 2




      $begingroup$
      What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
      $endgroup$
      – Stats
      Mar 26 at 21:17
















    27












    $begingroup$

    You just need to take exponential of both sides of the equation and you will get a potential relation, that may make sense for some data.



    $$log(Y) = alog(X) + b$$



    $$exp(log(Y)) = exp(a log(X) + b)$$



    $$Y = e^bcdot X^a$$



    And since $e^b$ is just a parameter that can take any positive value, this model is equivalent to:



    $$Y=c cdot X^a$$



    It should be noted that model expression should include the error term, and these change of variables has interesting effects on it:



    $$log(Y) = a log(X) + b + epsilon$$



    $$Y = e^bcdot X^acdot exp(epsilon)$$



    That is, your model with a additive errors abiding to the conditions for OLS (normally distributed errors with constant variance) is equivalent to a potential model with multiplicative errors whose logaritm follows a normal distribution with constant variance.






    share|cite|improve this answer











    $endgroup$








    • 3




      $begingroup$
      OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
      $endgroup$
      – gardenhead
      Mar 26 at 19:40






    • 2




      $begingroup$
      What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
      $endgroup$
      – Stats
      Mar 26 at 21:17














    27












    27








    27





    $begingroup$

    You just need to take exponential of both sides of the equation and you will get a potential relation, that may make sense for some data.



    $$log(Y) = alog(X) + b$$



    $$exp(log(Y)) = exp(a log(X) + b)$$



    $$Y = e^bcdot X^a$$



    And since $e^b$ is just a parameter that can take any positive value, this model is equivalent to:



    $$Y=c cdot X^a$$



    It should be noted that model expression should include the error term, and these change of variables has interesting effects on it:



    $$log(Y) = a log(X) + b + epsilon$$



    $$Y = e^bcdot X^acdot exp(epsilon)$$



    That is, your model with a additive errors abiding to the conditions for OLS (normally distributed errors with constant variance) is equivalent to a potential model with multiplicative errors whose logaritm follows a normal distribution with constant variance.






    share|cite|improve this answer











    $endgroup$



    You just need to take exponential of both sides of the equation and you will get a potential relation, that may make sense for some data.



    $$log(Y) = alog(X) + b$$



    $$exp(log(Y)) = exp(a log(X) + b)$$



    $$Y = e^bcdot X^a$$



    And since $e^b$ is just a parameter that can take any positive value, this model is equivalent to:



    $$Y=c cdot X^a$$



    It should be noted that model expression should include the error term, and these change of variables has interesting effects on it:



    $$log(Y) = a log(X) + b + epsilon$$



    $$Y = e^bcdot X^acdot exp(epsilon)$$



    That is, your model with a additive errors abiding to the conditions for OLS (normally distributed errors with constant variance) is equivalent to a potential model with multiplicative errors whose logaritm follows a normal distribution with constant variance.







    share|cite|improve this answer














    share|cite|improve this answer



    share|cite|improve this answer








    edited Mar 26 at 21:12

























    answered Mar 26 at 16:04









    PerePere

    4,7531821




    4,7531821







    • 3




      $begingroup$
      OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
      $endgroup$
      – gardenhead
      Mar 26 at 19:40






    • 2




      $begingroup$
      What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
      $endgroup$
      – Stats
      Mar 26 at 21:17













    • 3




      $begingroup$
      OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
      $endgroup$
      – gardenhead
      Mar 26 at 19:40






    • 2




      $begingroup$
      What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
      $endgroup$
      – Stats
      Mar 26 at 21:17








    3




    3




    $begingroup$
    OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
    $endgroup$
    – gardenhead
    Mar 26 at 19:40




    $begingroup$
    OP may be interested to know that this distribution has a name, the log-normal: en.wikipedia.org/wiki/Log-normal_distribution
    $endgroup$
    – gardenhead
    Mar 26 at 19:40




    2




    2




    $begingroup$
    What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
    $endgroup$
    – Stats
    Mar 26 at 21:17





    $begingroup$
    What about the effect of Jensen's inequality? Generally for convex g, $E[g(X)]≥g(E[X])$
    $endgroup$
    – Stats
    Mar 26 at 21:17














    14












    $begingroup$

    You can take your model $log(Y)=alog(X)+b$ and calculate the total differential, you will end up with something like :
    $$frac1YdY=afrac1XdX$$
    which yields to
    $$fracdYdXfracXY=a$$



    Hence one simple interpretation of the coefficient $a$ will be the percent change in $Y$ for a percent change in $X$.
    This implies furthermore that the variable $Y$ growths at a constant fraction ($a$) of the growth rate of $X$.






    share|cite|improve this answer











    $endgroup$












    • $begingroup$
      So if the log-log plot is linear, that would imply a constant growth rate?
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 17:22










    • $begingroup$
      Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
      $endgroup$
      – RScrlli
      Mar 26 at 18:18










    • $begingroup$
      Not over time, the growth rate with respect to the growth in x.
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 18:21










    • $begingroup$
      reordering doesn't help, i'd remove it
      $endgroup$
      – Aksakal
      Mar 26 at 18:21






    • 1




      $begingroup$
      @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
      $endgroup$
      – RScrlli
      Mar 26 at 18:36















    14












    $begingroup$

    You can take your model $log(Y)=alog(X)+b$ and calculate the total differential, you will end up with something like :
    $$frac1YdY=afrac1XdX$$
    which yields to
    $$fracdYdXfracXY=a$$



    Hence one simple interpretation of the coefficient $a$ will be the percent change in $Y$ for a percent change in $X$.
    This implies furthermore that the variable $Y$ growths at a constant fraction ($a$) of the growth rate of $X$.






    share|cite|improve this answer











    $endgroup$












    • $begingroup$
      So if the log-log plot is linear, that would imply a constant growth rate?
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 17:22










    • $begingroup$
      Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
      $endgroup$
      – RScrlli
      Mar 26 at 18:18










    • $begingroup$
      Not over time, the growth rate with respect to the growth in x.
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 18:21










    • $begingroup$
      reordering doesn't help, i'd remove it
      $endgroup$
      – Aksakal
      Mar 26 at 18:21






    • 1




      $begingroup$
      @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
      $endgroup$
      – RScrlli
      Mar 26 at 18:36













    14












    14








    14





    $begingroup$

    You can take your model $log(Y)=alog(X)+b$ and calculate the total differential, you will end up with something like :
    $$frac1YdY=afrac1XdX$$
    which yields to
    $$fracdYdXfracXY=a$$



    Hence one simple interpretation of the coefficient $a$ will be the percent change in $Y$ for a percent change in $X$.
    This implies furthermore that the variable $Y$ growths at a constant fraction ($a$) of the growth rate of $X$.






    share|cite|improve this answer











    $endgroup$



    You can take your model $log(Y)=alog(X)+b$ and calculate the total differential, you will end up with something like :
    $$frac1YdY=afrac1XdX$$
    which yields to
    $$fracdYdXfracXY=a$$



    Hence one simple interpretation of the coefficient $a$ will be the percent change in $Y$ for a percent change in $X$.
    This implies furthermore that the variable $Y$ growths at a constant fraction ($a$) of the growth rate of $X$.







    share|cite|improve this answer














    share|cite|improve this answer



    share|cite|improve this answer








    edited Mar 26 at 18:38

























    answered Mar 26 at 16:41









    RScrlliRScrlli

    232112




    232112











    • $begingroup$
      So if the log-log plot is linear, that would imply a constant growth rate?
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 17:22










    • $begingroup$
      Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
      $endgroup$
      – RScrlli
      Mar 26 at 18:18










    • $begingroup$
      Not over time, the growth rate with respect to the growth in x.
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 18:21










    • $begingroup$
      reordering doesn't help, i'd remove it
      $endgroup$
      – Aksakal
      Mar 26 at 18:21






    • 1




      $begingroup$
      @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
      $endgroup$
      – RScrlli
      Mar 26 at 18:36
















    • $begingroup$
      So if the log-log plot is linear, that would imply a constant growth rate?
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 17:22










    • $begingroup$
      Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
      $endgroup$
      – RScrlli
      Mar 26 at 18:18










    • $begingroup$
      Not over time, the growth rate with respect to the growth in x.
      $endgroup$
      – Dimitriy V. Masterov
      Mar 26 at 18:21










    • $begingroup$
      reordering doesn't help, i'd remove it
      $endgroup$
      – Aksakal
      Mar 26 at 18:21






    • 1




      $begingroup$
      @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
      $endgroup$
      – RScrlli
      Mar 26 at 18:36















    $begingroup$
    So if the log-log plot is linear, that would imply a constant growth rate?
    $endgroup$
    – Dimitriy V. Masterov
    Mar 26 at 17:22




    $begingroup$
    So if the log-log plot is linear, that would imply a constant growth rate?
    $endgroup$
    – Dimitriy V. Masterov
    Mar 26 at 17:22












    $begingroup$
    Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
    $endgroup$
    – RScrlli
    Mar 26 at 18:18




    $begingroup$
    Not actually, the growth rate of $Y$ will be constant if and only if $a=0$.
    $endgroup$
    – RScrlli
    Mar 26 at 18:18












    $begingroup$
    Not over time, the growth rate with respect to the growth in x.
    $endgroup$
    – Dimitriy V. Masterov
    Mar 26 at 18:21




    $begingroup$
    Not over time, the growth rate with respect to the growth in x.
    $endgroup$
    – Dimitriy V. Masterov
    Mar 26 at 18:21












    $begingroup$
    reordering doesn't help, i'd remove it
    $endgroup$
    – Aksakal
    Mar 26 at 18:21




    $begingroup$
    reordering doesn't help, i'd remove it
    $endgroup$
    – Aksakal
    Mar 26 at 18:21




    1




    1




    $begingroup$
    @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
    $endgroup$
    – RScrlli
    Mar 26 at 18:36




    $begingroup$
    @DimitriyV.Masterov Ok, then since the $log(Y)$ is linear in $log(X)$ it means that the variable $Y$ grows at a constant fraction of the growth rate of $X$. Is there something wrong with my answer according to you?
    $endgroup$
    – RScrlli
    Mar 26 at 18:36











    7












    $begingroup$

    Intuitively $log$ gives us the order of magnitude of a variable, so we can view the relationship as the orders of magnitudes of the two variables are linearly related. For example, increasing the predictor by one order of magnitude may be associated with an increase of three orders of magnitude of the response.



    When plotting using a log-log plot we hope to see a linear relationship.
    Using an example from this question, we can check the linear model assumptions:



    log-log






    share|cite|improve this answer











    $endgroup$








    • 3




      $begingroup$
      +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
      $endgroup$
      – Frans Rodenburg
      Mar 27 at 7:24







    • 1




      $begingroup$
      The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
      $endgroup$
      – Pere
      Mar 27 at 8:42










    • $begingroup$
      @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
      $endgroup$
      – qwr
      Mar 27 at 9:33










    • $begingroup$
      It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
      $endgroup$
      – Henry
      Mar 28 at 9:03















    7












    $begingroup$

    Intuitively $log$ gives us the order of magnitude of a variable, so we can view the relationship as the orders of magnitudes of the two variables are linearly related. For example, increasing the predictor by one order of magnitude may be associated with an increase of three orders of magnitude of the response.



    When plotting using a log-log plot we hope to see a linear relationship.
    Using an example from this question, we can check the linear model assumptions:



    log-log






    share|cite|improve this answer











    $endgroup$








    • 3




      $begingroup$
      +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
      $endgroup$
      – Frans Rodenburg
      Mar 27 at 7:24







    • 1




      $begingroup$
      The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
      $endgroup$
      – Pere
      Mar 27 at 8:42










    • $begingroup$
      @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
      $endgroup$
      – qwr
      Mar 27 at 9:33










    • $begingroup$
      It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
      $endgroup$
      – Henry
      Mar 28 at 9:03













    7












    7








    7





    $begingroup$

    Intuitively $log$ gives us the order of magnitude of a variable, so we can view the relationship as the orders of magnitudes of the two variables are linearly related. For example, increasing the predictor by one order of magnitude may be associated with an increase of three orders of magnitude of the response.



    When plotting using a log-log plot we hope to see a linear relationship.
    Using an example from this question, we can check the linear model assumptions:



    log-log






    share|cite|improve this answer











    $endgroup$



    Intuitively $log$ gives us the order of magnitude of a variable, so we can view the relationship as the orders of magnitudes of the two variables are linearly related. For example, increasing the predictor by one order of magnitude may be associated with an increase of three orders of magnitude of the response.



    When plotting using a log-log plot we hope to see a linear relationship.
    Using an example from this question, we can check the linear model assumptions:



    log-log







    share|cite|improve this answer














    share|cite|improve this answer



    share|cite|improve this answer








    edited Mar 27 at 15:21









    Anon1759

    32




    32










    answered Mar 27 at 1:05









    qwrqwr

    249113




    249113







    • 3




      $begingroup$
      +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
      $endgroup$
      – Frans Rodenburg
      Mar 27 at 7:24







    • 1




      $begingroup$
      The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
      $endgroup$
      – Pere
      Mar 27 at 8:42










    • $begingroup$
      @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
      $endgroup$
      – qwr
      Mar 27 at 9:33










    • $begingroup$
      It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
      $endgroup$
      – Henry
      Mar 28 at 9:03












    • 3




      $begingroup$
      +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
      $endgroup$
      – Frans Rodenburg
      Mar 27 at 7:24







    • 1




      $begingroup$
      The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
      $endgroup$
      – Pere
      Mar 27 at 8:42










    • $begingroup$
      @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
      $endgroup$
      – qwr
      Mar 27 at 9:33










    • $begingroup$
      It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
      $endgroup$
      – Henry
      Mar 28 at 9:03







    3




    3




    $begingroup$
    +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
    $endgroup$
    – Frans Rodenburg
    Mar 27 at 7:24





    $begingroup$
    +1 for an intuitive answer to an unintuitive concept. However, the image you have included clearly violates constant error variance across the predictor.
    $endgroup$
    – Frans Rodenburg
    Mar 27 at 7:24





    1




    1




    $begingroup$
    The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
    $endgroup$
    – Pere
    Mar 27 at 8:42




    $begingroup$
    The answer is right, but authorship attribution is wrong. The image shouldn't be attributed to Google Images but, at least, to the web page where it is to be found, that can be find out just by clicking in Google images.
    $endgroup$
    – Pere
    Mar 27 at 8:42












    $begingroup$
    @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
    $endgroup$
    – qwr
    Mar 27 at 9:33




    $begingroup$
    @Pere I cannot find the original source of the image unfortunately (at least using reverse image search)
    $endgroup$
    – qwr
    Mar 27 at 9:33












    $begingroup$
    It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
    $endgroup$
    – Henry
    Mar 28 at 9:03




    $begingroup$
    It seems to come originally from diagramss.us though that site is down and most of its pages are not in the Web Archive apart from its homepage
    $endgroup$
    – Henry
    Mar 28 at 9:03











    4












    $begingroup$

    Reconciling the answer by @Rscrill with actual discrete data, consider



    $$log(Y_t) = alog(X_t) + b,;;; log(Y_t-1) = alog(X_t-1) + b$$



    $$implies log(Y_t) - log(Y_t-1) = aleft[log(X_t)-log(X_t-1)right]$$



    But



    $$log(Y_t) - log(Y_t-1) = logleft(fracY_tY_t-1right) equiv logleft(fracY_t-1+Delta Y_tY_t-1right) = logleft(1+fracDelta Y_tY_t-1right)$$



    $fracDelta Y_tY_t-1$ is the percentage change of $Y$ between periods $t-1$ and $t$, or the growth rate of $Y_t$, say $g_Y_t$. When it is smaller than $0.1$, we have that an acceptable approximation is



    $$logleft(1+fracDelta Y_tY_t-1right) approx fracDelta Y_tY_t-1=g_Y_t$$



    Therefore we get



    $$g_Y_tapprox ag_X_t$$



    which validates in empirical studies the theoretical treatment of @Rscrill.






    share|cite|improve this answer









    $endgroup$








    • 1




      $begingroup$
      This is probably what a mathematician would call intuitive :)
      $endgroup$
      – Richard Hardy
      Mar 28 at 10:59















    4












    $begingroup$

    Reconciling the answer by @Rscrill with actual discrete data, consider



    $$log(Y_t) = alog(X_t) + b,;;; log(Y_t-1) = alog(X_t-1) + b$$



    $$implies log(Y_t) - log(Y_t-1) = aleft[log(X_t)-log(X_t-1)right]$$



    But



    $$log(Y_t) - log(Y_t-1) = logleft(fracY_tY_t-1right) equiv logleft(fracY_t-1+Delta Y_tY_t-1right) = logleft(1+fracDelta Y_tY_t-1right)$$



    $fracDelta Y_tY_t-1$ is the percentage change of $Y$ between periods $t-1$ and $t$, or the growth rate of $Y_t$, say $g_Y_t$. When it is smaller than $0.1$, we have that an acceptable approximation is



    $$logleft(1+fracDelta Y_tY_t-1right) approx fracDelta Y_tY_t-1=g_Y_t$$



    Therefore we get



    $$g_Y_tapprox ag_X_t$$



    which validates in empirical studies the theoretical treatment of @Rscrill.






    share|cite|improve this answer









    $endgroup$








    • 1




      $begingroup$
      This is probably what a mathematician would call intuitive :)
      $endgroup$
      – Richard Hardy
      Mar 28 at 10:59













    4












    4








    4





    $begingroup$

    Reconciling the answer by @Rscrill with actual discrete data, consider



    $$log(Y_t) = alog(X_t) + b,;;; log(Y_t-1) = alog(X_t-1) + b$$



    $$implies log(Y_t) - log(Y_t-1) = aleft[log(X_t)-log(X_t-1)right]$$



    But



    $$log(Y_t) - log(Y_t-1) = logleft(fracY_tY_t-1right) equiv logleft(fracY_t-1+Delta Y_tY_t-1right) = logleft(1+fracDelta Y_tY_t-1right)$$



    $fracDelta Y_tY_t-1$ is the percentage change of $Y$ between periods $t-1$ and $t$, or the growth rate of $Y_t$, say $g_Y_t$. When it is smaller than $0.1$, we have that an acceptable approximation is



    $$logleft(1+fracDelta Y_tY_t-1right) approx fracDelta Y_tY_t-1=g_Y_t$$



    Therefore we get



    $$g_Y_tapprox ag_X_t$$



    which validates in empirical studies the theoretical treatment of @Rscrill.






    share|cite|improve this answer









    $endgroup$



    Reconciling the answer by @Rscrill with actual discrete data, consider



    $$log(Y_t) = alog(X_t) + b,;;; log(Y_t-1) = alog(X_t-1) + b$$



    $$implies log(Y_t) - log(Y_t-1) = aleft[log(X_t)-log(X_t-1)right]$$



    But



    $$log(Y_t) - log(Y_t-1) = logleft(fracY_tY_t-1right) equiv logleft(fracY_t-1+Delta Y_tY_t-1right) = logleft(1+fracDelta Y_tY_t-1right)$$



    $fracDelta Y_tY_t-1$ is the percentage change of $Y$ between periods $t-1$ and $t$, or the growth rate of $Y_t$, say $g_Y_t$. When it is smaller than $0.1$, we have that an acceptable approximation is



    $$logleft(1+fracDelta Y_tY_t-1right) approx fracDelta Y_tY_t-1=g_Y_t$$



    Therefore we get



    $$g_Y_tapprox ag_X_t$$



    which validates in empirical studies the theoretical treatment of @Rscrill.







    share|cite|improve this answer












    share|cite|improve this answer



    share|cite|improve this answer










    answered Mar 26 at 22:09









    Alecos PapadopoulosAlecos Papadopoulos

    43k297199




    43k297199







    • 1




      $begingroup$
      This is probably what a mathematician would call intuitive :)
      $endgroup$
      – Richard Hardy
      Mar 28 at 10:59












    • 1




      $begingroup$
      This is probably what a mathematician would call intuitive :)
      $endgroup$
      – Richard Hardy
      Mar 28 at 10:59







    1




    1




    $begingroup$
    This is probably what a mathematician would call intuitive :)
    $endgroup$
    – Richard Hardy
    Mar 28 at 10:59




    $begingroup$
    This is probably what a mathematician would call intuitive :)
    $endgroup$
    – Richard Hardy
    Mar 28 at 10:59











    0












    $begingroup$

    A linear relationship between the logs is equivalent to a power law dependence:
    $$Y sim X^alpha$$
    In physics such behavior means that the system is scale free or scale invariant. As an example, if $X$ is distance or time this means that the dependence on $X$ cannot be characterized by a characteristic length or time scale (as opposed to exponential decays). As a result, such a system exhibits a long-range dependence of the $Y$ on $X$.






    share|cite|improve this answer











    $endgroup$

















      0












      $begingroup$

      A linear relationship between the logs is equivalent to a power law dependence:
      $$Y sim X^alpha$$
      In physics such behavior means that the system is scale free or scale invariant. As an example, if $X$ is distance or time this means that the dependence on $X$ cannot be characterized by a characteristic length or time scale (as opposed to exponential decays). As a result, such a system exhibits a long-range dependence of the $Y$ on $X$.






      share|cite|improve this answer











      $endgroup$















        0












        0








        0





        $begingroup$

        A linear relationship between the logs is equivalent to a power law dependence:
        $$Y sim X^alpha$$
        In physics such behavior means that the system is scale free or scale invariant. As an example, if $X$ is distance or time this means that the dependence on $X$ cannot be characterized by a characteristic length or time scale (as opposed to exponential decays). As a result, such a system exhibits a long-range dependence of the $Y$ on $X$.






        share|cite|improve this answer











        $endgroup$



        A linear relationship between the logs is equivalent to a power law dependence:
        $$Y sim X^alpha$$
        In physics such behavior means that the system is scale free or scale invariant. As an example, if $X$ is distance or time this means that the dependence on $X$ cannot be characterized by a characteristic length or time scale (as opposed to exponential decays). As a result, such a system exhibits a long-range dependence of the $Y$ on $X$.







        share|cite|improve this answer














        share|cite|improve this answer



        share|cite|improve this answer








        edited Apr 2 at 11:28

























        answered Apr 2 at 3:42









        ItamarItamar

        67749




        67749















            protected by kjetil b halvorsen Apr 2 at 7:15



            Thank you for your interest in this question.
            Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



            Would you like to answer one of these unanswered questions instead?



            Popular posts from this blog

            Færeyskur hestur Heimild | Tengill | Tilvísanir | LeiðsagnarvalRossið - síða um færeyska hrossið á færeyskuGott ár hjá færeyska hestinum

            He _____ here since 1970 . Answer needed [closed]What does “since he was so high” mean?Meaning of “catch birds for”?How do I ensure “since” takes the meaning I want?“Who cares here” meaningWhat does “right round toward” mean?the time tense (had now been detected)What does the phrase “ring around the roses” mean here?Correct usage of “visited upon”Meaning of “foiled rail sabotage bid”It was the third time I had gone to Rome or It is the third time I had been to Rome

            Slayer Innehåll Historia | Stil, komposition och lyrik | Bandets betydelse och framgångar | Sidoprojekt och samarbeten | Kontroverser | Medlemmar | Utmärkelser och nomineringar | Turnéer och festivaler | Diskografi | Referenser | Externa länkar | Navigeringsmenywww.slayer.net”Metal Massacre vol. 1””Metal Massacre vol. 3””Metal Massacre Volume III””Show No Mercy””Haunting the Chapel””Live Undead””Hell Awaits””Reign in Blood””Reign in Blood””Gold & Platinum – Reign in Blood””Golden Gods Awards Winners”originalet”Kerrang! Hall Of Fame””Slayer Looks Back On 37-Year Career In New Video Series: Part Two””South of Heaven””Gold & Platinum – South of Heaven””Seasons in the Abyss””Gold & Platinum - Seasons in the Abyss””Divine Intervention””Divine Intervention - Release group by Slayer””Gold & Platinum - Divine Intervention””Live Intrusion””Undisputed Attitude””Abolish Government/Superficial Love””Release “Slatanic Slaughter: A Tribute to Slayer” by Various Artists””Diabolus in Musica””Soundtrack to the Apocalypse””God Hates Us All””Systematic - Relationships””War at the Warfield””Gold & Platinum - War at the Warfield””Soundtrack to the Apocalypse””Gold & Platinum - Still Reigning””Metallica, Slayer, Iron Mauden Among Winners At Metal Hammer Awards””Eternal Pyre””Eternal Pyre - Slayer release group””Eternal Pyre””Metal Storm Awards 2006””Kerrang! Hall Of Fame””Slayer Wins 'Best Metal' Grammy Award””Slayer Guitarist Jeff Hanneman Dies””Bullet-For My Valentine booed at Metal Hammer Golden Gods Awards””Unholy Aliance””The End Of Slayer?””Slayer: We Could Thrash Out Two More Albums If We're Fast Enough...””'The Unholy Alliance: Chapter III' UK Dates Added”originalet”Megadeth And Slayer To Co-Headline 'Canadian Carnage' Trek”originalet”World Painted Blood””Release “World Painted Blood” by Slayer””Metallica Heading To Cinemas””Slayer, Megadeth To Join Forces For 'European Carnage' Tour - Dec. 18, 2010”originalet”Slayer's Hanneman Contracts Acute Infection; Band To Bring In Guest Guitarist””Cannibal Corpse's Pat O'Brien Will Step In As Slayer's Guest Guitarist”originalet”Slayer’s Jeff Hanneman Dead at 49””Dave Lombardo Says He Made Only $67,000 In 2011 While Touring With Slayer””Slayer: We Do Not Agree With Dave Lombardo's Substance Or Timeline Of Events””Slayer Welcomes Drummer Paul Bostaph Back To The Fold””Slayer Hope to Unveil Never-Before-Heard Jeff Hanneman Material on Next Album””Slayer Debut New Song 'Implode' During Surprise Golden Gods Appearance””Release group Repentless by Slayer””Repentless - Slayer - Credits””Slayer””Metal Storm Awards 2015””Slayer - to release comic book "Repentless #1"””Slayer To Release 'Repentless' 6.66" Vinyl Box Set””BREAKING NEWS: Slayer Announce Farewell Tour””Slayer Recruit Lamb of God, Anthrax, Behemoth + Testament for Final Tour””Slayer lägger ner efter 37 år””Slayer Announces Second North American Leg Of 'Final' Tour””Final World Tour””Slayer Announces Final European Tour With Lamb of God, Anthrax And Obituary””Slayer To Tour Europe With Lamb of God, Anthrax And Obituary””Slayer To Play 'Last French Show Ever' At Next Year's Hellfst””Slayer's Final World Tour Will Extend Into 2019””Death Angel's Rob Cavestany On Slayer's 'Farewell' Tour: 'Some Of Us Could See This Coming'””Testament Has No Plans To Retire Anytime Soon, Says Chuck Billy””Anthrax's Scott Ian On Slayer's 'Farewell' Tour Plans: 'I Was Surprised And I Wasn't Surprised'””Slayer””Slayer's Morbid Schlock””Review/Rock; For Slayer, the Mania Is the Message””Slayer - Biography””Slayer - Reign In Blood”originalet”Dave Lombardo””An exclusive oral history of Slayer”originalet”Exclusive! Interview With Slayer Guitarist Jeff Hanneman”originalet”Thinking Out Loud: Slayer's Kerry King on hair metal, Satan and being polite””Slayer Lyrics””Slayer - Biography””Most influential artists for extreme metal music””Slayer - Reign in Blood””Slayer guitarist Jeff Hanneman dies aged 49””Slatanic Slaughter: A Tribute to Slayer””Gateway to Hell: A Tribute to Slayer””Covered In Blood””Slayer: The Origins of Thrash in San Francisco, CA.””Why They Rule - #6 Slayer”originalet”Guitar World's 100 Greatest Heavy Metal Guitarists Of All Time”originalet”The fans have spoken: Slayer comes out on top in readers' polls”originalet”Tribute to Jeff Hanneman (1964-2013)””Lamb Of God Frontman: We Sound Like A Slayer Rip-Off””BEHEMOTH Frontman Pays Tribute To SLAYER's JEFF HANNEMAN””Slayer, Hatebreed Doing Double Duty On This Year's Ozzfest””System of a Down””Lacuna Coil’s Andrea Ferro Talks Influences, Skateboarding, Band Origins + More””Slayer - Reign in Blood””Into The Lungs of Hell””Slayer rules - en utställning om fans””Slayer and Their Fans Slashed Through a No-Holds-Barred Night at Gas Monkey””Home””Slayer””Gold & Platinum - The Big 4 Live from Sofia, Bulgaria””Exclusive! Interview With Slayer Guitarist Kerry King””2008-02-23: Wiltern, Los Angeles, CA, USA””Slayer's Kerry King To Perform With Megadeth Tonight! - Oct. 21, 2010”originalet”Dave Lombardo - Biography”Slayer Case DismissedArkiveradUltimate Classic Rock: Slayer guitarist Jeff Hanneman dead at 49.”Slayer: "We could never do any thing like Some Kind Of Monster..."””Cannibal Corpse'S Pat O'Brien Will Step In As Slayer'S Guest Guitarist | The Official Slayer Site”originalet”Slayer Wins 'Best Metal' Grammy Award””Slayer Guitarist Jeff Hanneman Dies””Kerrang! Awards 2006 Blog: Kerrang! Hall Of Fame””Kerrang! Awards 2013: Kerrang! Legend”originalet”Metallica, Slayer, Iron Maien Among Winners At Metal Hammer Awards””Metal Hammer Golden Gods Awards””Bullet For My Valentine Booed At Metal Hammer Golden Gods Awards””Metal Storm Awards 2006””Metal Storm Awards 2015””Slayer's Concert History””Slayer - Relationships””Slayer - Releases”Slayers officiella webbplatsSlayer på MusicBrainzOfficiell webbplatsSlayerSlayerr1373445760000 0001 1540 47353068615-5086262726cb13906545x(data)6033143kn20030215029