Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to get a dataframe column as a list

import pandas as pd

data_dict = {'one': pd.Series([1, 2, 3], index=['a', 'b', 'c']),
             'two': pd.Series([1, 2, 3, 4], index=['a', 'b', 'c', 'd'])}

df = pd.DataFrame(data_dict)

print(f"DataFrame:
{df}
")
print(f"column types:
{df.dtypes}")

col_one_list = df['one'].tolist()

col_one_arr = df['one'].to_numpy()

print(f"
col_one_list:
{col_one_list}
type:{type(col_one_list)}")
print(f"
col_one_arr:
{col_one_arr}
type:{type(col_one_arr)}")
Comment

pandas dataframe lists as columns

In [8]: data = pd.DataFrame({'x': x, 'sin(x)': y})
In [9]: data
Out[9]: 
          x        sin(x)
0  0.000000  0.000000e+00
1  0.349066  3.420201e-01
2  0.698132  6.427876e-01
3  1.047198  8.660254e-01
4  1.396263  9.848078e-01
5  1.745329  9.848078e-01
6  2.094395  8.660254e-01
7  2.443461  6.427876e-01
8  2.792527  3.420201e-01
9  3.141593  1.224647e-16

[10 rows x 2 columns]
Comment

list to dataframe columns

import pandas as pd

lst = [1,2,3]
df = pd.DataFrame([lst])
df.columns =['col1','col2','col3']
df

to get this:

    col1    col2    col3
0   1       2       3
Comment

pandas read columns as list

from ast import literal_eval


df.Col3 = df.Col3.apply(literal_eval)
print(df.Col3[0][0])
Proj1
Comment

PREVIOUS NEXT
Code Example
Python :: get variable name python 
Python :: count dictionary keys 
Python :: google text to speech python 
Python :: how to check how many items are in a list python 
Python :: default flask app 
Python :: python logging into two different files 
Python :: python round down 
Python :: networkx max degree node 
Python :: python flatten array of arrays 
Python :: python scheduling 
Python :: cv2 imshow in colab 
Python :: python list splicing 
Python :: python convert float to decimal 
Python :: create a blank image opencv 
Python :: pygame window at center 
Python :: discord.py how get user input 
Python :: from django.contrib import messages 
Python :: create array with unknown size in python 
Python :: numpy find columns containing nan 
Python :: python find smallest value in 2d list 
Python :: drop list of columns pandas 
Python :: Python - How To Check if a String Is a Palindrome 
Python :: setting urls 
Python :: python move a file from one folder to another 
Python :: delete tuple from list 
Python :: selenium if statement python 
Python :: last index in python 
Python :: ln in python 
Python :: how to import your own function python 
Python :: data compression in python 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =