I have a set of values: false.csv
I have index values as:
Time
2019.01.02 06:01:00
2019.01.02 06:09:00
2019.01.02 06:12:00
2019.01.02 06:19:00
2019.01.02 06:21:00
2019.01.02 06:26:00
2019.01.02 06:44:00
I want to set the values to zero for the above index which are in separate file. I tried to load the data but could not get the path to move forward.
here is the way I loaded data:
import pandas as pd
df = pd.read_csv("false.csv")
df1= pd.read_csv("set.csv")
Let me know how I can move forward.