Is it possible to create a non-normal distribution of agents on a grid using Agents.jl?

if you wanted to generate N Poisson random values all with the same rate r, you could do:

foo = rand(Poisson(r),N)

Note that with all of these you should first be doing

using Distributions