I work with the Predict function to train a neuralnetworkneural network.
datnn = Predict[dattrain, Method -> "NeuralNetwork", PerformanceGoal -> "Quality"]; NNCM = PredictorMeasurements[datnn, dattest]; CP = NNCM["ComparisonPlot"] One of the outputs is the ComparisonPlotComparisonPlot
I want to combine this plot with one other plot, for example :
Row[{CP, ListLinePlot[date[[All, {1, 3}]], ImageSize -> Large], Frame -> True] The ImagesizeImageSize of the ComparisonPlotComparisonPlot is different from the otrherother plot. For that reason I want to change the imageformatimage format of the ComparisonPlotComparisonPlot. Who has a suggestion to do this?
