Customer Profiling (Business Analyst)

Nivel de licencia:BasicStandardAdvanced

Resumen

Profiles demographic attributes of customer data based on a selected demographic or custom data layer.

Learn more about how Customer Profiling works

Uso

Sintaxis

CustomerProfiling_ba (CustomerLayer, InputBoundaryLayer, InputGeographyLevel, InputFieldsToProfile, InputProspectingFillingOptions, InputFillingVariance, OutputDMQFilePath, {UseSelectedFeatures})
ParámetroExplicaciónTipo de datos
CustomerLayer

The input feature layer containing customer points.

Feature Layer
InputBoundaryLayer

The input feature layer that determines the extent at which the analysis will query and return results from the geography level layer.

Feature Layer
InputGeographyLevel

The input feature class that contains the data to be used in the demographic query.

Feature Layer
InputFieldsToProfile
[InputFieldsToProfile,...]

The selected attributes (commonly demographic data) that will be used to define your profile from the geography level.

Field
InputProspectingFillingOptions

The value ranges for the fields to profile.

  • FLOOR_VALUEThe value range to be profiled will be set at this value or greater.
  • CEILING_VALUEThe value range to be profiled will be set at less than this value.
  • BOTHThe value range to be profiled will be set between the values set here.
String
InputFillingVariance

Sets the percentages by which the filling options will be read, for example, plus or minus 20 percent.

Double
OutputDMQFilePath

The output file that stores the defined parameters (the definition query).

This file is used as an input for the Customer Prospecting By Demographic Data tool.

String
UseSelectedFeatures
(Opcional)

Defines which customers are used to generate the customer profile.

  • TRUEGenerates a customer profile on selected customers.
  • FALSEGenerates a customer profile on all customers. This is the default.
Boolean

Ejemplo de código

CustomerProfiling Example (Stand-alone Script)
# Name: CustomerProfiling.py
# Description: Creates a profile of customers in San Francisco based on current year total households.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.ImportToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
 
try:
# Acquire extension license 
  arcpy.CheckOutExtension("Business")
 
# Define the parameters for the Customer Profiling tool
  CustPath = "C:/temp/sf_cust.shp"
  InputOverlay = "C:/temp/Boundary.shp"
  InputGeo = "C:/ArcGIS/Business Analyst/US_2013/Data/BDS/esri_bg.bds"
  Profile = "TOTHH_CY"
  Variance = "20"
  OutPath = "C:/temp/DMQ_output.dmq"
 
# Create Customer Profiling output file
  arcpy.CustomerProfiling_ba(CustPath, InputOverlay, InputGeo, Profile, "BOTH", Variance, OutPath)
 
# Release extension license
  arcpy.CheckInExtension("Business") 
 
except:
  print arcpy.GetMessages(2)

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento.

Temas relacionados

Información sobre licencias

ArcGIS for Desktop Basic: Requiere Business Analyst
ArcGIS for Desktop Standard: Requiere Business Analyst
ArcGIS for Desktop Advanced: Requiere Business Analyst
4/26/2014