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

get dataframe column into a list

df_gearME = pd.read_excel('Gear M&Es.xlsx')
df_gearME['ColA'].to_list()
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 :: for in loop python 
Python :: python read hex file 
Python :: windows instalar python 
Python :: parallel iteration python 
Python :: lower and upper case user input python 
Python :: Default stride value in keras 
Python :: pysimplegui get value from textbox 
Python :: how to create dynamic list in python 
Python :: python mongodump 
Python :: python run linux command and get output 
Python :: python autoclick website 
Python :: pandas heading 
Python :: python string lenght 
Python :: python compiler online 
Python :: Convert csv to dictionary in Python 
Python :: python match case 
Python :: How to delete a file or folder in Python? 
Python :: argparse type 
Python :: python create dictionary 
Python :: how to sum all the values in a list in python 
Python :: add vertical line in plot python 
Python :: python table code 
Python :: convert string to int python 
Python :: python count the vowels 
Python :: request foucus tkinter widget 
Python :: Math Module cos() Function in python 
Python :: _ in python 
Python :: simple python program for beginners 
Python :: remove all occurences 
Python :: dataframe change index 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =