Page 1 of 1

average of two series

Posted: Thu Apr 30, 2026 9:07 am
by houji
Hi,

I would like to create a series X that is the average of a few other series (a,b,c, etc).

Is there a function in Eviews that would give me

Code: Select all

series x = average(a,b,c)
?

Thanks!

Houji

Re: average of two series

Posted: Thu Apr 30, 2026 10:10 am
by EViews Gareth

Code: Select all

group mygrp a b c series x = @rmean(mygrp)

Re: average of two series

Posted: Fri May 01, 2026 6:46 am
by startz
Or

Code: Select all

series x = (a+b+c)/3