Dear all,
I try to get my summarize statistics by using outreg2.
I get the following error message:
However, I definitely have less than 400 variables so I don’t understand the error message.
As I want only a small number of variables in my table, I used the following code from help outreg2 trying to solve the problem like this.
However, the error message remains the same.
I try to get my summarize statistics by using outreg2.
Code:
sum outreg2 using myfile, sum(log) replace eqkeep(N se mean min max coef se) see
matsize too small
You have attempted to create a matrix with too many rows or columns or attempted to fit a model with too many variables. You need to increase matsize; it is currently 400. Use set matsize; see help matsize.
You have attempted to create a matrix with too many rows or columns or attempted to fit a model with too many variables. You need to increase matsize; it is currently 400. Use set matsize; see help matsize.
As I want only a small number of variables in my table, I used the following code from help outreg2 trying to solve the problem like this.
Code:
outreg2 using myfile, sum(log) replace keep(GermanFDIs GDP EnvPolicyIndex Stringency Clarity) eqkeep(N se mean min max coef se) see
Comment