Displaying 2 results from an estimated 2 matches for "my_first".
Did you mean:
_first
2010 Oct 24
0
Turning ppp into im in spatstat
...'m working with two point patterns (ppp) 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)
Ex...
2008 Sep 02
6
Writing new controllers
I have created new rails-project.
I start Mongrel.
I add to project:
app/controllers/my_first_controller.rb
---------------------------------------------------------
class MyFirstController < ApplicationController
def index
render :text => ''<html><body>My First Controller</body></html>''
end
end
http://192.168.1.1:8080/my_first/ ->...