Game Plan Chart (Business Analyst)

许可等级:BasicStandardAdvanced

摘要

Divides segments into four quadrants based on percent composition and index. Use this chart to identify core, developmental, and niche target groups.

Learn more about Game Plan Chart (Business Analyst) works

插图

Game Plan Chart

用法

语法

GamePlanChart_ba (BaseProfileParameterName, TargetProfileParameterName, IndexThreshold, PenetrationThreshold, TargetGroup, TitleParameterName, OutputDirectoryParameterName, {ReportFormats})
参数说明数据类型
BaseProfileParameterName

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

Folder
TargetProfileParameterName

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
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 Tapestry Segmentation target group that contains the segments to be used in the Game Plan Chart.

String
TitleParameterName

Title for the report.

String
OutputDirectoryParameterName

The output directory that will contain the report.

Folder
ReportFormats
(可选)

Select the desired report output format

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

代码实例

GamePlanChart Example (Stand-alone Script)
# Name: GamePlanChart.py
# Description: Creates a game plan chart for a profile of customers in San Francisco.
# 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 Game Plan Chart tool
  BaseSeg = "San Francisco Area Profile" 
  TargetSeg = "Profile_0" 
  OutPath = "C:/temp/Output_Segmentation"
 
# Create Game Plan Chart
  arcpy.GamePlanChart_ba(BaseSeg, TargetSeg, "Game_Plan_Map", 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