Commit 6897a6d3 by mohammed.shibili

json parsing1

parent 2118e6ad
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitSharedSettings">
<option name="FORCE_PUSH_PROHIBITED_PATTERNS">
<list>
<option value="origin" />
</list>
</option>
</component>
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
......
import pandas as pd
# merging
# merging data
def merge_frame(new_dataframe):
first_df = pd.DataFrame(new_dataframe[['Timestamp', 'kWh']])
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