vote up 0 vote down star

From a book of computer simulation, I got this two equation.

alt text

The first is to calculate correlogram, the second is how to use correlogram to estimate variance.

The common approach to estimate variance of observation is often not incorrect in computer simulation because observations are often related.

My question is, the value I calculated from my program is very big, so it could not be correct.

I think because r[k] is going to get near 0 when k gets greater, the second equation will give a quite large value, so maybe the equation is incorrect?

As you asked, here is the whole program:

@property
def autocorrelation(self):
    n = self.packet_sent
    mean = self.mean
    waiting_times = self.waiting_times
    R = [ sum([(x - mean) ** 2 for x in waiting_times[:-1]]) / n ]
    #print R

    for k in range(1, n / 4 + 1):
        R.append(0)
        for i in range(0, n - k):
            R[k] += (waiting_times[i] - mean) * (waiting_times[i + k] - mean)
        R[k] /=  n

    auto_cor = [r / R[0] for r in R]
    return auto_cor

@property
def standard_deviation_wrong(self):
    '''This must be a wrong method'''
    s_x = self.standard_deviation_simple
    auto_cor = self.autocorrelation
    s = 0
    n = self.packet_sent
    for k, r in enumerate(auto_cor[1:]):
        s += 1 - (k + 1.0) * r / n
        #print "%f %f %f" % (k, r, s)
    s *= 2
    s += 1
    s = ((s_x ** 2) * s) ** 0.5
    return s
flag

76% accept rate
hard to tell without the actual functions you programmed. – nlucaroni Oct 28 at 20:31
Have you checked back in some other software? Are the formulas describing an upper bound? Could you give us a link to the book, or some other source? – __roland__ Oct 28 at 20:44
We need to see the data. As your variance approaches zero, r[k] will approach infinity. – Paul Oct 28 at 23:03

1 Answer

vote up 0 vote down

The correlogram can be calculated with the funtionc acf() too.

-k

link|flag
Do you mean acf() in R language? I've tried that. – ablmf Nov 7 at 7:33
Oh, what I had in mind simply was that you could try to use acf() (hopefully its implementation is correct) to narrow down search space regarding the cause of your bugs. – knguyen Nov 7 at 17:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.