This dataframe has the columns ["Monthly","Weekly","Daily"] and each row is comprised of lists or None type.
How do I align the list entries with the correct columns?
For example on row 1 the lists containing the daily and monthly strings should be swapped with each other. On row 0 the list should be moved to the Daily column. Weekly is correct for both rows.
Data
{'Monthly': {0: [1.352129999999999, '20', 'daily'], 1: [1.344164999999999, '12', 'daily']}, 'Weekly': {0: [1.35305, '12', 'weekly'], 1: [1.34481, '11', 'weekly']}, 'Daily': {0: None, 1: [1.3449900000000001, '4', 'monthly']}}
