search for: zatorsky

Displaying 2 results from an estimated 2 matches for "zatorsky".

Did you mean: zaborski
2006 Aug 08
2
Frequency Distribution
Hi, Could someone please suggest where I might find some instructions / tutorials / FAQs that describe how to create a frequency distribution and cumulative frequency distribution in R using different class withs. I have about a 2-million observations (distances between points ranging from sub-millimetre to about 400km, and I want to get a feel for how they are distributed). I'd like the
2006 Aug 13
2
Vector Join
Hi, I'm working on producing a simple cumulative frequency distribution. Thanks to the help of the good people on this list I now have four vectors that I'd like to join/relate into a table. e.g. v1 <- myHistogram$breaks # classes v2 <- myHistogram$counts # freqs v3 <- cumsum(v2) # cumulative freq v4 <- ((v3 / length(myData)) *