Bookmark and Share

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]

st: Problem with decile significance test


From   Xixi Lin <[email protected]>
To   statalist <[email protected]>
Subject   st: Problem with decile significance test
Date   Mon, 11 Mar 2013 15:33:49 -0400

Hi,

I am trying to do decile significance test, however my codes does not
work, can anyone help me to debug it?

Here is my code:
//create deciles according to independent variables
sort X1
by X1: gen d_X1=ceil(_n*10/_N)

foreach x of numlist 2/120 {
	replace d_X1=ceil(_n*10/_N) if Period==`x'
}
*****repeat the above code for each  independent variable

//t statistics
foreach x in X1 X2 X3 X4 X5 {
       gen Return1_`x'=.
	   gen Return2_`x'=.
foreach z of numlist 2/120 {
       replace Return1_`x'=Return if d_`x'==1 & Period==`z'
	   replace Return2_`x'=Return if d_`x'==10 & Period==`z'
	   ttest Return1=Return2 if Period==`z'
	   display "`x'" "Period " "`z'" `r(p)'
      }
   }
 ****it would be better if I can display p value for T>t not
|T|>|t|******Anyone knows how to display that?

The stata shows that "no observations". Does anyone know what is wrong
with my code?

Best,
Xixi Lin
*
*   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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index