For some reason some columns in the csv file have a blank space appended. This means that you need to access them with e.g. "OS "
instead of "OS"
. The following would hence work:
sb.stripplot(x='OS ',y='Capacity ',data=smartphones,size=10, jitter=True)
The more reliable way is of course to sanitize your input data prior to loading it. I.e. run a search/replace and replace " ,"
by ","
in the file.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…