Dear reader,
I am trying to determine the optimal number of lags for my reduced form pvar model, but it will not produce the intended results. My sample ranges from 2010-2019. I am replicating Kang et al (2016), and improving their approach by incorporating the methods of Abrigo & Love (2016).
My data set descriptive statistics are as follows:
TABLE 3
Descriptive Statistics
I coded the following
which produces
As you can see I used the standardized CSR and CSI scores, as Kang et al uses those in their reduced form pvar model as well, but I cannot get results. I tried working with 'pinst' option as well, but I could not get that command to run. I am wondering what I am doing wrong as I cannot get it to produce the intended results, and it does not use my full data range. Does anyone familiar with pvar models and the pvarsoc command have any information on what I could try to resolve this?
Thanks for taking the time,
Jesse
I am trying to determine the optimal number of lags for my reduced form pvar model, but it will not produce the intended results. My sample ranges from 2010-2019. I am replicating Kang et al (2016), and improving their approach by incorporating the methods of Abrigo & Love (2016).
My data set descriptive statistics are as follows:
TABLE 3
Descriptive Statistics
Variables | CSR | CSI | Tobin’s q | Firm Size | FL | ROA | Advertising Intensity | R&D Intensity |
CSR | 1.000 | |||||||
CSI | 0.457 | 1.000 | ||||||
Tobin’s q | 0.016 | -0.047 | 1.000 | |||||
Firm Size [log(emp)] | 0.456 | 0.334 | -0.146 | 1.000 | ||||
Financial Leverage | 0.035 | 0.013 | -0.016 | 0.149 | 1.000 | |||
ROA | 0.105 | 0.104 | -0.158 | 0.236 | -0.078 | 1.000 | ||
Advertising Intensity | -0.013 | -0.021 | 0.085 | -0.046 | 0.001 | -0.171 | 1.000 | |
R&D Intensity | -0.019 | -0.021 | 0.030 | -0.052 | -0.008 | -0.083 | 0.401 | 1.000 |
M | .816 | .515 | 1.518 | 1.378 | .252 | -.079 | .046 | 7.774 |
SD | 1.978 | 1.185 | 1.666 | 1.36 | .273 | .495 | .381 | 143.486 |
Note: The means, standard deviations, and pairwise correlations reported here are based on unstandardized CSR and CSI scores. Note that the CSR and CSI scores are standardized for the empirical analysis. |
I coded the following
Code:
xtset company Year //declaring panel data pvarsoc FP stdCSR stdCSI, maxlag(5) //determining optimal lag
Code:
Panel variable: company (unbalanced) Time variable: Year, 2010 to 2019, but with gaps Delta: 1 unit . pvarsoc FP stdCSR stdCSI, maxlag(5) //determining optimal lag Running panel VAR lag order selection on estimation sample ..... Selection order criteria Sample: 2015 - 2018 No. of obs = 8210 No. of panels = 2507 Ave. no. of T = 3.275 +--------------------------------------------------------------------------+ | lag | CD J J pvalue MBIC MAIC MQIC | |-------+------------------------------------------------------------------| | 1 | .9870712 . . . . . | | 2 | .9863182 . . . . . | | 3 | .9874768 . . . . . | | 4 | .9850972 . . . . . | | 5 | .9895069 . . . . . | +--------------------------------------------------------------------------+
Thanks for taking the time,
Jesse
Comment