fork download
  1. # your code goes here
  2. Data1<-read.csv("/Users/frank61003/Desktop/GWR/data.csv", header=F, sep=",")
  3. space<-cbind(Data1["V4"],Data1["V5"])
  4. bw1 <- ggwr.sel(V1~V3+V6+V7+V8+V9+V10+V11+V12+V13,data=Data1,coords=space)
  5. gwr <- ggwr(V1~V3+V6+V7+V8+V9+V10+V11+V12+V13,data=Data1,coords=space,
  6. family=poisson(), longlat=TRUE, bandwidth=bw1)
Success #stdin #stdout #stderr 0.45s 79168KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error in file(file, "rt") : cannot open the connection
Calls: read.csv -> read.table -> file
In addition: Warning message:
In file(file, "rt") :
  cannot open file '/Users/frank61003/Desktop/GWR/data.csv': No such file or directory
Execution halted