Displaying 1 result from an estimated 1 matches for "n4691999".
Did you mean:
491999
2014 Jun 13
1
Extracting data from density plots
....34 2.02 1.39 1.54 2.45 ...
$ type : Factor w/ 3 levels "Bottom","Other",..: 3 3 3 3 3 3 3 3 2 2 ...
I have plotted the following density plot for column 2 i.e. TestVar and then
color coded according to factor variable "type"
<http://r.789695.n4.nabble.com/file/n4691999/Rplot01.jpeg>
> ggplot(df)+ geom_density(aes(x=TestVar, color=type))
I now want to filter out data samples such that the density
​curve
of "Top" is
higher than "Bottom". Basically I need TestVar values for which blue line is
higher than red line.
How can this be achi...