Learn R Programming

⚠️There's a newer version (1.0.9) of this package.Take me there.

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

1,186

Version

0.3.9200

License

GPL-3

Maintainer

Ken Kleinman

Last Published

March 17th, 2015

Functions in rsatscan (0.3.9200)

NMpop

New Mexico Brain Cancer example-- population
ss.options

Set or reset parameters to be used by SaTScan
summary.satscan

Methods for satscan-class objects
write.pop

Write a SaTScan pop (population) file
write.ss.prm

Write the SaTScan parameter file
ss.options.extra

Add lines to the current SaTScan parameter list
NHumbersidegeo

North Humberside leukemian and lymphoma example-- geography
read.col

Read SaTScan output files
read.sci

Read SaTScan output files
write.ha

Write a SaTScan ha (alternative hypothesis) file
write.cas

Write a SaTScan cas (case) file
read.gis

Read SaTScan output files
NMcas

New Mexico Brain Cancer example-- cases
NHumbersidectl

North Humberside leukemian and lymphoma example-- controls
write.max

Write a SaTScan max file
charlistopts

Change list version of paramaters into char vector
write.geo

Write a SaTScan geo file
write.grd

Write a SaTScan grd (grid) file
NYCfevercas

New York City Fever example-- cases
NHumbersidecas

North Humberside leukemian and lymphoma example-- cases
write.adj

Write a SaTScan adj file
write.ctl

Write a SaTScan ctl (control) file
NMgeo

New Mexico Brain Cancer example-- geography
print.satscan

Methods for satscan-class objects
read.llr

Read SaTScan output files
read.satscanmain

Read SaTScan output files
rsatscan

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

Write a SaTScan met file
subin

Substitute new values into the input object
NYCfevergeo

New York City Fever example-- geography
write.nbr

Write a SaTScan nbr (neighbor) file
read.rr

Read SaTScan output files
satscan

Run SaTScan in the OS