Page 1 of 1

Statistics Table

Posted: Wed Mar 10, 2010 3:00 pm
by Dijon
How do I add the "mode" to a descriptive statistics table?

Re: Statistics Table

Posted: Wed Mar 10, 2010 3:20 pm
by EViews Gareth
You can't "add" it to the standard descriptive statistics table, although you can compute it yourself:

Code: Select all

smpl if @obsby(i,i) = @max(@obsby(i,i)) scalar mode = @max(i) smpl @all
The fact that it is somewhat more complicated to compute than you might expect is mainly due to the fact that, traditionally, EViews has been aimed at real valued data, not discrete valued data.