Plot individual agent attribute with datacollector.get_agent_vars_dataframe() #1556
Answered
by
rht
erissatallan
asked this question in
Q&A
-
I'm trying to figure out a way to plot an agent attribute I've called At present my code look like this
|
Beta Was this translation helpful? Give feedback.
Answered by
rht
Dec 9, 2022
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
erissatallan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
agent_assurance_probabilities
is aDataFrame
, and so you can do the usual DF filtering operation:agent_assurance_probabilities[agent_assurance_probabilities.AgentID == x]
, and plot the timeseries.