Answers for "convert a dataframe to list"

8

python - convert a column in a dataframe into a list

myvar_list = df["myvar"].tolist()
Posted by: Guest on September-01-2020
8

pandas to list

df.values.tolist()
Posted by: Guest on April-18-2020
1

convert list to dataframe

L = ['Thanks You', 'Its fine no problem', 'Are you sure']

#create new df 
df = pd.DataFrame({'col':L})
print (df)

                   col
0           Thanks You
1  Its fine no problem
2         Are you sure
Posted by: Guest on July-23-2020
0

List to Dataframe

# import pandas as pd 

import pandas as pd 
# list of strings 
lst = ['fav', 'tutor', 'coding', 'skills']
# Calling DataFrame constructor on list 
df = pd.DataFrame(lst) 
print(df)
Posted by: Guest on August-12-2021

Code answers related to "convert a dataframe to list"

Python Answers by Framework

Browse Popular Code Answers by Language