search for: rplot01

Displaying 4 results from an estimated 4 matches for "rplot01".

Did you mean: rplot001
2014 Jun 13
1
Extracting data from density plots
...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 achieved? Is...
2012 Sep 05
2
Improvement of Regression Model
...------- A non-text attachment was scrubbed... Name: Rplot.png Type: image/png Size: 5765 bytes Desc: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120905/b49b5a62/attachment-0012.png> -------------- next part -------------- A non-text attachment was scrubbed... Name: Rplot01.png Type: image/png Size: 5248 bytes Desc: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120905/b49b5a62/attachment-0013.png> -------------- next part -------------- A non-text attachment was scrubbed... Name: Rplot02.png Type: image/png Size: 5755 bytes Desc: not av...
2014 Sep 08
3
problema con los cambios de marcas temporales en el eje X
Muchísimas gracias Carlos, de verdad que te agradezco la ayuda, pero no es lo que voy buscando. Quiero colocar en el eje de abscisas la secuencia temporal de los meses, es decir, agosto septiembre, octubre, etc? pero no las fechas de las toma de datos, sino que aparezca la marca de un mes, y la siguiente marca sea la del siguiente mes, etc?, y además que las muestras estén separadas de acuerdo con
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",