home-assistant / home-assistant-notebooks

:notebook: Sample Jupyter Notebooks to explore Home Assistant data
https://data.home-assistant.io/
Other
63 stars 32 forks source link

DataExploration-1.ipynb needs update: Column 'origin' doesn't exist #7

Closed pklaus closed 6 years ago

pklaus commented 7 years ago

In DataExploration-1.ipynb a cell isn't working anymore:

# name the dataframe rows for usability
allqueryDF.columns = ['state_id', 'domain', 'entity_id', 'state', 'attributes',
                      'origin', 'event_id', 'last_changed', 'last_updated',
                      'created']

should now read

# name the dataframe rows for usability
allqueryDF.columns = ['state_id', 'domain', 'entity_id', 'state', 'attributes',
                      'event_id', 'last_changed', 'last_updated', 'created']
fabaff commented 6 years ago

Thanks for the report.