Re: [R] Hexbin: Counting Bins That Meet Certain Criteria

2015-12-17 Thread Sidoti, Salvatore A.
Thank you, David! I adapted this code and it works very nicely with my data. 

Just to give you a bit of background, I am a behavioral ecologist. I am 
currently studying the general search patterns of wolf spiders and I have a lot 
of tracking data to process. I am not a coder, although I am slowing becoming 
one out of necessity!

I created a new post today, so everyone should be seeing it shortly...

Salvatore A. Sidoti
PhD Student
Graduate Teaching Assistant

-Original Message-
From: David L Carlson [mailto:dcarl...@tamu.edu] 
Sent: Tuesday, December 15, 2015 12:18 PM
To: Sidoti, Salvatore A. ; r-help@r-project.org
Subject: RE: Hexbin: Counting Bins That Meet Certain Criteria

Something like

> library(hexbin)
> set.seed(42)
> xy <- matrix(rnorm(1000), 500)
> xy.hex <- hexbin(xy)
> table(xy.hex@count)

  1   2   3   4   5   6   7   8 
159  60  33  16   6   1   2   1 
> sum(xy.hex@count >= 3)
[1] 59

-
David L Carlson
Department of Anthropology
Texas A&M University
College Station, TX 77840-4352

-Original Message-
From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Sidoti, 
Salvatore A.
Sent: Monday, December 14, 2015 6:49 PM
To: r-help@r-project.org
Subject: [R] Hexbin: Counting Bins That Meet Certain Criteria

Greetings!

Is there a way to count the bins in a hexbin plot that meet certain criteria? 
For instance, what if I wanted to count the bins (hexes) that have a datapoint 
density of some number x?

Thank you!

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see 
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Hexbin: Counting Bins That Meet Certain Criteria

2015-12-15 Thread David L Carlson
Something like

> library(hexbin)
> set.seed(42)
> xy <- matrix(rnorm(1000), 500)
> xy.hex <- hexbin(xy)
> table(xy.hex@count)

  1   2   3   4   5   6   7   8 
159  60  33  16   6   1   2   1 
> sum(xy.hex@count >= 3)
[1] 59

-
David L Carlson
Department of Anthropology
Texas A&M University
College Station, TX 77840-4352

-Original Message-
From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Sidoti, 
Salvatore A.
Sent: Monday, December 14, 2015 6:49 PM
To: r-help@r-project.org
Subject: [R] Hexbin: Counting Bins That Meet Certain Criteria

Greetings!

Is there a way to count the bins in a hexbin plot that meet certain criteria? 
For instance, what if I wanted to count the bins (hexes) that have a datapoint 
density of some number x?

Thank you!

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] Hexbin: Counting Bins That Meet Certain Criteria

2015-12-14 Thread Sidoti, Salvatore A.
Greetings!

Is there a way to count the bins in a hexbin plot that meet certain criteria? 
For instance, what if I wanted to count the bins (hexes) that have a datapoint 
density of some number x?

Thank you!

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.