Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

convert numpy array to dataframe

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 :: python closure 
Python :: RuntimeError: Broken toolchain: cannot link a simple C program 
Python :: multiply each element in list python 
Python :: python split string every character 
Python :: make screen shot of specific part of screen python 
Python :: live plot loss 
Python :: python find index by value 
Python :: Write a Python program to get the Python version you are using. 
Python :: python column multiply 
Python :: tensorflow_version 
Python :: jinja macro import 
Python :: drop all characters after a character in python 
Python :: urllib3 python 
Python :: selenium get parent element 
Python :: python ssh into server 
Python :: create limit using matplotlib 
Python :: dataframe row print 
Python :: roman to integer python 
Python :: shuffle list 
Python :: django clear all sessions 
Python :: python printing variables 
Python :: pandas pivot 
Python :: beautiful soup documentation 
Python :: /bin/sh: 1: python: not found 
Python :: pd merge 
Python :: Python pandas first and last element of column 
Python :: python lock using a file 
Python :: python efficiently find duplicates in list 
Python :: softmax function python 
Python :: first column of a dataframe python 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =