Learn R Programming

rsatscan is a set of tools that function as wrappers for SaTScan, a stand-alone engine for Spatial and Temporal Scan statistics. It has no functions useful outside this context. In order to use the package, you probably need a fairly sophisticated understanding of what SaTScan does.

Included functions useful for most users include

  • write.???()
  • ss.options()
  • satscan()

The write.???() functions take data from data.frame objects and write them to the OS in SaTScan-readable formats.

The ss.options() function is used to set the parameters the SaTScan engine will use. It functions similarly to options() and par() in that there is a set of default parameter settings, and the user can change any or all of them, and reset the options as needed, or recover the defaults. Key parameters include the names of the input data files and the type of analysis and model to be used.

The satscan() function calls into the operating system to run SaTScan. An object is returned with all the output files that SaTScan made. By default, this is all possible outputs, but this can be controlled by changing the default parameter settings.

Three data sets distributed with SaTScan are also included with the package. An example of using the package, replicated from the vignettes, follows. See the vignette for additional explanatory text.

Begin by resetting the paremeter file:

library("rsatscan")
#> RSaTScan only does anything useful if you have SaTScan-- see http://www.satscan.org/ for free access.
invisible(ss.options(reset=TRUE))

Then, change the parameters. The parameters used in the SaTScan manual are replicated:

ss.options(list(CaseFile="NYCfever.cas", PrecisionCaseTimes=3))
ss.options(c("StartDate=2001/11/1","EndDate=2001/11/24"))
ss.options(list(CoordinatesFile="NYCfever.geo", AnalysisType=4, ModelType=2, TimeAggregationUnits=3))
ss.options(list(UseDistanceFromCenterOption="y", MaxSpatialSizeInDistanceFromCenter=3, NonCompactnessPenalty=0))
ss.options(list(MaxTemporalSizeInterpretation=1, MaxTemporalSize=7))
ss.options(list(ProspectiveStartDate="2001/11/24", ReportGiniClusters="n", LogRunToHistoryFile="n"))

Then, write the parameter file, the case file, and the geometry file to the OS. These case and geometry files are included in the package and distributed with SaTScan.

td = tempdir()
write.ss.prm(td,"NYCfever")
write.cas(NYCfevercas,td,"NYCfever")
write.geo(NYCfevergeo,td,"NYCfever")

Then run SaTScan.

NYCfever = satscan(td,"NYCfever")

The rsatscan package provides a summary method for satscan objects.

summary(NYCfever)
#> Prospective Space-Time analysis 
#> scanning for clusters with high rates 
#> using the Space-Time Permutation model. 
#>  
#> Study period.......................: 2001/11/1 to 2001/11/24 
#> Number of locations................: 192 
#> Total number of cases..............: 194 
#> _______________________________________________________________________________________________ 
#>  
#> 
#> There were 3 clusters identified.
#> There were 0 clusters with p < .05.

SaTScan is available for free from satscan.org.

Copy Link

Version

Install

install.packages('rsatscan')

Monthly Downloads

286

Version

1.0.8

License

GPL-3

Maintainer

Scott Hostovich

Last Published

June 26th, 2024

Functions in rsatscan (1.0.8)

subin

Substitute new values into the input object
write.ha

Write a SaTScan ha (alternative hypothesis) file
summary.satscan

Methods for satscan-class objects
write.adj

Write a SaTScan adj file
write.ss.prm

Write the SaTScan parameter file
write.grd

Write a SaTScan grd (grid) file
write.geo

Write a SaTScan geo file
write.cas

Write a SaTScan cas (case) file
write.ctl

Write a SaTScan ctl (control) file
write.max

Write a SaTScan max file
write.nbr

Write a SaTScan nbr (neighbor) file
write.met

Write a SaTScan met file
write.pop

Write a SaTScan pop (population) file
read.col

Read SaTScan output files
write.ntk

Write a SaTScan ntk (network) file
read.gis

Read SaTScan output files
NHumbersidegeo

North Humberside leukemian and lymphoma example-- geography
NMpop

New Mexico Brain Cancer example-- population
charlistopts

Change list version of paramaters into char vector
NHumbersidecas

North Humberside leukemian and lymphoma example-- cases
NHumbersidectl

North Humberside leukemian and lymphoma example-- controls
NMgeo

New Mexico Brain Cancer example-- geography
NYCfevergeo

New York City Fever example-- geography
NYCfevercas

New York City Fever example-- cases
print.satscan

Methods for satscan-class objects
NMcas

New Mexico Brain Cancer example-- cases
read.sci

Read SaTScan output files
rsatscan

R functions, a class, and methods for working with SaTScan stand-alone software.
read.rr

Read SaTScan output files
satscan

Run SaTScan in the OS
read.satscanmain

Read SaTScan output files
read.llr

Read SaTScan output files
search_for_param

find earliest SaTScan parameter set that contains specified parameter
ss.options

Set or reset parameters to be used by SaTScan
ss.options.extra

Add lines to the current SaTScan parameter list