print.ResScanOutput {HDSpatialScan} | R Documentation |
Prints a result of a scan procedure
Description
This function prints a result of a scan procedure.
Usage
## S3 method for class 'ResScanOutput'
print(x, ...)
Arguments
x |
ResScanOutput. Output of a scan function (UG, UNP, MG, MNP, PFSS, DFFSS, URBFSS, NPFSS, MPFSS, MDFFSS or MRBFSS) |
... |
Further arguments to be passed to or from methods. |
Value
No value returned, print the ResScanOutput object.
Examples
library(sp)
data("map_sites")
data("funi_data")
coords <- coordinates(map_sites)
res_npfss <- SpatialScan(method = "NPFSS", data = funi_data, sites_coord = coords,
system = "WGS84", mini = 1, maxi = nrow(coords)/2)$NPFSS
print(x = res_npfss)
[Package HDSpatialScan version 1.0.4 Index]