How do i remove the legends for the scatterplot in this code?
twoway (scatter HGB Total_CO2 if SEX==0, mcolor(red%05)) (scatter HGB Total_CO2 if SEX==1, mcolor(blue%05)) || (lfit HGB Total_CO2 if SEX==0, lcolor(red) lpattern(dash))|| (lfit HGB Total_CO2 if SEX==1, lcolor(blue) lpattern(dash)) || (lfit HGB Total_CO2, lcolor(black) lwidth(medthick)), ytitle(HGB) xtitle("Dietary GHGE (kg/day)") legend(label (3 "All") label (4 "Women") label (5 "Men"))

twoway (scatter HGB Total_CO2 if SEX==0, mcolor(red%05)) (scatter HGB Total_CO2 if SEX==1, mcolor(blue%05)) || (lfit HGB Total_CO2 if SEX==0, lcolor(red) lpattern(dash))|| (lfit HGB Total_CO2 if SEX==1, lcolor(blue) lpattern(dash)) || (lfit HGB Total_CO2, lcolor(black) lwidth(medthick)), ytitle(HGB) xtitle("Dietary GHGE (kg/day)") legend(label (3 "All") label (4 "Women") label (5 "Men"))
Comment