可以通过以下步骤实现:
import pandas as pd
from datetime import datetime
data = {'date_column': ['2022-01-01', '2022-02-01', '2022-03-01', '2022-04-01', '2022-05-01', '2022-06-01', '2022-07-01', '2022-08-01', '2022-09-01', '2022-10-01', '2022-11-01', '2022-12-01', '2023-01-01', '2023-02-01', '2023-03-01', '2023-04-01', '2023-05-01', '2023-06-01', '2023-07-01', '2023-08-01'],
'other_column': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T']}
df = pd.DataFrame(data)
df['date_column'] = pd.to_datetime(df['date_column'])
df['epoch_date'] = df['date_column'].apply(lambda x: int(x.timestamp()))
print(df)
这样,你就可以将具有混合字符串的列转换为epoch date pandas数据帧了。
关于这个问题,腾讯云没有特定的产品或链接与之相关。
领取专属 10元无门槛券
手把手带您无忧上云