This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"info": { | |
"parameters": { | |
"0": { | |
"label": "Proof of Stake Initialization Date", | |
"parameter": "date_pos", | |
"points": [ | |
"2021-12-1", | |
"2022-3-1", | |
"2022-6-1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
anyio==2.0.2 | |
apparmor==3.0.1 | |
appdirs==1.4.4 | |
argon2-cffi==20.1.0 | |
asn1crypto==1.4.0 | |
async-generator==1.10 | |
attrs==20.3.0 | |
Babel==2.9.0 | |
backcall==0.2.0 | |
bleach==3.2.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get system events and attribute index | |
df = (pd.DataFrame(system_events) | |
.assign(years=lambda df: df.timestep) | |
.assign(temperature_celsius=lambda df: df.temperature - 273) | |
.query('timestep > 0') | |
) | |
# Clean substeps | |
first_ind = (df.substep == 0) & (df.timestep == 0) |