Hi, I work with the Predict function to train a neuralnetwork.
datnn = Predict[dattrain, Method -> "NeuralNetwork", PerformanceGoal -> "Quality"];
NNCM = PredictorMeasurements[datnn, dattest];
CP = NNCM["ComparisonPlot"]
One of the outputs is the ComparisonPlot

I want to combine this plot with one other plo, for example :
Row[{CP,
ListLinePlot[date[[All, {1, 3}]], ImageSize -> Large], Frame -> True]
For that reason I want to change the imageformat of the ComparisonPlot. Who has a suggestion to do this?