Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Matplotlib Scatter - ValueError: RGBA sequence should have length 3 or 4

I am trying to plot a graph for my features and I keep getting this error:

ValueError: RGBA sequence should have length 3 or 4

The code worked perfectly whenever I only had 6 types of shapes but now that i've increased it to 10 it wont work?

If I make c=c with c = np.random.random((100, 4)) instead of c=y it works but then every data point has a different colour.

My code is:

features = ["Number of Sides", "Standard Deviation of Number of Sides/Perimeter",
      "Standard Deviation of the Angles", "Largest Angle"]

features1 = ["Label"]

def Build_Data_Set():

    data_df = pd.DataFrame.from_csv("AllMixedShapes2.csv")

    #This line randomly shuffles the data so that the different types of training data get
    #mixed up randomly to prevent the data being skewed
    data_df = data_df.reindex(np.random.permutation(data_df.index))
    X = np.array(data_df[features].values)

    data_df2 = pd.DataFrame.from_csv("AllMixedShapes2.csv")
    y = np.array(data_df2[features1].replace("Circle",0).replace("Equilateral Triangle",1)
             .replace("Right Angle Triangle",2).replace("Acute Triangle",3)
             .replace("Obtuse Triangle",4).replace("Square",5)
             .replace("Parallelogram",6).replace("Rectangle",7)
             .replace("Pentagon",8).replace("Seal",9).values.tolist())
return X,y

def SVC_Analysis():

    test_size = 300
    X,y = Build_Data_Set()

    clf = svm.SVC(kernel = 'rbf', C = 1.0)
    clf.fit(X[:test_size],y[:test_size])

    correct_count = 0

    for x in range(1, test_size+1):
            if clf.predict(X[-x])[0] == y[-x]:
                correct_count += 1

    print("Accuracy:", (correct_count/test_size) * 100.00)


    data_df = pd.DataFrame.from_csv("AllMixedShapes2.csv")
    X1 = np.array(data_df[features2].values)
    y1 = np.array(data_df[features3].values)
    #w = clf.coef_[0]
    #a = -w[0] / w[1]
    xx = np.linspace(0,5)
    yy = np.linspace(0,185)

    h0 = plt.plot(xx,yy, "k-", label="non weighted")

    plt.scatter(X1[:, 0],y1, c=y, cmap=plt.cm.Paired)
    plt.ylabel("Maximum Angle (Degrees)")
    plt.xlabel("Number Of Sides")
    plt.title('Shapes')
    plt.legend()
    plt.show()

SVC_Analysis()

My csv file for reference looks like

As far as I can tell the problem is to do with c=y, cmap=plt.cm.Paired) but I cant be sure and I cant find a solution.

like image 854
Thom Elliott Avatar asked Mar 29 '17 16:03

Thom Elliott


2 Answers

I also ran into this error. In my case, the issue was that I was plot-ing when I meant to scatter. Changing

plt.plot(x1, x2, c=target)

to

plt.scatter(x1, x2, c=target)

fixed it.

like image 164
Jacob Stern Avatar answered Nov 09 '22 00:11

Jacob Stern


Your y array looks like

 ['3']
 ['9']
 ['0']
 ['5']
 ['5']
 ['Triangle']
 ['7']
 ['9']
 ['0']
 ['0']
...

while in reality it should look like

[3,9,0,5,5,5,7,9,0,0, ...]
like image 31
ImportanceOfBeingErnest Avatar answered Nov 08 '22 23:11

ImportanceOfBeingErnest