I was looking for a python library for point pattern analysis and I found the pointpats package.
"In the pointpats package, you can visualize the results using the following QStatistic.plot() method. This shows the grid used to count the events, as well as the underlying pattern"
qstat = QStatistic(coordinates)
qstat.plot()
I understand the example but my question is that: "How can we know the cell size or is there any way that we can set the cell size manually in QStatistic?"
If there is any better alternative by which I can conduct the analysis of my data in a grid but with the capability of changing cell size, kindly do suggest.
