python—函数参数,用于在Pandas中调用函数
发布时间:2022-06-15 17:35:40 323
相关标签: # node.js
我正在努力理解下面我写的简单语法,它工作得很好。然而,我正在努力理解def transform_data(data)
,我将数据作为参数传递,在此之后,我将使用相同的参数调用drop
熊猫的功能。通常,我们使用object调用函数,但是否可以使用function参数调用函数,或者我错了。
import pandas as pd
def read_csv_file(file_reading):
file_contents = pd.read_csv(file_reading)
dropped_column = transform_data(file_contents)
save_to_file = write_file(dropped_column)
return save_to_file
def transform_data(data): #<-- This data is parameter
processed_data = data.drop("column_name", axis=1) #<--can we call function using parameter
return processed_data
if __name__ == '__main__':
df = read_csv_file('budget-report.csv')
print(df)
抱歉,如果这个问题看起来很愚蠢,但我很好奇,在跳到大问题之前先了解这些小问题。谢谢你的帮助。
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报