Re: [R] Count of Histogram Bins using Shingles with lattice

2013-02-11 Thread David L Carlson
, February 08, 2013 12:45 PM To: r-help@r-project.org Subject: [R] Count of Histogram Bins using Shingles with lattice I know that I can get a count of histogram bins in base R with plot=FALSE. However, I'd like to do the same thing with lattice. The problem is that I've set up shingles

Re: [R] Count of Histogram Bins using Shingles with lattice

2013-02-11 Thread David L Carlson
: [R] Count of Histogram Bins using Shingles with lattice You can use the functions in lattice to compute the shingle and display the results, but they do not seem to be stored: set.seed(42) vals - runif(100)*100 ints - co.intervals(vals, number=5, overlap=.25) cts - shingle(vals, ints

[R] Count of Histogram Bins using Shingles with lattice

2013-02-08 Thread Burns, Jonathan (NONUS)
I know that I can get a count of histogram bins in base R with plot=FALSE. However, I'd like to do the same thing with lattice. The problem is that I've set up shingles, and I'd like to get the count within each bin within each shingle. plot=FALSE doesn't seem to do it.