This project is on how cumulative culture can spontaneously emerge in agents who are bound by just four simple rules: Goal direction: Having a sense of (roughly) where the goal is. Social proximity: Aiming to stay close to other agents by moving in the direction they are expected to be next. Route memory: Agents remember landmarks along the route, and aim to follow along these landmarks. Their memory precision improves over several journeys. Continuity: To avoid erratic/jerky movements, agents aim to move mostly in the direction that they are currently travelling in. Despite the lack of explicit social transmission or evaluation of outcomes, pairs of agents with generational turnover show gradual improvements in route efficiency (they converge on the direct line between start and goal). For more information, please read the manuscript on arXiv (linked below). Data archives There are two data archives in this set: data_simulation_narrow.zip (41 GB; 2680 folders containing a total of 80399 subfolders for a total of 5225935 CSV files) and data_simulation_wide.zip (7 GB; 557 folders containing a total of 16710 subfolders for a total of 1086150 CSV files). Each archive contains subfolders, each of which represent a unique combination of simulation parameters. These are named with the following naming scheme: "Pgoal-{w}_SDgoal-{sd}_Pcontinuity-{p}_SDcontinuity-{sd}_Psocial-{p}_SDsocial-{sd}_Pmemory-{p}_SDmemoryMax-{sd}_SDmemoryMin-{sd}_SDmemorySteps-5", where {p} is 1000 times the weight parameter, {sd} is 1000 times the equivalent standard deviation for the kappa parameter, and both are rounded to the nearest integer. Example: "Pgoal-100_SDgoal-1000_Pcontinuity-100_SDcontinuity-350_Psocial-100_SDsocial-800_Pmemory-700_SDmemoryMax-2000_SDmemoryMin-400_SDmemorySteps-5" Within each simulation folder, a number of subfolders can be found. This should normally be 30. Each of these represents a single run of a simulation within a condition. The naming convention is "{condition}_run-{run_counter}", where {condition} is the name of the condition ("experimental", "pair", or "solo"), and {run_counter} is a counter that starts at 1 and goes up from there (should be 1-10 in the current set). Within each simulation run subfolder, there are CSV files. These hold the actual data from journeys by artificial navigators. There are two types of data file, one for efficiency, and one for the travelled path. Both types of CSV have a header row with the names of the columns, followed by data rows. Efficiency files are named "efficiency_gen-{gen_nr}.csv", with {gen_nr} indicating the generation number. This starts at 0, ends at 4 (inclusive), and increments by 1. Efficiency files have three columns: "flight" for the flight counter (int, starts at 1), "efficiency_agent1" for the efficiency for the first agent's efficiency (float, between 0 and 1), and "efficiency_agent2" (float, between 0 and 1). Flight path files are named "xy_gen-{gen_nr}_flight-{flight_nr}.csv", with {gen_nr} being the same as above, and {flight_nr} being the journey number. This starts at 0, ends at 11 (inclusive), and increments by 1. Path files have four columns: "x_agent1" for the first agent's horizontal coordinate (float), "y_agent1" for the first agent's vertical coordinate (float), "x_agent2" for the second agent's horizontal coordinate (float), and "y_agent2" for the second agent's vertical coordinate (float). From generation 2 in the experimental condition, the first is the experienced agent, and the second is the naive agent. Float values coded as "nan" reflect there is no data. This occurs for e.g. the second agent in the solo condition and the first-generation experimental condition