I am making a series of plots from a point pattern (PPP) with the density (kernel) function. I would like that the maximum plotted number is 200 in all cases and just the heatmap accordingly (two of the images only go up to 100). I have not been able to find a solution to this problem using the R base plot.
Microglia_Density <- density(Microglia_PPP, sigma =0.1, equal.ribbon = TRUE, col = topo.colors, main = "")
plot(Microglia_Density, main = "Microglia density")
Astrocytes_Density <- density(Astrocytes_PPP, sigma =0.1, equal.ribbon = TRUE, col = topo.colors, main = "")
plot(Astrocytes_Density, main = "Astrocytes density")
Neurons_Density <- density(Neurons_PPP, sigma =0.1, equal.ribbon = TRUE, col = topo.colors, main = "")
plot(Neurons_Density, main = "Neuronal density")
I would appreciate recommendations. Regards
Since we don’t have access to your data I simulate fake data in a square. There are several options to do what you want. First you should know that
density()
is a generic function, so when you invoke it on appp
likeMicroglia_PPP
actually the functiondensity.ppp()
is invoked. This function returns anim
object (effectively a 2-d “image” of values). You plot this withplot()
which in turn callsplot.im()
, so you should read the help file ofplot.im()
, where it says that the argumentcol
controls the colours used in the plot. Either you can make a colour map covering the range of values you are interested in and supply that, or if you know that one of the images has the colour map you want to use you can save it and reuse for the others:Notice the colour maps are the same, but it only covers the range from approximately 80 to 310. Any values of the image outside this range will not be plottet, so they appear white.
You can make a colour map first and then use it for all the plots (see
help(colourmap)
):Finally another solution if you want the images side by side is to make them an
imlist
(image list) and useplot.imlist()
withequal.ribbon = TRUE
: