unmark
From spatstat v1.12-5
by Adrian Baddeley
Remove Marks from a Marked Point Pattern
Removes the mark information from a marked point pattern
Usage
unmark(X)
Arguments
- X
- A point pattern. Either an object of class
"ppp"
or anything acceptable toas.ppp
.
Details
This is simply a convenience for those occasions in which we want to remove the marks from a marked point pattern.
Value
- A point pattern (of class
"ppp"
) with any mark information deleted.
See Also
Examples
data(lansing)
hicks <- lansing[lansing$marks == "hickory", ]
plot(hicks) # still a marked point pattern, but only 1 value of marks
plot(unmark(hicks)) # unmarked
Community examples
Looks like there are no examples yet.