Frecuencia (Análisis)
Resumen
Lee una tabla y un conjunto de campos y crea una nueva tabla que contiene valores de campo únicos y el número de apariciones de cada valor de campo único.
Uso
-
La tabla de salida contendrá el campo Frecuencia y los campos de frecuencia y de resumen especificados.
-
La tabla de salida contendrá el cálculo de la frecuencia para cada combinación de valores de atributo de los campos de frecuencia especificados.
-
Si se especifica un campo de resumen, los valores de atributo numéricos de cada campo resumen resumirán los valores de atributo únicos del cálculo de la frecuencia.
-
Cuando se utilizan capas, solamente se utilizan en los cálculos las entidades actualmente seleccionadas.
Sintaxis
Parámetro | Explicación | Tipo de datos |
in_table |
La tabla que contiene los campos que se utilizarán para calcular las estadísticas de frecuencia. Esta tabla puede ser una tabla INFO u OLE DB, una tabla dBase o VPF, o una tabla de clase de entidad. | Table View; Raster Layer |
out_table |
La tabla que almacenará las estadísticas de frecuencia calculadas. | Table |
frequency_fields [frequency_fields,...] |
El campo o los campos de atributo que se utilizarán para calcular las estadísticas de frecuencia. | Field |
summary_fields [summary_fields,...] (Opcional) |
El campo o los campos de atributo para sumar y agregar a la tabla de salida. Los valores nulos se excluyen de este cálculo. | Field |
Ejemplo de código
La siguiente secuencia de comandos de la ventana de Python demuestra cómo utilizar la función Frecuencia en modo inmediato.
import arcpy from arcpy import env env.workspace = "C:/data/Portland.gdb/Taxlots" arcpy.Frequency_analysis("taxlots", "C:/output/output.gdb/tax_frequency",["YEARBUILT", "COUNTY"], ["LANDVAL", "BLDGVAL", "TOTALVAL"])
La siguiente secuencia de comandos independiente demuestra cómo utilizar la función Frecuencia.
# Name: Frequency_Example2.py # Description: Run Frequency on a table # Author: ESRI # Import system modules import arcpy from arcpy import env # Set environment settings env.workspace = "C:/data/Portland.gdb/Taxlots" # Set local variables inTable = "taxlots" outTable = "C:/output/output.gdb/tax_frequency" frequencyFields = ["YEARBUILT", "COUNTY"] summaryFields = ["LANDVAL", "BLDGVAL", "TOTALVAL"] # Execute Frequency arcpy.Frequency_analysis(inTable, outTable, frequencyFields, summaryFields)
La siguiente secuencia de comandos independiente demuestra cómo utilizar muchas funciones de secuencias de comandos de geoprocesamiento, incluida la función Frecuencia.
# Name: Frequency_Example3.py # Description: Break all multipart features into singlepart features, # and generate a report of which features were separated. # Author: ESRI # Import system modules import arcpy from arcpy import env # Create variables for the input and output feature classes inFeatureClass = "c:/gdb.mdb/vegetation" outFeatureClass = "c:/gdb.mdb/vegetation_singlepart" # Use error trapping in case a problem occurs when running the tools try: # Add a field to the input (if not already present), this will be used as a unique identifier # Create list of all fields in inFeatureClass fieldList = arcpy.ListFields(inFeatureClass) # Create new empty list to hold field names from inFeatureClass fieldNameList = [] # polulate the field name list with field names from inFeatureClass for field in fieldList: fieldNameList = fieldNameList.append(field.name) # if "tmpUID" is not a field name in inFeatureClass, add it if "tmpUID" not in fieldNameList: arcpy.AddField(inFeatureClass, "tmpUID","double") # Determine what the name of the Object ID is describe = arcpy.Describe(inFeatureClass) OidFieldName = describe.OIDFieldName # Calculate the tmpUID to the OID since this is a Personal GDB, wrap the Field inside [] exp = "[" + OidFieldName + "]" arcpy.CalculateField_management(inFeatureClass, "tmpUID", exp) # Run the tool to create a new fc with only singlepart features arcpy.MultipartToSinglepart_management(inFeatureClass,outFeatureClass) # Check if there is a different number of features in the output than there was in the input if (arcpy.GetCount_management(inFeatureClass) == (arcpy.GetCount_management(outFeatureClass)): print "The number of features in the input is the same as in the output, so no multipart features were found" else: # If there is a difference, print out the FID of the input features which were multipart arcpy.Frequency_analysis(outFeatureClass, outFeatureClass + "_freq", "tmpUID") # Use a search cursor to go through the table, and print the tmpUID print "Below is a list of the FIDs of all the multipart features from " + inFeatureClass rows = arcpy.SearchCursor(outFeatureClass + "_freq", "[FREQUENCY] > 1") row = rows.next() while row: print int(row.tmpUID) row = rows.next() except: # If an error occurred, print out the error message print "Error occurred" print arcpy.GetMessages()