Hi All,
I think I am misreading the documentation for the (user written) stripplot function.
I had been specifying the box option in accordance with the documentation (using the options of "twoway rbar" as suboptions) to create a blue box with a white outline. Following the documentation found under
I used the following code:
Instead of a white outline, it stuck with the default black. This didn't change when I replaced "255 255 255" with "white".
On a hunch, I changed the "lcolor" option to "blcolor", since I noticed in the stripplot documentation it says
So the code that did work was:
My question is:
(1) Is there more accurate documentation available than the "twoway rbar" options, which includes the options "blcolor()" and "bfcolor()"?
(2) In the attached figure [the output of Final Code] there are thin lines that circumscribe the box and run through the white median lines. Is there a way to delete these?
Kind regards,
Dave
I think I am misreading the documentation for the (user written) stripplot function.
I had been specifying the box option in accordance with the documentation (using the options of "twoway rbar" as suboptions) to create a blue box with a white outline. Following the documentation found under
Code:
help twoway rbar
Code:
*Draft Code sysuse auto stripplot price, box(fcolor("0 40 86") lcolor("255 255 255")) vertical over(foreign) ms(none) mlabpos(0)
On a hunch, I changed the "lcolor" option to "blcolor", since I noticed in the stripplot documentation it says
"[t]he defaults are bfcolor(none) barwidth(0.4) blwidth(medthin)."
Code:
*Final Code sysuse auto stripplot price, box(bfcolor("0 40 86") blcolor("255 255 255")) vertical over(foreign) ms(none) mlabpos(0)
(1) Is there more accurate documentation available than the "twoway rbar" options, which includes the options "blcolor()" and "bfcolor()"?
(2) In the attached figure [the output of Final Code] there are thin lines that circumscribe the box and run through the white median lines. Is there a way to delete these?
Kind regards,
Dave
Comment