Match Level Summary Report (Business Analyst)

许可等级:BasicStandardAdvanced

摘要

Creates a report that assigns customer records to one of four match levels based on the geographic code assigned to each customer using the address information from your customer file.

Learn more about how Match Level Summary Report (Business Analyst) works

用法

语法

MatchLevelSR_ba (CustomerLayer, CustomerLayerDescr, OutputDirectoryParameterName, {UseSelectedFeatures}, {TitleParameterName}, {ReportFormats})
参数说明数据类型
CustomerLayer

The point input feature class containing the customer layer. Typically, this will be a Business Analyst customer layer.

Feature Layer
CustomerLayerDescr

Description or alias for the term customer. For example, this could be patients, subscribers, customers, and so forth.

String
OutputDirectoryParameterName

The output directory that will contain the report.

Folder
UseSelectedFeatures
(可选)

Generates a report on selected features of the customer layer.

  • TRUEGenerates the Match Level Summary Report on selected features.
  • FALSEGenerates the Match Level Summary Report on all features. This is the default.
Boolean
TitleParameterName
(可选)

Title for the report.

String
ReportFormats
(可选)

Select the desired report output format.

  • Simple XML
  • PDF
  • HTML
  • CSV
  • ZIP
  • XLSV
  • Stripped XLSX
String

代码实例

MatchLevelSR Example (Stand-alone Script)
# Name: MatchLevelSR.py
# Description: Generates a report with how accurately a customer file geocoded in the San Francisco market.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.ImportToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
 
try:
# Acquire extension license 
  arcpy.CheckOutExtension("Business") 
 
# Define input and output parameters for the Match Level Summary Report tool
  Customers = "C:/temp/sf_cust.shp"
  OutPath = "C:/temp/Output_Segmentation"
 
# Create Match Level Summary Report
  arcpy.MatchLevelSR_ba(Customers, "Customers", OutPath)
 
# Release extension license 
  arcpy.CheckInExtension("Business") 
 
except:
  print arcpy.GetMessages(2)

环境

此工具不使用任何地理处理环境

相关主题

许可信息

ArcGIS for Desktop Basic: 需要 Business Analyst
ArcGIS for Desktop Standard: 需要 Business Analyst
ArcGIS for Desktop Advanced: 需要 Business Analyst
4/27/2014