Displaying 3 results from an estimated 3 matches for "lschwei".
Did you mean:
lschte
2003 Dec 01
1
Re: using shapefile as owin
...to min; returning Inf
2: no finite arguments to max; returning -Inf
3: no finite arguments to min; returning Inf
4: no finite arguments to max; returning -Inf
> library(spatstat)
spatstat 1.3-3
Type "demo(spatstat)" for a demonstration
See the Introduction and Quick Reference in
/Users/lschwei/Library/RAqua/library/spatstat/doc
> owin(shapepoly)
Error in owin(shapepoly) : If one of xrange, yrange is specified then both
must be.
#end code
Lisa
-------
Lisa Schweitzer
Center for the Study of Urban Poverty
Dept. of Urban Planning
University of California, Los Angeles
(lschwei at ucla....
2008 Dec 28
1
Using a constant scale across X-Y plots
I am working off an example from Deepayan Sarkar's
Lattice:Multivariate Data Visualiization with R. I am trying to create
Figure 5.6, essentially, but I would like to be able depict different
metro areas. These of course have different lat/longs, so I need to
make different graphs. BUT (and this has been the tricky part), I
would like to produce graphics for each metropolitan
2004 May 29
1
Rhelp: Need help interpreting plots in spatstat
...e, and I don't really know how to
interpret what is going on. The subsequent lines, I'm pretty sure,
represent the empirical Ghat and the simulation envelope...but that
first plot stumps me.
You can see a pdf of the resulting plot if you download it from my
website : www.bol.ucla.edu/~lschwei/sample.pdf WARNING: this is
immediate download.
THE CODE: ######
ghat.env <- function(n, s, r, win=owin(myOwin){
hold <- matrix(0, s, length(r))
for(i in 1:s){
hold[i,] <- Gest(runifpoint(n, win=myOwin), r=r)$raw
}
mn <- apply(hold, 2, mean)
Up <- apply(hold, 2, max)
Down <- a...