第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

根據(jù)時(shí)間列中兩個(gè)值之間的差異,將數(shù)據(jù)幀中的每一行重復(fù) N 次

根據(jù)時(shí)間列中兩個(gè)值之間的差異,將數(shù)據(jù)幀中的每一行重復(fù) N 次

汪汪一只貓 2023-08-22 15:52:21
這里的時(shí)間分辨率是 1 秒,我想將其轉(zhuǎn)換為 10 毫秒我想將該表中的時(shí)間分辨率從 1 秒更改為 10 毫秒,方法是減去每行之間的時(shí)間差,將其乘以 100,然后用該數(shù)字復(fù)制每行。例如: Row[n] 將被重復(fù) Time((n+1)-n)*100當(dāng)時(shí)間 = 2 秒(第三行)時(shí),我們有某些值組合將保持不變,直到下一行,時(shí)間 = 22 秒(第四行),因此這里的時(shí)間差 = 20 秒,基于我想要的(第三行) ) 重復(fù) (20*100)Row[2] 將重復(fù) (22-2)*100import pandasimport pandas as pd# Dataframe from Excel sheetexcel_data_Outputs_df = pandas.read_excel(".xlsx", sheet_name='Outputs')excel_data_Inputs_df = pandas.read_excel("xlsx", sheet_name='Inputs')# Exclude All zeros columnsexcel_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)*100excel_data_Inputs_df['Time'] = excel_data_Inputs_df['Time'].fillna(0)excel_data_Inputs_df.Time=excel_data_Inputs_df.Time.astype(int)# Repeat Rowsnewexcel_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)
查看完整描述

1 回答

?
繁花不似錦

TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超4個(gè)贊

創(chuàng)建另一列來(lái)保存列值的差異,以供重復(fù)參考,然后執(zhí)行如下操作:


import pandas as pd


# Sample dataframe

df = pd.DataFrame({

    'id' : ['a', 'b', 'c', 'd'],

    'col1' : [4, 5, 6, 7],

    'col2' : [3, 2, 4, 3]

    })


# Create a new column to hold the difference in column values 

# i.e. the number of times the row repition is required.

df['times'] = df.col1 - df.col2


# create the finalDf with repeated rows

finalDf = df.loc[df.index.repeat(df.times)].reset_index(drop=True)

print(finalDf.head())

語(yǔ)句的輸出print如下所示:


  id  col1  col2  times

0  a     4     3      1

1  b     5     2      3

2  b     5     2      3

3  b     5     2      3

4  c     6     4      2


查看完整回答
反對(duì) 回復(fù) 2023-08-22
  • 1 回答
  • 0 關(guān)注
  • 1641 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)