dataframe from arrays python
import pandas as pd
df=pd.DataFrame({'col1':vect1,'col2':vect2})
dataframe from arrays python
import pandas as pd
df=pd.DataFrame({'col1':vect1,'col2':vect2})
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
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)
get pandas dataframe as numpy array
>>> df = pd.DataFrame({"A": [1, 2], "B": [3.0, 4.5]})
>>> df.to_numpy()
array([[1. , 3. ],
[2. , 4.5]])
convert a pandas df to a numpy array
x = df.to_numpy()
x
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us