If have loaded a numpy file as a pandas dataframe
train_data = np.load('c:/data_raw/data.npy')
data = pd.DataFrame(train_data)
data.head()
My question: How can I split the second column (=1) which contains a list of variables into multiple columns?