convert a dataframe to list code example
Example 1: python - convert a column in a dataframe into a list
myvar_list = df["myvar"].tolist()
Example 2: pandas to list
df.values.tolist()
myvar_list = df["myvar"].tolist()
df.values.tolist()