|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
警告内容如下:
SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filtered_df['B'] = filtered_df['B'].astype(int)
最大值: 12
对应的日期: 2022-12-15
运行的代码:
import pandas as pd
data = [["004243","C","2022-12-22",'',"4"],["162719","A","2022-12-20","8","6"],
["004243","C","2022-12-19",'',"12"],["519212","B","2022-12-18","56","3"],
["162411","E","2022-12-17","8","7"],["007844","FC","2022-12-16","","8"],
["163208","G","2022-12-15","66","12"],["162719","A","2022-12-14","8","6"],
["519212","B","2022-12-12","56","3"],["162411","E","2022-12-11","8","7"],
["007844","FC","2022-12-10","","18"],["163208","G","2022-12-8","66","12"]]
columns = ["编号","名称","日期","A","B"]
df = pd.DataFrame(data, columns=columns)
# 将日期列转换为日期格式
df['日期'] = pd.to_datetime(df['日期'])
# 筛选日期大于2022-12-13的行
filtered_df = df[df['日期'] > '2022-12-13']
# 将B列转换为整数格式
filtered_df['B'] = filtered_df['B'].astype(int)
# 找到B列的最大值
max_value = filtered_df['B'].max()
# 找到对应最大值的日期
max_date = filtered_df.loc[filtered_df['B'] == max_value, '日期'].iloc[-1]
print("最大值:", max_value)
print("对应的日期:", max_date.strftime('%Y-%m-%d'))
为了解决DeprecationWarning,请使用df[df.columns[i]] = newvals替代.loc[]方法。以下是修改后的代码:
import pandas as pd
data = [["004243","C","2022-12-22",'',"4"],["162719","A","2022-12-20","8","6"],
["004243","C","2022-12-19",'',"12"],["519212","B","2022-12-18","56","3"],
["162411","E","2022-12-17","8","7"],["007844","FC","2022-12-16","","8"],
["163208","G","2022-12-15","66","12"],["162719","A","2022-12-14","8","6"],
["519212","B","2022-12-12","56","3"],["162411","E","2022-12-11","8","7"],
["007844","FC","2022-12-10","","18"],["163208","G","2022-12-8","66","12"]]
columns = ["编号","名称","日期","A","B"]
df = pd.DataFrame(data, columns=columns)
# 将日期列转换为日期格式
df['日期'] = pd.to_datetime(df['日期'])
# 筛选日期大于2022-12-13的行
filtered_df = df[df['日期'] > '2022-12-13'].copy()
# 将B列转换为整数格式
filtered_df[filtered_df.columns[4]] = filtered_df['B'].astype(int)
# 找到B列的最大值
max_value = filtered_df['B'].max()
# 找到对应最大值的日期
max_date = filtered_df.loc[filtered_df['B'] == max_value, '日期'].iloc[-1]
print("最大值:", max_value)
print("对应的日期:", max_date.strftime('%Y-%m-%d'))
|
|