I have two point patterns obtained from medical images. Points are used to represent cell markers.
By visualization, the point pattern A is extremely possible to be a subset of point pattern B. So is there any statistical package or function in R that I can use to verify my guess?

Asked
Active
Viewed 265 times
3
Shawn
- 31
- 2

max(splancs::nndistF(p1, p2))returns the furthest distance of a point inp1from any point inp2. So if ap1point is so far from ap2point that its unlikely to be referring to the same cell then it can't be a subset ofp2. – Spacedman Jun 11 '19 at 07:31