Explode multiple list columns with not same value length
I’m trying to explode dataframe that have multiple columns as list and list of length is different. Below is my dataframe: import pandas as pd import numpy as np df = pd.DataFrame({‘Name’: [‘Name1′,’Name2’], ‘Time’: [[0.0, 5.0, 10.0, 15.0],[0.0, 4.0, 28.0, 48.0]], ‘Values’: [[0.0, 5.0, 10.0],[0.0, 4.0, 48.0]]}) df Name Time Values 0 Name1 [0.0, 5.0,… Read More Explode multiple list columns with not same value length