ゲーム プラン チャート(Game Plan Chart) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

構成比とインデックスに基づいてセグメントを 4 つの象限に分割します。このチャートを使用して、Core、Developmental、Niche の各ターゲット グループを特定します。

[ゲーム プラン チャート(Game Plan Chart)] ツールの仕組み(Business Analyst)の詳細

ゲーム プラン チャート(Game Plan Chart)

使用法

構文

GamePlanChart_ba (BaseProfileParameterName, TargetProfileParameterName, IndexThreshold, PenetrationThreshold, TargetGroup, TitleParameterName, OutputDirectoryParameterName, {ReportFormats})
パラメータ説明データ タイプ
BaseProfileParameterName

インデックスと占有率の計算に使用される参照プロファイル。通常、このプロファイルは顧客の地理的範囲に基づいています。

Folder
TargetProfileParameterName

参照プロファイルと比較されるターゲット プロファイル。通常、これは顧客に基づき、[セグメンテーション プロファイル] ツールを使用して生成されます。

Folder
IndexThreshold

解析のインデックスの閾値を決めるために使用される値。

Double
PenetrationThreshold

構成比の閾値を満たす顧客または越える顧客の比率を決定します。

Double
TargetGroup

ゲーム プラン チャートで使用されるセグメントを格納したタペストリ セグメンテーション ターゲット グループ。

String
TitleParameterName

レポートのタイトル。

String
OutputDirectoryParameterName

レポートが格納される出力ディレクトリ。

Folder
ReportFormats
(オプション)

目的のレポート出力形式を選択します。

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

コードのサンプル

GamePlanChart(ゲーム プラン チャート)ツールの例(スタンドアロン スクリプト)
# 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
5/20/2014