Displaying 1 result from an estimated 1 matches for "dataset_redlands_crim".
Did you mean:
dataset_redlands_crime
2009 Mar 30
1
Warning messages in Splancs package :: no non-missing arguments to min; returning Inf
Hi,
I would need some help with the splans package in R.
I am using a Shapefile (downloadable at)
http://rapidshare.com/files/215206891/Redlands_Crime.zip
and the following execution code
setwd("C:\\Documents and
Settings\\Dejan\\Desktop\\GIS\\assignment6\\DataSet_Redlands_Crime\\Redlands_Crime")
library(foreign)
library(splancs)
auto_xy<-read.dbf("Auto_theft_98.dbf")
rob_xy<-read.dbf("Robbery_98.dbf")
auto.spp<-as.points(auto_xy$x/1000, auto_xy$y/1000)
rob.spp<-as.points(rob_xy$x/1000, rob_xy$y/1000)
image(kernel2d(auto.spp, bbox(auto...