Bogdan Tanasa
2018-07-06 23:37:37 UTC
Dear all,
I would appreciate having your advice/suggestions/comments on the following
:
1 -- starting from a vector that contains LENGTHS (numerically, the values
are from 1 to 10 000)
2 -- shall I display the ECDF by using the R code and some "limits" :
BREAKS = c(0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 200, 300, 400, 500,
1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000)
ggplot(x, aes(LENGTH)) +
stat_ecdf(geom = "point") +
scale_x_continuous(name = "LENGTH of DEL",
breaks = BREAKS,
limits=c(0, 500))
3 -- I am getting the following warning message : "Warning message: Removed
109 rows containing non-finite values (stat_ecdf)."
The question is : are these 109 values removed from VISUALIZATION as i set
up the "limits", or are these 109 values removed from statistical
CALCULATION?
4 -- in contrast, shall I use the standard R functions plot(ecdf), there is
no "warning mesage"
plot(ecdf(x$LENGTH), xlab="DEL LENGTH",
ylab="Fraction of DEL", main="DEL", xlim=c(0,500),
col = "dark red")
Thanks a lot !
-- bogdan
--
--
You received this message because you are subscribed to the ggplot2 mailing list.
Please provide a reproducible example: https://github.com/hadley/devtools/wiki/Reproducibility
To post: email ***@googlegroups.com
To unsubscribe: email ggplot2+***@googlegroups.com
More options: http://groups.google.com/group/ggplot2
---
You received this message because you are subscribed to the Google Groups "ggplot2" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ggplot2+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I would appreciate having your advice/suggestions/comments on the following
:
1 -- starting from a vector that contains LENGTHS (numerically, the values
are from 1 to 10 000)
2 -- shall I display the ECDF by using the R code and some "limits" :
BREAKS = c(0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 200, 300, 400, 500,
1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000)
ggplot(x, aes(LENGTH)) +
stat_ecdf(geom = "point") +
scale_x_continuous(name = "LENGTH of DEL",
breaks = BREAKS,
limits=c(0, 500))
3 -- I am getting the following warning message : "Warning message: Removed
109 rows containing non-finite values (stat_ecdf)."
The question is : are these 109 values removed from VISUALIZATION as i set
up the "limits", or are these 109 values removed from statistical
CALCULATION?
4 -- in contrast, shall I use the standard R functions plot(ecdf), there is
no "warning mesage"
plot(ecdf(x$LENGTH), xlab="DEL LENGTH",
ylab="Fraction of DEL", main="DEL", xlim=c(0,500),
col = "dark red")
Thanks a lot !
-- bogdan
--
--
You received this message because you are subscribed to the ggplot2 mailing list.
Please provide a reproducible example: https://github.com/hadley/devtools/wiki/Reproducibility
To post: email ***@googlegroups.com
To unsubscribe: email ggplot2+***@googlegroups.com
More options: http://groups.google.com/group/ggplot2
---
You received this message because you are subscribed to the Google Groups "ggplot2" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ggplot2+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.