Learn R Programming

HDSpatialScan (version 1.0.4)

plotCurves: Generic function to plot curves

Description

This function is a generic function to plot curves.

Usage

plotCurves(x, ...)

Value

No value returned, plots the curves.

Arguments

x

An object for which the curves are to be plotted.

...

Additional arguments affecting the output.

See Also

plotCurves.ResScanOutputUniFunct and plotCurves.ResScanOutputMultiFunct

Examples

Run this code
# \donttest{
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

plotCurves(x = res_npfss, add_mean = TRUE, add_median = TRUE)# }
# \dontshow{
library(sp)
data("map_sites")
data("funi_data")
indices <- c(51:75)
coords <- coordinates(map_sites[indices,])
res_npfss <- SpatialScan(method = "NPFSS", data = funi_data[indices,], sites_coord = coords,
system = "WGS84", mini = 1, maxi = nrow(coords)/2, MC = 99)$NPFSS
if(length(res_npfss$sites_clusters)>0){
plotCurves(x = res_npfss, add_mean = TRUE, add_median = TRUE)
}

# }

Run the code above in your browser using DataLab