セグメンテーション コード テーブルからプロファイルを作成(Create Profile From Segmentation Coded Table) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

すでにセグメンテーション コードが付加されたレコード テーブルからプロファイルを作成します。

[セグメンテーション コード テーブルからプロファイルを作成(Create Profile From Segmentation Coded Table)](Business Analyst)の仕組みの詳細

使用法

構文

CreateSegProfileFromClusterCodedTable_ba (Dataset, ClusterCodeFieldName, ProfileFolder, {InputVolumeInfoFieldName}, {InputProfileComments})
パラメータ説明データ タイプ
Dataset

セグメンテーション コードを含むテーブル。

Table View
ClusterCodeFieldName

セグメンテーション コードを含む入力テーブル内のフィールド。

Field
ProfileFolder

出力プロファイルの作成されるフォルダ。フォルダ名は、Business Analyst で使用されるプロファイル名に対応しています。たとえば、フォルダ(C:\My Output Data\Projects\Default Project\Segmentation\Profiles\NewProfile)に作成したプロファイルは、Business Analyst では「NewProfile」として参照されます。

Folder
InputVolumeInfoFieldName
(オプション)

必要に応じてプロファイルを作成できる数値情報を含む [入力テーブル] のフィールド。たとえば、各顧客の売上を使用したプロファイルを作成できます。

Field
InputProfileComments
(オプション)

プロファイルに設定するオプションのコメント。これらのコメントには、作者、ソース、日付、年代などの情報を含めることができます。

String

コードのサンプル

CreateSegProfileFromSegmentationCodedTable(セグメンテーション コード テーブルからプロファイルを作成)の例(スタンドアロン スクリプト)
# Name: CreateSegProfileFromSegmentationCodedTable.py
# Description: Imports an existing Segmentation profile.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.AddToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
 
try:
# Acquire extension license 
  arcpy.CheckOutExtension("Business") 

# Define input and output parameters for the Create Profile From Segmentation Coded Table tool
  InputTable= "C:/temp/segTable.dbf"
  OutPath = "C:/My Output Data/Projects/Default Project/Segmentation/Profiles/NewProfile.xml"
  
# Imports an existing Segmentation profile.    
  arcpy.CreateSegProfileFromSegmentationCodedTable_ba(InputTable, "SegField", 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