テーブルをインポートしてプロファイルを作成(Create Profile by Import From Table) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

セグメンテーション情報を集計したテーブルからプロファイルを作成します。たとえば、このツールは各セグメントの顧客数を集計したレコード テーブルからプロファイルを作成します。

[テーブルをインポートしてプロファイルを作成(Create Profile by Import From Table)] の仕組みの詳細

使用法

構文

CreateProfileByImportFromTable_ba (Dataset, InputClusterCodeFieldName, InputCustomerCountFieldName, ProfileFolder, {InputVolumeInfoFieldName}, {InputProfileComments})
パラメータ説明データ タイプ
Dataset

セグメンテーション コードおよび属性を含むテーブル。

Table View
InputClusterCodeFieldName

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

Field
InputCustomerCountFieldName

各セグメントのレコード数を含む入力テーブル内のフィールド。たとえば、各セグメントの顧客数を設定できます。

Field
ProfileFolder

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

Folder
InputVolumeInfoFieldName
(オプション)

各セグメントに対して集計された数値情報を含む、入力テーブル内のオプションのフィールド。たとえば、各セグメントの総売上を設定できます。

Field
InputProfileComments
(オプション)

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

String

コードのサンプル

CreateProfileByImportFromTable(テーブルをインポートしてプロファイルを作成)の例(スタンドアロン スクリプト)
# Name: CreateProfleByImportFromTable.py
# Description: Creates a segmentation profile from a table that contains segmentation distributions.
# 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 by Import From Table tool
  InputTable= "C:/temp/Profile.dbf"
  OutPath = "C:/temp/NewProfile.xml"
 
# Create Profile by Import from Table
  arcpy.CreateProfileByImportFromTable_ba(InputTable, "CodeFld", "CountFLD", 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