-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.lua
29 lines (27 loc) · 1.04 KB
/
data.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
data{
file = "high.csv",
source="https://www.openabm.org/model/5266/version/2/view",
summary="CSV file generated from R script, containing the income for 10000 agents using the beta distribution, with mean = 1000, standard deviation = 500, lower bound = 200 and upper bound = 20000.",
separator="\n",
attributes = {
x="Income of the agents."
}
}
data{
file = "medium.csv",
source="https://www.openabm.org/model/5266/version/2/view",
summary="CSV file generated from R script, containing the income for 10000 agents using the beta distribution, with mean = 1000, standard deviation = 300, lower bound = 200 and upper bound = 20000.",
separator="\n",
attributes = {
x="Income of the agents."
}
}
data{
file = "low.csv",
source="https://www.openabm.org/model/5266/version/2/view",
summary="CSV file generated from R script, containing the income for 10000 agents using the beta distribution, with mean = 100, standard deviation = 200, lower bound = 200 and upper bound = 20000.",
separator="\n",
attributes = {
x="Income of the agents."
}
}