I am new to seaborn(version: '0.9.0'). I loaded my data from a CSV file in pdandas but when I am trying to create the stripplot i get this error:
ValueError: Could not interpret input 'OS'
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sb
smartphones = pd.read_csv('D:\\Python Codes\\DataScience\\Smartphone.csv')
sb.stripplot(x='OS',y='Capacity',data=smartphones,size=10, jitter=True)
plt.show()
CodeError
This is my CSV file:
Dataset
This is the link to the CSV file: The CSV File