I want to make a scatter plot in pandas the x axis is the mean and the y axis should be the index of data frame , but I couldn't proceed this is my code I got a lot of errors .
y=list(range(len(df.index)))
df.plot(kind='scatter', x='meandf', y )
error : SyntaxError: positional argument follows keyword argument