I am simply trying to create a scatter plot using an independent variable and a dependent variable, however it is generating the attached photo. Does anyone know why this might be and how to fix it?
Thank you
Thank you
clear set obs 1000 set seed 2803 gen age = runiformint(19, 34) gen score = rbinomial(9, 0.5) + 1 set scheme s1color tabplot score age, yreverse showval(format(%1.0f) mlabsize(vsmall)) percent(age) ysize(7)
Comment