edges(plants, width)core(plants, distance)
ppp). Normally contains the plants coordinates, and marks with the plant size and possibly other attributes.edges returns a point pattern with the same structure as plants.If width is negative, the parts of the pattern that are at a distance less than -width from an edge are discarded.
If width is positive, the pattern is first expanded by surrounding it with 8 shifted copies (the window must be rectangular). Then, the parts of the pattern that are at a distance less than width from an edge of the enlarged pattern are discarded.
If width = 0, plants is returned unchanged.
core returns a logical vector with TRUE for the plants that are at more than the given distance from the edges, and FALSE otherwise.
Typically, in the first case the indices are computed for the full pattern, and then the edges are discarded using edges with a negative width. In the second case, the point pattern is first expanded with edges(plants, width), the indices are computed for the expanded pattern, and then the result is restricted to the original size with edges(result, -width).
core returns a logical vector indicating which plants are at more than the given distance from the edges. With a negative width, edges(plants, width) is the same as plants[core(plants, -width)].
assimilation, pairwisefinpines
edges(finpines, 3)
edges(finpines, -3)Run the code above in your browser using DataLab