ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • 帮助
  • Sign Out
ArcGIS Desktop

ArcGIS Online

专为贵组织打造的制图平台

ArcGIS Desktop

全面的专业性 GIS

ArcGIS Enterprise

面向企业的 GIS

ArcGIS Developers

用于构建位置感知应用程序的工具

ArcGIS Solutions

适用于行业的免费模板地图和应用程序

ArcGIS Marketplace

获取适用于组织的应用程序和数据

  • 文档
  • 支持
Esri
  • 登录
user
  • 我的个人资料
  • 登出

ArcMap

  • 主页
  • 入门
  • 地图
  • 分析
  • 管理数据
  • 工具
  • 扩展模块

Customer Prospecting By Using PCA

获得 Business Analyst 许可后可用。

  • 描述
  • 使用方法
  • 语法
  • 代码示例
  • 环境
  • 许可信息

描述

Profiles demographic attributes of customer data based on a selected demographic or custom data layer using the Principal Component Analysis approach.

Learn more about how Customer Prospecting By Using PCA works

使用方法

  • It is recommended that the Boundary PCA Eigenvalue parameter value of 1 be left as the default based on the widely accepted Kaiser criterion.

  • When choosing the Number of Features to Rank, you can limit the number of features displayed in the output in the analysis. All the features are analyzed with this approach, but only the top N features will be displayed.

语法

arcpy.ba.PCACustomerProspecting(InputBoundaryLayer, InputGeographyLevel, OutputFeatureClass, DMQFile, FSRankFeatNum, {UserDefinedBoundVal})
参数说明数据类型
InputBoundaryLayer

The boundary layer that defines the extent of the data to be analyzed.

Feature Layer
InputGeographyLevel

The input feature class that contains the data to be used in the analysis.

Feature Layer
OutputFeatureClass

The output feature class that will contain the customer prospecting data. The output feature class will be ranked based on similarity to the master site.

Feature Class
DMQFile

The definition input file generated in Customer Prospecting (Business Analyst) that sets the parameters to filter the geography level.

File
FSRankFeatNum

Defines the number of features you can rank. For example, if you selected 10 for the number of features to rank, the top 10 features would be ranked, which may include your master site if it is included in your target layer.

Long
UserDefinedBoundVal
(可选)

The Eigenvalue to use. It is recommended that you use the default value of one.

Double

代码示例

PCACusomterProspecting example (stand-alone script)

# Name: PCACusomterProspecting.py
# Description: Creates a geographic output that ranks the top X geographies that match the inputted profile.
# Author: Esri

# Import system modules
import arcview
import arcpy

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

# Define the parameters for the Customer Prospecting using PCA tool
  InputBoundaryLayer = "C:/temp/Boundary.shp"
  InputGeographyLevel = "C:/ArcGIS/Business Analyst/US_2022/Data/Demographic Data/BlockGroups_bg.bds"
  OutputFeatureClass= "C:/temp/PCA_Demo_Prospect.shp"
  DMQFile= "C:/temp/DMQ_output.dmq"
  FSRankFeatNum = 6
 
# Create Customer Prospecting output file
  arcpy.PCACustomerProspecting_ba(InputBoundaryLayer, 
	InputGeographyLevel, 
	OutputFeatureClass, 
	DMQFile, 
	FSRankFeatNum)
 
# Release extension license 
arcpy.CheckInExtension("Business")

环境

此工具不使用任何地理处理环境。

许可信息

  • Basic: 需要 Business Analyst
  • Standard: 需要 Business Analyst
  • Advanced: 需要 Business Analyst

相关主题

  • An overview of the Business Analyst Analysis toolset

ArcGIS Desktop

  • 主页
  • 文档
  • 支持

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

关于 Esri

  • 关于我们
  • 招贤纳士
  • Esri 博客
  • 用户大会
  • 开发者峰会
Esri
分享您的想法。
Copyright © 2022 Esri. | 隐私政策 | 法律声明