Commit 2118e6ad by mohammed.shibili

json parsing

parent 15d2cba3
import pandas as pd import pandas as pd
# merging
def merge_frame(new_dataframe): def merge_frame(new_dataframe):
first_df = pd.DataFrame(new_dataframe[['Timestamp', 'kWh']]) first_df = pd.DataFrame(new_dataframe[['Timestamp', 'kWh']])
second_df = pd.DataFrame(new_dataframe[['Timestamp', 'kW']]) second_df = pd.DataFrame(new_dataframe[['Timestamp', 'kW']])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment