Python ist neu für mich. Vermutlich ist meine Frage eine Kleinigkeit für Euch.
Folgender Code:
grr_2018 = pd.plotting.scatter_matrix(dataSet_2018[cols_target_2018 + cols_ratio_2018]
,c = dataSet_target_2018 #c=solors für color?
,diagonal = 'kde' #ansonsten Standard = Histogram
,figsize=(20, 20) #Quadratgröße
,marker = 'o'
,hist_kwds={'bins' : 20}# Balkenbreite
,s = 60 #s=sizes
,alpha = 0.

plt.show()
verursacht folgenden Fehler: ValueError: 'c' argument must either be valid as mpl color(s) or as numbers to be mapped to colors. Here c = rel. Op. Ergebnis
Wenn ich c auskommentiere klappt es.
Vielen Dank und Gruß
Hias