这里的时间分辨率是 1 秒,我想将其转换为 10 毫秒
我想将该表中的时间分辨率从 1 秒更改为 10 毫秒,方法是减去每行之间的时间差,将其乘以 100,然后用该数字复制每行。
例如: Row[n] 将被重复 Time((n+1)-n)*100
当时间 = 2 秒(第三行)时,我们有某些值组合将保持不变,直到下一行,时间 = 22 秒(第四行),因此这里的时间差 = 20 秒,基于我想要的(第三行) ) 重复 (20*100)
Row[2] 将重复 (22-2)*100
import pandas
import pandas as pd
# Dataframe from Excel sheet
excel_data_Outputs_df = pandas.read_excel(".xlsx", sheet_name='Outputs')
excel_data_Inputs_df = pandas.read_excel("xlsx", sheet_name='Inputs')
# Exclude All zeros columns
excel_data_Outputs_df = excel_data_Outputs_df.loc[:, (excel_data_Outputs_df != 0).any(axis=0)]
excel_data_Inputs_df = excel_data_Inputs_df.loc[:, (excel_data_Inputs_df != 0).any(axis=0)]
# Get the time difference and convert it 10ms resolution
shifted=excel_data_Inputs_df.Time.shift(-1)
excel_data_Inputs_df.Time=(shifted-excel_data_Inputs_df.Time)*100
excel_data_Inputs_df['Time'] = excel_data_Inputs_df['Time'].fillna(0)
excel_data_Inputs_df.Time=excel_data_Inputs_df.Time.astype(int)
# Repeat Rows
newexcel_data_Inputs_df = excel_data_Inputs_df.loc[excel_data_Inputs_df.index.repeat(excel_data_Inputs_df.Time)].reset_index(drop=True)
print(newexcel_data_Inputs_df)
print(excel_data_Outputs_df)
繁花不似锦
相关分类