Hi everyone!
I'm currently trying to customize a graph (binscatter) with specific colors, however Stata doesn't recognize them(?) because the graph shows everything in black (which isn't either of the colors I'm trying to use). I'm following this guide: https://medium.com/the-stata-guide/s...s-4320b16f7ef7
and I'm pretty sure all the packages needed are installed.
Using the rgb codes generates the same results.
This is the "error":
(note: named style ... not found in class color, default attributes used)
Thanks in advance!

I'm currently trying to customize a graph (binscatter) with specific colors, however Stata doesn't recognize them(?) because the graph shows everything in black (which isn't either of the colors I'm trying to use). I'm following this guide: https://medium.com/the-stata-guide/s...s-4320b16f7ef7
and I'm pretty sure all the packages needed are installed.
Code:
colorpalette SlateBlue LightSeaGreen SandyBrown w3-lime w3-deep-orange, nograph return list binscatter z_math asistencia_6b, by(year) mcolor("`r(p1)'" "`r(p2)'" "`r(p3)'" "`r(p4)'") lcolor("`r(p1)'" "`r(p2)'" "`r(p3)'" "`r(p4)'")
This is the "error":
(note: named style ... not found in class color, default attributes used)
Thanks in advance!
Comment