Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

np array to df

import numpy as np
import pandas as pd

my_array = np.array([[11,22,33],[44,55,66]])

df = pd.DataFrame(my_array, columns = ['Column_A','Column_B','Column_C'])

print(df)
print(type(df))
Comment

df to np array

df = pd.DataFrame({"A": [1, 2], "B": [3.0, 4.5]})
>>> df.to_numpy()
array([[1. , 3. ],
       [2. , 4.5]])
Comment

make pandas df from np array

numpy_data = np.array([[1, 2], [3, 4]])
df = pd.DataFrame(data=numpy_data, index=["row1", "row2"], columns=["column1", "column2"])
print(df)
>>>
  column1  column2
row1        1        2
row2        3        4
Comment

convert a pandas df to a numpy array

x = df.to_numpy()
x
Comment

numpy arrauy to df

numpy_data = np.array([[1, 2], [3, 4]])
df = pd.DataFrame(data=numpy_data, index=["row1", "row2"], columns=["column1", "column2"])
print(df)
Comment

panda dataframe to numpy matrix

# Imports
import numpy as np
import pandas as pd


df= pd.read_csv('/content/drive/MyDrive/Colab Notebooks/res_data/temp/file.txt', header = None, delim_whitespace=True, error_bad_lines=False).to_numpy()
df=df.astype(float)  # convert number to float for matric calculations

print(df.shape)  # .... (16, 1) initial shaope
df.resize(4, 4)

print(df)

[[ 1.  2.  3.  4.]
 [ 5.  6.  7.  8.]
 [ 9.  3.  5.  6.]
 [ 8.  9. 79.  0.]]
 
Comment

PREVIOUS NEXT
Code Example
Python :: pandas object to float 
Python :: how to subtract dates in python 
Python :: python selenium save cookies 
Python :: Python - Drop row if two columns are NaN 
Python :: get certain columns pandas with string 
Python :: Parameter Grid python 
Python :: get rid of n in string python 
Python :: shift axis in python 
Python :: on message discord py 
Python :: import fashion mnist keras 
Python :: tkinter app icon 
Python :: How to perform insertion sort, in Python? 
Python :: how to show webcam in opencv 
Python :: how to record the steps of mouse and play the steps using python 
Python :: pandas add rows from df to another 
Python :: list to tuple 
Python :: print() in python 
Python :: python element wise multiplication list 
Python :: python how to add picture to label with tkinter 
Python :: use of // in python 
Python :: how to get current date in python 
Python :: pandas order by date column 
Python :: list loop python 
Python :: iqr in python 
Python :: how to address a column in a 2d array python 
Python :: TabError: inconsistent use of tabs and spaces in indentation 
Python :: python exec return value 
Python :: pip install python 
Python :: Creating virtual environments 
Python :: python read string from file 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =