Is there a way to convert simulation results to pandas data frame? #589
Replies: 1 comment 1 reply
-
import pandas as pd
s = r.simulate(...)
df = pd.DataFrame(s, columns=s.colnames) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LifeWorks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be nice to know how to better use the simulation results.
Beta Was this translation helpful? Give feedback.
All reactions