I have tried the below code in python:
y = df.drop(["userid"], axis=1)
plt.figure(figsize=(20, 20))
plt.scatter(df['userid'], y)
plt.xlabel('userid')
plt.ylabel('privilages')
But I get an error which says 'x and y must be the same size'
I have tried the below code in python:
y = df.drop(["userid"], axis=1)
plt.figure(figsize=(20, 20))
plt.scatter(df['userid'], y)
plt.xlabel('userid')
plt.ylabel('privilages')
But I get an error which says 'x and y must be the same size'