使用多个功能时更新变量的最佳实践是什么?

时间:2019-05-27 19:02:39

标签: python-3.x variables declaration

我有一个熊猫数据框df,上面有一些数据。我想对其执行多项操作。这些操作均通过功能实现。我的直觉告诉我更新数据框的方式很奇怪,或者不是最好的。你有什么想法吗?

我以df为例,但是您会为另一个变量(例如整数)做些不同的事情吗?

这是我所做的:

df = read_data(unit_file_path)
df = filter_specific_column(df)
df = manipulate_data(df, other_variable)
df = sort_df_columns(df)
df = change_col_dtypes(df)

注意:对于大熊猫,我了解inplace=True,但最好不要使用它,因为它不太清楚,需要花费更多字符。

0 个答案:

没有答案