Answers for "convert list object in dataframe"

11

how to convert dataframe to list in python

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

convert list of lists to pandas dataframe

salary = [['Company', 'Job', 'Salary($)'],
          ['Google', 'Machine Learning Engineer', 121000],
          ['Google', 'Data Scientist', 109000],
          ['Google', 'Tech Lead', 129000],
          ['Facebook', 'Data Scientist', 103000]]
df = pd.DataFrame(salary[1:], columns=salary[0])
Posted by: Guest on September-04-2021

Code answers related to "convert list object in dataframe"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language