I hope someone can please assist with the syntax errors I'm experiencing with my twoway scatter plots.


1) With a comma (,) before the xscale range:

. twoway (scatter DiffMeanCost DiffMeanEQ5DQALY, msize(small)), xscale(range(0 1
> .1)) xscale(noline) xline(0,lcolor(black)) xlabel(,angle(0)) yscale(range(-100
> 0 1000)) yscale(noline) yline(0,lcolor(black) extend))
option ) not allowed
r(198);

2) I have removed the comma (,) before the xscale range:

. twoway (scatter DiffMeanCost DiffMeanEQ5DQALY, msize(small)) xscale(range(0 1.
> 1)) xscale(noline) xline(0,lcolor(black)) xlabel(,angle(0)) yscale(range(-1000
> 1000)) yscale(noline) yline(0,lcolor(black) extend))
) required
r(100);