I expect that there's something glaringly obvious that I'm overlooking,
as I'm justr getting back involved in using R after a several-month
hiatus (from R). So I welcome clues.
When I invoke plot(), merely specifying a data.frame with 2 columns,
specify the plot type ("type") of "p" ("points"), and that I want the
point to be green ('col = "green"'), sometimes I get the expected
result; other times I get horizontal black lines instead -- and he
behavior appears to be consistent for a given data.frame, but I don't
seem to be able to predict (for a new data.frame) which behavior I'll
get ... and I'm beginning to wonder about what's left of my sanity. :-}
plot( bs_mean, type = "p", col = "green" )
plot( foo, type = "p", col = "green" )
The first plot() invocation -- the one that has the data I actually
care about, of course -- displays a set of 13 horizontal bars, each
of which appears to be black. [I actually *like* the horizontal
bars; I'd like to be able to control the color, though.]
The second invocation draws a set of 5 green "points" (as I would
expect).
How may I plot "bs_mean" in a non-black color?
Thanks.
Peace,
david