Dear all,
I am trying to manually plot the coefficients and confidence intervals for a single variable from six regressions. I want to input the coefficients and standard errors in a matrix and then plot the matrix (coefficients and calculated 95% confidence intervals) using coefplot. I managed to plot the coefficients but not the confidence intervals. When creating the matrix, is there a way to define that the first row is "b" and the second row is "se" and then somehow ask Stata to calculate the confidence intervals and plot those as well? This is what I have up to now:
The coefficients are plotted but I get this error for the CI: "(A: could not determine CI1)"
Thank you! Your help will be appreciated so much!
I am trying to manually plot the coefficients and confidence intervals for a single variable from six regressions. I want to input the coefficients and standard errors in a matrix and then plot the matrix (coefficients and calculated 95% confidence intervals) using coefplot. I managed to plot the coefficients but not the confidence intervals. When creating the matrix, is there a way to define that the first row is "b" and the second row is "se" and then somehow ask Stata to calculate the confidence intervals and plot those as well? This is what I have up to now:
Code:
clear all matrix input A = (13.1304, 3.6182, 1.3543, -1.2372, 1.7941, 1.9699 \ 4.766, 1.388, 0.936, 1.410, 0.342, 0.207) coefplot mat(A), vertical
Thank you! Your help will be appreciated so much!
Comment