Core and Developmental Segments Segmentation Report (Business Analyst)

Уровень лицензии:BasicStandardAdvanced

Краткая информация

Displays core and developmental segments in a table with customer count and percent, market area count and percent, and index.

Использование

Синтаксис

CoreDevelopmentalSegments_ba (BaseProfile, TargetProfile, SegmentMethod, OutputDirectoryParameterName, {IndexThreshold}, {PenetrationThreshold}, {TargetGroup}, {CoreTarget}, {DevelopmentalTarget}, {TitleParameterName}, {ReportFormats})
ПараметрОбъяснениеТип данных
BaseProfile

The base profile used in the calculation of the index. This profile is usually based on the geographic extent of your customers.

Folder
TargetProfile

The target profile that will be compared to the base profile. Typically, this is based on your customers and is generated using the Segmentation Profile tools.

Folder
SegmentMethod

Select the method to determine how your segments will be assigned to the Core and Developmental categories.

  • Use Threshold ValuesThis option allows Business Analyst to define how your Core and Developmental segments are assigned based on the thresholds set here.
  • Use Target GroupThis option allows you to predefine what segments are classified as either Core or Developmental. To use this option, you must first create custom target groups with these assignments.
String
OutputDirectoryParameterName

The output directory that will contain the report.

Folder
IndexThreshold
(дополнительно)

The value used to determine the threshold index of your analysis.

Double
PenetrationThreshold
(дополнительно)

Defines the percentage of customers that meets or exceeds the percent composition threshold.

Double
TargetGroup
(дополнительно)

The predefined Target Group that contains your Core and Developmental segments.

String
CoreTarget
(дополнительно)

The Core Target group. Core targets should be defined as the segments that make up a good percentage of your customer base. To use this option, you must first create custom target groups with these assignments.

String
DevelopmentalTarget
(дополнительно)

The Developmental Target group. Developmental targets should be defined as the segments that make up a good percentage of your customer base but don't index as well as your Core segments. To use this option, you must first create custom target groups with these assignments.

String
TitleParameterName
(дополнительно)

Title for the report.

String
ReportFormats
(дополнительно)

Select the desired report output format

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

Пример кода

CoreDevelopmentalSegments Example (Stand-alone Script)
# Name: CoreDevelopmentalSegments.py
# Description: Creates a Core and Developmental report using a target profile based on customers from the San Francisco tutorial data and using the US total households as the base profile.
# Author: Esri

# Import system modules

import arview
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 Core and Developmental Segments Report tool
  BaseSeg = "C:/My Output Data/Projects/Test/Segmentation/Profiles/Profile_Base/Profile.xml"
  TargetSeg = "C:/My Output Data/Projects/Test/Segmentation/Profiles/Profile_Target/Profile.xml"
  OutPath = "C:/temp/Output_Segmentation"
 
# Create Core and Developmental Segments Report    
  arcpy.CoreDevelopmentalSegments_ba(BaseSeg, TargetSeg, "110", "4", 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