I have following dataframe
  artist_id  explicit   count
0   10245     False     489
1   10245     True      219
I need to convert this dataframe to
  artist_id  explicit_False     explicit_True
0   10245         489                 219
I have following dataframe
  artist_id  explicit   count
0   10245     False     489
1   10245     True      219
I need to convert this dataframe to
  artist_id  explicit_False     explicit_True
0   10245         489                 219
