You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Would it be possible to provide access to reports data via NumPy indices? An example
report=ElementReportReader('report.h5')
rep_pop=report['All']
rep_pop[:,10] # the same as `rep_pop.get(tstart=10.0, tstop=10.0)`rep_pop[13] # the same as `rep_pop.get(node_id=13)`
The reason for this is to be able use Dask for reports processing. In particular: