We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To access the underlying dataframe of AgentSetDF or AgentsDF, we currently use:
AgentSetDF
AgentsDF
AgentContainer.agents
This can lead to unclear syntax, especially when accessing it from the model:
model.agents.agents
Rename the agents property to df for improved clarity.
agents
df
After the change, accessing the dataframe would look like:
AgentContainer.df
And from the model:
model.agents.df
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current Behavior
To access the underlying dataframe of
AgentSetDF
orAgentsDF
, we currently use:This can lead to unclear syntax, especially when accessing it from the model:
Proposed Change
Rename the
agents
property todf
for improved clarity.Expected Behavior
After the change, accessing the dataframe would look like:
And from the model:
Benefits
The text was updated successfully, but these errors were encountered: