Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def custom_preprocessing(df):
"""

# Group age by decade
df['Age (decade)'] = df['age'].apply(lambda x: x//10*10)
df['Age (decade)'] = df['age'].astype(int).apply(lambda x: x//10*10)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we group integers or it is only feasible to group str?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'age' had a String datatype due to which it was typecasted to integer and grouped as a decade.

# df['Age (decade)'] = df['age'].apply(lambda x: np.floor(x/10.0)*10.0)

def group_edu(x):
Expand Down