0
파이썬 2.7 ggplot을 사용하여 산점도를 작성합니다. 배경 강철판을 원하지만 몇 가지 점을 강조했지만 실패했습니다. 어떤 사람이 저를 도울 수 있습니까?python ggplot scatter emphasize
코드 조각이 :
from ggplot import *
chart = ggplot(df_color, aes(x='x-tsne', y='y-tsne'))\
+ geom_point(color='steelblue',size=70,alpha=0.8)\
+ geom_point(data=df_color.loc[self.GoI,:],aes(x='x-tsne', y='y-tsne'), colour="red",size=5)\
+ ggtitle("tSNE dimensions")
오류는 다음과 같습니다
line 154
+ geom_point(data=df_color.loc[self.GoI,:],aes(x='x-tsne', y='y-tsne'), colour="red",size=5)\
SyntaxError: non-keyword arg after keyword arg