I work with the Predict function to train a neural network.
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 plot, for example :
Row[{CP, ListLinePlot[date[[All, {1, 3}]], ImageSize -> Large], Frame -> True] The ImageSize of the ComparisonPlot is different from the other plot. For that reason I want to change the image format of the ComparisonPlot. Who has a suggestion to do this?

