I am trying to plot a chart with confidence intervals, where I know the variable is bounded such that it is always >=0. However, for some cases my CI is negative, causing the chart to include negative values for y, as in the following (nonsense) example:
Adjusting the yscale does not work, as this only allows me to expand the scale. Is there anyway to narrow the y-axis without subsetting the data?
Code:
sysuse auto replace price = price-4000 cibar price, over1(rep78)
Comment