import pandas as pd from sklearn import svm ### Read the CSV ### df = pd.read_csv(\'C:/Users/anagha/Documents/Python Scripts/sampleData.csv\') df from sklearn.cros
svc = svm.SVC(kernel='linear', C=1, gamma=1)
Note that capital C.
C
See the docs.