Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: Is there a way to use or emulate the behaviour of --predict-- with --by-- groups?
From
Maarten Buis <[email protected]>
To
[email protected]
Subject
Re: st: Is there a way to use or emulate the behaviour of --predict-- with --by-- groups?
Date
Wed, 31 Oct 2012 09:19:50 +0100
On Wed, Oct 31, 2012 at 1:40 AM, Aaron Kirkman wrote:
> I have data grouped by a variable called --group--, in this example,
> and I'm trying to use logarithmic interpolation on another variable.
> Linear interpolation using the --ipolate-- command works perfectly in
> --by-- group <snip> Unfortunately, this does not work with logarithmic
> interpolation and --regress--/--predict--.
You can avoid the -by:- prefix by adding interactions to your linear
regression model:
*---------- begin example ----------
clear
quietly input str1 group x y
A 1 1000
A 2 .
A 3 3000
A 4 .
B 5 45
B 6 .
B 9 20
end
encode group, gen(groupnum)
gen lx = ln(x)
reg y i.groupnum##c.lx
predict y_loginterp, xb
*----------- end example -----------
Notice that the observation A 4 is not strictly speaking an
interpolation but an extrapolation. You'll want to be more careful in
those situations.
Hope this helps,
Maarten
---------------------------------
Maarten L. Buis
WZB
Reichpietschufer 50
10785 Berlin
Germany
http://www.maartenbuis.nl
---------------------------------
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/