Displaying 2 results from an estimated 2 matches for "pfill".
Did you mean:
fill
2008 Sep 10
1
ggplot2: edge outlines on points
...a black outline around
the edge?
I haven't been able to find the MatLab equivalent of
"MarkerEdgeColor" so
I've been working on trying to overlay two plots of the same points,
one plotted with fills and the other plotted with edge outlines (here
is my conceptual code):
pfill <- ggplot(data=DF, aes(x=X, y=Y)) +
geom_point(aes(colour=TRT),size=4) +
scale_colour_grey(end=0.8) +
theme_bw
pedge <- ggplot(data=DF, aes(x=X, y=Y)) +
geom_point(aes(colour=TRT),size=4) +
scale_colour_grey(end=0.8) +...
2002 Jun 12
4
table problems
dear helplist,
my student has fifty trees, numbered one to fifty, and a vector
recording which tree a certain possum slept in on 12 nights.
R> c
[1] 3 14 17 22 26 26 17 40 43 25 46 46
R>
Thus it slept in tree #3 on Monday, then tree #14 on Tues, and so on.
I wish to test the null hypothesis that the animal chooses trees
randomly; try
R> table(c)
c
3 14 17 22 25 26 40 43 46
1 1