I have a dataframe that looks like this:
I need to create a new dataframe in which the student names are the index, the course number is the columns and the values are 0 or 1, depending on whether or not the student took that course.
I have tried the pd.get_dummies()
function but the result was too messy to work with, since I still had to condense the student names to only appear once in the rows.
I am running out of ideas on how to achieve the desired dataframe.
Let's create source dataframe:
Output:
To turn student names to rows and course names to columns function "pivot_table" could be used:
Output:
To replace Nan values to zeroes and numeric values to ones function "applymap" could be used:
Output: