Displaying 1 result from an estimated 1 matches for "fcity".
Did you mean:
city
2011 Mar 22
0
Diagonal population density
...nsity in the upper-center position, the marginal density (vertically oriented) in the lower-right position and the diagonal density (diagonally oriented) in the upper-left position. How can I do this? I will include the function I'm using to plot the data thus far:
plot.city<-function(city,fcity,n=2,operator="max"){
def.par <- par(no.readonly = TRUE)
nf <- layout(matrix(c(2,0,1,3),2,2,byrow=TRUE), c(3,1), c(1,3), TRUE)
par(mar=c(3,3,1,1))
x<-as.numeric(colnames(city$data))
y<-as.numeric(rownames(city$data))
fx<-colSums(city$data)
fx<-(fx-min(fx))/...