Displaying 2 results from an estimated 2 matches for "geom_plot".
2012 Mar 14
1
geom_plot creates Area Instead Of Lines
Hi,
I have created a large (?) data frame. I have one variable to plot, lets
call it X. further X has been observed under conditions Y, Z. And the
observation took place at times T (0:10e5). Now my data frame D consists of
x,y,z,t each corresponding to the combination of X, Y, Z and T. I would
like to create different plots and use this:
h <- ggplot(D, aes(y=x, x=t))
h +
2017 Dec 13
1
overlay two histograms ggplot
Hi all,
How can I overlay these two histograms?
ggplot(gg, aes(gg$Alz, fill = gg$veg)) + geom_histogram(alpha = 0.2)
ggplot(tt, aes(tt$Cont, fill = tt$veg)) + geom_histogram(alpha = 0.2)
thanks for any help!
Elahe