Export Cross Validation summary to Excel File

556
1
06-15-2020 01:22 PM
LucasRosen
New Contributor II

Hello, 

Is there a way to just export the Cross validation Summary Statistics to a table from Geostatistical Wizard? I am working with many different Maps so I do not  need the entire report. I see that I can copy the summary to a clip board but I was wondering if there is an easier way.   

0 Kudos
1 Reply
EricKrause
Esri Regular Contributor

Hi Lucas,

The easiest way to do this is the Cross Validation geoprocessing tool.  It takes a geostatistical layer as input, and it creates a derived output with all of the summary statistics as properties.

Quick Python code example:

outCV = arcpy.ga.CrossValidation('myGALayer')
outCV.rootMeanSquare
'294.63006397102004'

0 Kudos