获得 Business Analyst 许可后可用。
描述
Generates a segmentation profile from a table.
使用方法
This tool requires segmentation data from a locally installed Business Analyst dataset.
Optimally, the input table should contain the Segment ID, Segment Name, Count, and Percent fields. If the table was built with volumetric data, the Total Volume and Average Volumetric fields should also be included.
提示:
Additional fields that exist in your input table should be removed before attempting to import.
Segment ID and Count fields are required in the input table.
The Segment ID field values in the input table must exist in the active Business Analyst dataset.
The input table must be in a tabular format supported by ArcGIS Pro. Supported formats include the following:
- Geodatabase
- Database
- Feature layer attribute table
- dBASE
- Microsoft Excel
- Text, ASCII, and comma-separated values files (.csv)
If the Segment Name field does not exist in the input table, it will be added during the import process. The new field will be populated with values based on correlation to the Segment ID field.
If only a subset of Segment ID values are included in the input table, the balance of the full distribution of segments will be added during processing. The Count and Percent fields for these additions will be zero filled.
语法
ImportSegmentationProfile(in_table, segmentation_base, out_profile, segment_id_field, count_field, {total_volume_field})
参数 | 说明 | 数据类型 |
in_table | The input table with segmentation information. | Table View |
segmentation_base | The segmentation base for the profile being created. Available options are provided by the segmentation dataset in use. | String |
out_profile | The name of the segmentation file to be created. | File |
segment_id_field | A string field that contains the segmentation code. | Field |
count_field | A numeric field that contains segment count information. | Field |
total_volume_field (可选) | A numeric field that contains volume information. | Field |
代码示例
The following Python window script demonstrates how to use the ImportSegmentationProfile function.
import arcpy
arcpy.ba.ImportSegmentationProfile(r"C:\temp\importprofile.csv", "Total Households", r"C:\output\CustomerProfile.sgprofile", "Seg_ID", "Count_int", "Total_Volume")
许可信息
- Basic: 需要 Business Analyst
- Standard: 需要 Business Analyst
- Advanced: 需要 Business Analyst