Проблем с Data-Visualization-Exploratory-Data-Analysis-Lab
Привет колеги,
Имам проблем със следната задача от втория лаб:
Write a function which accepts a dataframe and a capital gain value (in USD) and returns how many people are there with greater than or equal to that threshold gain.
Не зная как да изчисля праговата печалба.
Това е което съм сътворила:
def get_num_people_with_higher_gain(dataframe, threshold_gain):
# YOUR CODE HERE
threshold_gain=dataframe.capital_gain[dataframe.capital_gain>=60000].count()
return threshold_gain
Благодаря предварително!
Поздрави
Много ти благодаря!