|
@@ -101,8 +101,8 @@ def plotData():
|
101
|
101
|
nrows=NumberOfFailures+1, ncols=2, figsize=(15, 20), dpi=80, facecolor="w", edgecolor="k",sharex=True
|
102
|
102
|
)
|
103
|
103
|
for i in range(NumberOfFailures+1):
|
104
|
|
- axes[i][0].plot(dataTrainNorm[i][:,0],label="Fail 0, feature 0")
|
105
|
|
- axes[i][1].plot(dataTrainNorm[i][:,1],label="Fail 0, feature 1")
|
|
104
|
+ axes[i][0].plot(np.concatenate((dataTrainNorm[i][:,0],dataTestNorm[i][:,0])),label="Fail "+str(i)+", feature 0")
|
|
105
|
+ axes[i][1].plot(np.concatenate((dataTrainNorm[i][:,1],dataTestNorm[i][:,1])),label="Fail "+str(i)+", feature 1")
|
106
|
106
|
#axes[1].legend()
|
107
|
107
|
#axes[0].set_ylabel(features[0])
|
108
|
108
|
#axes[1].set_ylabel(features[1])
|