Displaying 2 results from an estimated 2 matches for "my_second".
Did you mean:
_second
2008 Sep 02
6
Writing new controllers
...---------------------------------
class MyFirstController < ApplicationController
def index
render :text => ''<html><body>My First Controller</body></html>''
end
end
http://192.168.1.1:8080/my_first/ -> all OK!
Then, I add:
app/controllers/my_second_controller.rb
---------------------------------------------------------
class MySecondController < ApplicationController
def index
render :text => ''<html><body>My Second Controller</body></html>''
end
end
I open:
http://192.168.1.1:8080/my_sec...
2010 Oct 24
0
Turning ppp into im in spatstat
...I turned one of
them into a spatial covariate (im) object. After that, I used this im
object to fit a Poisson model for the second point pattern, using the
covariate layer from the first one.
In R, the whole thing looks somewhat like this:
my_first.im <- as.im(my_first.ppp)
test.ppm <- ppm (my_second.ppp, ~my_first,
covariates = list (my_first = my_first.im))
The fitting seems to be working, but when I try to simulate a point
pattern with the model I get an error message that Google doesn't know:
rmh (test.ppm)
Extracting model information...Evaluating trend...done.
Check...