I have an intuitive problem. Let's take
import pandas as pd
import numpy as np
df1 =5*pd.DataFrame(np.random.randn(N, 3), columns=['A', 'B','C'])
df2 =10+10*pd.DataFrame(np.random.randn(N, 3), columns=['A', 'B','C'])
Data=np.concatenate((df1, df2), axis=0)
Data[:,2]=1
Data[0:,2]=0
y=Data[:,2]
df=pd.DataFrame(np.c_[Data[:,0],Data[:,1]])
df1=df
df1['^2']=Data[:,1]**2
df1['^3']=Data[:,1]**3
df1['^4']=Data[:,1]**4
My task is to plot scatter plot the following :
But I highly doubt that it's feasible because of data dimension. My thesis is that you cannot plot data above on scatter plot or any type of plot (even 3d) Am I correct ?