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

convert pandas dataframe to numpy dataframe

DataFrame.to_numpy(dtype=None, copy=False, na_value=<object object>)
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 :: django import settings variables 
Python :: save image url to png python 
Python :: pandas drop columns by index 
Python :: python number with comma to float 
Python :: jupyter nbextension 
Python :: convert bytes to numpy array python 
Python :: gpu training tensorflow 
Python :: drop columnd python 
Python :: python remove during iteration 
Python :: pygame left click 
Python :: how to create a file in a specific location in python 
Python :: nlargest 
Python :: except do nothing python 
Python :: how to add a list to dataframe in python 
Python :: python every other goes to a list 
Python :: python how to remove the title of the index from dataframe 
Python :: how to code in python 
Python :: python default input 
Python :: add a title to pandas dataframe 
Python :: 1052 uri solution 
Python :: all column except pandas 
Python :: python search string for word 
Python :: array search with regex python 
Python :: python know the number of a loop 
Python :: python initialize dictionary with lists 
Python :: on member leave event in discord.py 
Python :: freq count in python 
Python :: django admin image 
Python :: python change cmd title 
Python :: python not null 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =