Market Penetration (Business Analyst)
Zusammenfassung
Calculates the market penetration based on customer data within an area.
Verwendung
-
The spatial reference of the output feature class will be the same as the layer for calculating market penetration.
-
The layer for calculating market penetration should be a Business Analyst data or trade area layer.
-
The customer layer must be a point feature class.
-
In most cases, the customer layer input feature layer will be a Business Analyst customer layer.
-
When calculating market penetration, the final percentages are a direct result of the number of customers used in the tool. If you are comparing the penetration of your customers based on 1,000 customers in a large metropolitan area against the total population, the percentage of market penetration will be very low. These percentages are still a valuable tool if taken in consideration of the market you are attempting to penetrate.
-
You can use this tool in conjunction with trade areas to calculate the performance and market penetration of your store trade areas. In this case, you would set the Layer for Calculating Market Penetration parameter to your trade area layer.
-
You can optionally calculate market penetration based on a weight field in the customer layer instead of the customer counts. For example, you can calculate penetration based on total sales per household for each ZIP Code.
-
When using this tool within Python, the parameters MarketPenetrationTMCField (Total Market Counts Field), InputGeographyLevel (Geography Level), and MarketPenetrationTMCSummarization (Summarization Field) are not optional, but they can be omitted by placing # value for any of these parameters that you don't want to set.
Syntax
Parameter | Erläuterung | Datentyp |
MarketPenetrationLayer |
The input feature class used for calculating the values for the market penetration. | Feature Layer |
MarketPenetrationAreaID |
Unique ID field in the market penetration layer. | Field |
IN_MP_AREA_DESCR |
Field used to describe or name each feature in the market penetration layer. | Field |
CustomerLayer |
The input feature class (usually a customer layer) that will be used to determine the market penetration. | Feature Layer |
MarketPenetrationTMCType |
The method that will be used to calculate the market penetration values.
| String |
OutputFeatureClass |
The feature class that will contain the market penetration features. | Feature Class |
MarketPenetrationUseSelectedMPAreas (optional) |
The features used to calculate the market penetration.
| Boolean |
IN_MP_STORE_ID |
The unique identifier associated with each store. | Field |
UseSelectedCustomers (optional) |
The features of the customer layer used to calculate the market penetration counts.
| Boolean |
CustomerWeightField (optional) |
Uses a weight field in the customer layer instead of the customer counts to calculate the market penetration values. For example, you can calculate penetration based on total sales per household for each ZIP Code. | Field |
MarketPenetrationTMCField (optional) |
The attribute field containing the values for the market penetration calculation. | Field |
InputGeographyLevel (optional) |
The geography level that contains the market counts for the market penetration. | Feature Layer |
MarketPenetrationTMCSummarization (optional) |
The attribute that will be used to calculate the total market counts from the standard geography level. | Field |
IN_CL_STORE_ID (optional) |
Unique ID linking the customer file with the store file. | Field |
ReportTitle (optional) |
Title of the report. | String |
MarketPenetrationReportDirectory (optional) |
Report is created in this output folder. | Folder |
ReportFormats [ReportFormat,...,...] (optional) |
One or more formats to which the report will be output.
| String |
Codebeispiel
# Name: MarketPenetration.py # Description: Calculates how well customers in the San Francisco penetrate the households in that market. # Author: ESRI # Import system modules import arcview import arcpy arcpy.AddToolbox("C:\Program Files\ArcGIS\Desktop10.0\ArcToolbox\Toolboxes\Business Analyst Tools.tbx") try: # Acquire extension license arcpy.CheckOutExtension("Business") # Define input and output parameters for the Market Penetration tool MarketPenetration = "C:/Program Files/ArcGIS/Desktop10.0/Business Analyst/Data/BDS/esri_bg.bds" MarketId = "ID" MarketName = "NAME" CustInput = "C:/temp/sf_cust.shp" OutPath = "C:/temp/Marketpenetration.shp" MarketCounts = "TOTHH_CY" # Create a Market Penetration output arcpy.MarketPenetration_ba(MarketPenetration, MarketId, MarketName, CustInput, "In the layer attribute table", MarketCounts, "#", "#", OutPath) # Release extension license arcpy.CheckInExtension("Business") except: print arcpy.GetMessages(2)