Wealth distribution model

This model is a simple agent-based economy that is modelled according to the work of Dragulescu et al.. This work introduces statistical mechanics concepts to study wealth distributions. What we show here is also referred to as "Boltzmann wealth distribution" model.

This model has a version with and without space. The rules of the space-less game are quite simple:

  1. There is a pre-determined number of agents.
  2. All agents start with one unit of wealth.
  3. At every step an agent gives 1 unit of wealth (if they have it) to some other agent.

Even though this rule-set is simple, it can still recreate the basic properties of wealth distributions, e.g. power-laws distributions.

Core structures: space-less

We start by defining the Agent type and initializing the model.

using Agents, Random

@agent struct WealthAgent(NoSpaceAgent)
    wealth::Int
end

Notice that this agent does not have a pos field. That is okay, because there is no space structure to this example. We can also make a very simple AgentBasedModel for our model.

function wealth_model(; numagents = 100, initwealth = 1, seed = 5)
    model = ABM(WealthAgent; agent_step!, scheduler = Schedulers.Randomly(),
                rng = Xoshiro(seed))
    for _ in 1:numagents
        add_agent!(model, initwealth)
    end
    return model
end
wealth_model (generic function with 1 method)

The next step is to define the agent step function

function agent_step!(agent, model)
    agent.wealth == 0 && return # do nothing
    ragent = random_agent(model)
    agent.wealth -= 1
    ragent.wealth += 1
end

model = wealth_model()
StandardABM with 100 agents of type WealthAgent
 agents container: Dict
 space: nothing (no spatial structure)
 scheduler: Agents.Schedulers.Randomly

We use random_agent as a convenient way to just grab a second agent. (this may return the same agent as agent, but we don't care in the long run)

Running the space-less model

Let's do some data collection, running a large model for a lot of time

N = 5
M = 2000
adata = [:wealth]
model = wealth_model(numagents = M)
data, _ = run!(model, N; adata)
data[(end-20):end, :]
21×3 DataFrame
Rowtimeidwealth
Int64Int64Int64
1519800
2519812
3519821
4519831
5519841
6519852
7519860
8519870
9519881
10519891
11519900
12519910
13519921
14519931
15519940
16519951
17519960
18519971
19519980
20519990
21520004

What we mostly care about is the distribution of wealth, which we can obtain for example by doing the following query:

wealths = filter(x -> x.time == N - 1, data)[!, :wealth]
2000-element Vector{Int64}:
 0
 0
 1
 1
 0
 0
 0
 1
 2
 2
 ⋮
 0
 2
 0
 0
 1
 2
 1
 0
 4

and then we can make a histogram of the result. With a simple visualization we immediately see the power-law distribution:

using CairoMakie
hist(
    wealths;
    bins = collect(0:9),
    width = 1,
    color = cgrad(:viridis)[28:28:256],
    figure = (size = (600, 400),),
)
Example block output

Core structures: with space

We now expand this model to (in this case) a 2D grid. The rules are the same but agents exchange wealth only with their neighbors.

It is also available from the Models module as Models.wealth_distribution.

We therefore have to add a pos field as the second field of the agents:

@agent struct WealthInSpace(GridAgent{2})
    wealth::Int
end

function wealth_model_2D(; dims = (25, 25), wealth = 1, M = 1000)
    space = GridSpace(dims, periodic = true)
    model = ABM(WealthInSpace, space; agent_step! = agent_step_2d!,
                scheduler = Schedulers.Randomly())
    for _ in 1:M # add agents in random positions
        add_agent!(model, wealth)
    end
    return model
end
wealth_model_2D (generic function with 1 method)

The agent actions are a just a bit more complicated in this example. Now the agents can only give wealth to agents that exist on the same or neighboring positions (their "neighbors").

function agent_step_2d!(agent, model)
    agent.wealth == 0 && return # do nothing
    neighboring_positions = collect(nearby_positions(agent.pos, model))
    push!(neighboring_positions, agent.pos) # also consider current position
    rpos = rand(abmrng(model), neighboring_positions) # the position that we will exchange with
    available_ids = ids_in_position(rpos, model)
    if length(available_ids) > 0
        random_neighbor_agent = model[rand(abmrng(model), available_ids)]
        agent.wealth -= 1
        random_neighbor_agent.wealth += 1
    end
end

model2D = wealth_model_2D()
StandardABM with 1000 agents of type WealthInSpace
 agents container: Dict
 space: GridSpace with size (25, 25), metric=chebyshev, periodic=true
 scheduler: Agents.Schedulers.Randomly

Running the model with space

init_wealth = 4
model = wealth_model_2D(; wealth = init_wealth)
adata = [:wealth, :pos]
data, _ = run!(model, 10; adata = adata, when = [1, 5, 9])
data[(end-20):end, :]
21×4 DataFrame
Rowtimeidwealthpos
Int64Int64Int64Tuple…
199803(9, 2)
299812(23, 7)
399826(17, 20)
499834(2, 6)
599840(3, 15)
699852(25, 9)
799867(22, 4)
899875(3, 17)
999881(2, 8)
10998910(3, 21)
1199900(9, 10)
1299913(9, 8)
1399928(9, 21)
1499933(6, 2)
1599940(11, 13)
1699957(16, 14)
1799960(16, 11)
1899972(12, 19)
1999986(21, 7)
20999912(17, 10)
21910003(7, 10)

Okay, now we want to get the 2D spatial wealth distribution of the model. That is actually straightforward:

function wealth_distr(data, model, n)
    W = zeros(Int, size(abmspace(model)))
    for row in eachrow(filter(r -> r.time == n, data)) # iterate over rows at a specific step
        W[row.pos...] += row.wealth
    end
    return W
end

function make_heatmap(W)
    figure = Figure(; size = (600, 450))
    hmap_l = figure[1, 1] = Axis(figure)
    hmap = heatmap!(hmap_l, W; colormap = cgrad(:default))
    cbar = figure[1, 2] = Colorbar(figure, hmap; width = 30)
    return figure
end

W1 = wealth_distr(data, model2D, 1)
make_heatmap(W1)
Example block output
W5 = wealth_distr(data, model2D, 5)
make_heatmap(W5)
Example block output
W10 = wealth_distr(data, model2D, 9)
make_heatmap(W10)
Example block output

What we see is that wealth gets more and more localized.