In order to search correlations between products and categories and next visualizations (heatmaps) I need to reorder array using Python with/without Pandas or other libraries from this:
Book Name,   Category 1,   Category 2,  Category 3,
 Django 101   Python        Web-Dev      Beginner
 ROR Guide    Rails         Web-Dev      Intermediate
 Laravel      PHP           Web-Dev      Intermediate
into that:
Book Name,   Python, Web-Dev, Beginner, Rails, PHP,    Intermediate
 Django 101   True    True     True      False  False,  False 
 ROR Guide    False   True     False     False  False,  True
 Laravel      False   True     False     False  True,   True
Is there any way to do that? Data stored into .csv file and read by pandas.read_csv ()