Dear all,
I've been trying to use the supermodularity approach to check the pairwise complementarities between innovations.
My question is about testing joint inequality in STATA.
In the supermodularity approach, there is complementaritiy if C (1, 1) – C (0, 1) ≥ C (1, 0) – C (0, 0), where the binary variables indicate whether a firm conducts a type of innovation.
To test joint inequality,recent studies follow Kodde and Palm’s approach (1986) and use Wald test. They use inequality in their null hypothesis: C (11XX) – C (01XX) - C (10XX) + C (00XX) ≥ 0
The problem is that the test command, which is for Wald test, in STATA doesn't allow joint inequality, so I can only test joint equality in my null hypothesis: C (11XX) – C (01XX) - C (10XX) + C (00XX) = 0
My Stata code looks like:
Currently, I run test command for Wald test after the xtprobit command.
I'm looking for a way to do this:
I wonder if you could let me know how to perform Wald test for multiple inequality constraints (joint hypotheses).
Also, I've check the FAQ: "How can I perform a one-sided test?"
https://www.stata.com/support/faqs/s...-coefficients/
But this only applies to single hypothesis, not joint hypothesis.
I've been trying to use the supermodularity approach to check the pairwise complementarities between innovations.
My question is about testing joint inequality in STATA.
In the supermodularity approach, there is complementaritiy if C (1, 1) – C (0, 1) ≥ C (1, 0) – C (0, 0), where the binary variables indicate whether a firm conducts a type of innovation.
To test joint inequality,recent studies follow Kodde and Palm’s approach (1986) and use Wald test. They use inequality in their null hypothesis: C (11XX) – C (01XX) - C (10XX) + C (00XX) ≥ 0
The problem is that the test command, which is for Wald test, in STATA doesn't allow joint inequality, so I can only test joint equality in my null hypothesis: C (11XX) – C (01XX) - C (10XX) + C (00XX) = 0
My Stata code looks like:
Code:
test (C1111 – C0111 - C1011 - C0011 = 0) (C1110 – C0110 - C1010 - C0010 = 0) (C1101 – C0101 - C1001 - C0001 = 0) (C1100 – C0100 - C1000 - C0000 = 0) chi2 ( 4) = 1.57 Prob > chi2 = 0.8137
I'm looking for a way to do this:
Code:
test (C1111 – C0111 - C1011 - C0011 >= 0) (C1110 – C0110 - C1010 - C0010 >= 0) (C1101 – C0101 - C1001 - C0001 >= 0) (C1100 – C0100 - C1000 - C0000 >= 0)
Also, I've check the FAQ: "How can I perform a one-sided test?"
https://www.stata.com/support/faqs/s...-coefficients/
But this only applies to single hypothesis, not joint hypothesis.

Comment