0

I have two set of gamma distribution .

standard deviation is related to its population mean

Given unequal standard deviation, how do I make sure the population mean is equal (null hypothesis is TRUE) ?

Is the answer is we have to minus the population mean (alpha*beta) from the every sample we pick from simulation.? [ since i am care about mean and variance, then how can i do to maintain the populatio mean

Scale parameters -- How do they work, why are they sometimes dropped?

If you care at all about variances being equal, you care about the scaling parameter. . In the general case, if you care about means, you care about scaling. [credited from post above]

j.l
  • 11
  • 1
  • 6
  • Please be explicit about whether your $\beta$ is intended to be a scale or rate parameter (or indeed, something else). Further, your question seems to largely be answering itself (you state things that largely seem to answer the questions you ask) – Glen_b Apr 11 '16 at 17:26
  • 1
    This reads like a reworded version of a routine textbook-style exercise. Is this work for some class? – Glen_b Apr 11 '16 at 17:31
  • erm...Since i am given five skewness, I did tried to use formula of skewness to find out the shape parameter and then try to use standard deviation to find scale parameter, however, the answer is not the same in two distribution... – j.l Apr 12 '16 at 02:32
  • i am sorry but it is not a work, just need an further understanding on gamma distribution and define them by myself>< Because i couldnt find online and books . – j.l Apr 12 '16 at 02:34
  • I don't quite understand the situation you're describing in your second-last comment. Can you explain the circumstances in more detail (perhaps in your question)? (if you want to notify me put *@Glen_b* in a comment to tell me you did so -- I won't otherwise know when your question is edited.) – Glen_b Apr 12 '16 at 02:48
  • @Glen_b i just edited my questions. – j.l Apr 12 '16 at 05:25
  • I'm sorry but your question makes no sense to me at all now. How do you have multiple standard deviations per sample? – Glen_b Apr 12 '16 at 05:36
  • i am sorry , it look like i do not state the question clearer, i set several cases of standard deviation to conduct a simulation study ... – j.l Apr 12 '16 at 07:32
  • so in fact it is actually one standard deviation for one sample ... – j.l Apr 12 '16 at 07:37
  • I'm sorry I Still can't figure out what you did in your simulation study. Please explain what you actually did – Glen_b Apr 12 '16 at 09:47
  • @Glen_b i just edited my problem, actually i am just have some question on how do make sure that the two gamma distribution have the same skewness , and do the difference of scale parameter in two distribution have affect on the skewness of distribution? – j.l Apr 13 '16 at 02:04
  • Item 1. in my answer already covers that. I've added a couple more words at the end to restate it. Can you show what you actually calculated when you did this: " skewness =1, standard deviation of first distribution is 6, while another distribution have 4 as its std deviation. By applying the formula of skewness, i get the shape parameter as 4 for both of the distribution." ... which formula for skewness? I wonder whether you're confusing sample and population calculations and expecting them to correspond. – Glen_b Apr 13 '16 at 02:11
  • @Glen_b edited the question, i use skewness=2/sqrt(alpha) to get the calculation of shape parameter – j.l Apr 13 '16 at 02:20
  • ermm, i was just taking the samples sizes and samples standard deviation to calculate only... – j.l Apr 13 '16 at 02:21
  • Can you show full details -- complete calculations -- of what doesn't correspond, in your question please – Glen_b Apr 13 '16 at 02:24

1 Answers1

1
  1. As you state in your question, the moment skewness of a gamma distribution is $\frac{2}{\sqrt{\alpha}}$, where $\alpha$ is the shape parameter.

    This means that if you know the two population shape parameters, and they're the same then the two distributions have the same moment-skewness.

  2. The symbol $\beta$ is sometimes used for the scale parameter of the gamma (let's call that $\tau$), and sometimes for the rate parameter (let's call that $\lambda$). Since it's not presently clear which you seek, I'll discuss both.

    The variance of a gamma distribution is $\alpha \tau^2=\alpha /\lambda^2$ from which you can find the standard deviation.

    [Both these facts are on the Wikipedia page for the distribution.]

    So the standard deviation is related to the skewness parameter (since the standard deviation is a function of $\alpha$, if you change the skewness while holding the other parameter constant you will change the standard deviation) but you can change the standard deviation without changing the skewness, by changing the scale parameter, which doesn't affect the skewness.

Glen_b
  • 257,508
  • 32
  • 553
  • 939