ラベル | 説明 | データ タイプ |
入力テーブル | 統計の計算に使用するフィールドを含む入力テーブル。 | Table View; Raster Layer |
出力テーブル | 計算された統計を格納する出力テーブル。 | Table |
統計フィールド (オプション) | 属性値を含み、特定の統計の計算に使用される数値フィールドを指定します。 複数の統計とフィールドの組み合わせを指定できます。 すべての計算から NULL 値が除外されます。 テキスト属性フィールドは、最初と最後の統計を使用して集計されます。 数値属性フィールドは、任意の統計を使用して集計されます。 使用できる統計タイプは次のとおりです。
| Value Table |
ケース フィールド (オプション) | 一意の属性値 (または、複数フィールドが指定された場合には属性値の組み合わせ) ごとに、統計を個別に計算するために使用される、入力のフィールド (1 つまたは複数)。 | Field |
連結区切り文字 (オプション) | [連結] オプションを [統計情報フィールド] パラメーターに使用した場合に、値の連結に使用する文字。 | String |
サマリー
テーブル内のフィールドの統計サマリーを求めます。
使用法
[出力テーブル] の値は、統計演算の結果を含むフィールドで構成されます。
このツールで実行できる統計演算は、合計、平均、最大、最小、範囲、標準偏差、データ数、最初のレコード、最後のレコード、中央値、分散、および個別値です。
統計の種類ごとに、次の命名規則を使用してフィールドが作成されます。SUM_<field>、MEAN_<field>、MIN_<field>、MAX_<field>、RANGE_<field>、STD_<field>、COUNT_<field>、FIRST_<field>、LAST_<field>、MEDIAN_<field>、VARIANCE_<field>、UNIQUE_<field>、CONCATENATE_<field> (<field> は統計量を計算する入力フィールドの名前)。 出力テーブルが dBASE である場合、フィールド名は 10 文字に切詰められます。
[ケース フィールド] パラメーターの値が指定されている場合、統計値は一意の属性情報ごとに個別に計算され、[ケース フィールド] の値ごとに 1 つのレコードが示されます。 [ケース フィールド] パラメーターの値が指定されない場合は、[出力テーブル] パラメーターの値にはレコードが 1 つだけ含まれます。
すべての統計計算から NULL 値が除外されます。 たとえば、10、5、および NULL 値の平均は 7.5 です ((10+5)/2)。
レイヤーを使用する場合、統計の計算には現在選択されているフィーチャだけが使用されます。
パラメーター
arcpy.analysis.Statistics(in_table, out_table, {statistics_fields}, {case_field}, {concatenation_separator})
名前 | 説明 | データ タイプ |
in_table | 統計の計算に使用するフィールドを含む入力テーブル。 | Table View; Raster Layer |
out_table | 計算された統計を格納する出力テーブル。 | Table |
statistics_fields [[field, {statistic_type}],...] (オプション) | 属性値を含み、特定の統計の計算に使用される数値フィールドを指定します。 複数の統計とフィールドの組み合わせを指定できます。 すべての計算から NULL 値が除外されます。 テキスト属性フィールドは、最初と最後の統計を使用して集計されます。 数値属性フィールドは、任意の統計を使用して集計されます。 使用できる統計タイプは次のとおりです。
| Value Table |
case_field [case_field,...] (オプション) | 一意の属性値 (または、複数フィールドが指定された場合には属性値の組み合わせ) ごとに、統計を個別に計算するために使用される、入力のフィールド (1 つまたは複数)。 | Field |
concatenation_separator (オプション) | CONCATENATION オプションを statistics_fields パラメーターに使用した場合に、値の連結に使用する文字。 | String |
コードのサンプル
次の Python ウィンドウ スクリプトは、イミディエイト モードで Statistics 関数を使用する方法を示しています。
import arcpy
arcpy.env.workspace = "C:/data/Habitat_Analysis.gdb"
arcpy.analysis.Statistics("futrds", "C:/output/output.gdb/stats", [["Shape_Length", "SUM"]], "NM")
次のスタンドアロン スクリプトは、幹線道路から 150 フィート以内の領域の植生に関するデータを集計します。
# Description: Summarize the vegetation by area within 150 feet of major roads
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/data"
# Set local variables
inRoads = "majorrds.shp"
outBuffer = "C:/output/output.gdb/buffer_out"
bufferDistance = "250 feet"
inVegetation = "Habitat_Analysis.gdb/vegtype"
outClip = "C:/output/output.gdb/clip_out"
joinField = "HOLLAND95"
joinTable = "c:/data/vegtable.dbf"
joinedField = "HABITAT"
outStatsTable = "C:/output/output.gdb/stats_out"
statsFields = [["Shape_Area", "SUM"]]
# Run Buffer to get a buffer of major roads
arcpy.analysis.Buffer(inRoads, outBuffer, bufferDistance, dissolve_option="ALL")
# Run Clip using the buffer output to get a clipped feature class of
# vegetation
arcpy.analysis.Clip(inVegetation, outBuffer, outClip)
# Run JoinField to add the vegetation type
arcpy.management.JoinField(outClip, joinField, joinTable, joinField, joinedField)
# Run Statistics to get the area of each vegetation type within the
# clipped buffer.
arcpy.analysis.Statistics(outClip, outStatsTable, statsFields, joinedField)
次のスタンドアロン スクリプトは、データセットの属性フィールドをループ処理して、statistics_fields パラメーターを作成し、その結果、SUM 統計が各数値フィールドで計算されます。
# Description: Script that runs the Summary Statistics tool to calculate the
# Sum statistic for every numeric field based on a unique case
# field.
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/data/f.gdb"
# Set local variables
intable = "intable"
outtable = "sumstats"
casefield = "Name"
stats = []
# Loop through all fields in the Input Table
for field in arcpy.ListFields(intable):
# Find the fields that have a numeric type
if field.type in ("Double", "Integer", "Single", "SmallInteger"):
# Add the field name and Sum statistic type to the list of fields to
# summarize
stats.append([field.name, "Sum"])
# Correct formatting of stats [["Field1", "Sum"], ["Field2", "Sum"], ...]
# Run Statistics with the stats list
arcpy.analysis.Statistics(intable, outtable, stats, casefield)
次のスクリプトは、pandas DataFrame を使用して、Statistics 関数の結果表にアクセスし、これを表示します。
import arcpy
import pandas
import os
arcpy.env.overwriteOutput = True
in_table = r"d:\data\states.shp"
out_table = r"in_memory\stats_table"
stat_fields = [['POP1990', 'SUM'], ['POP1997', 'SUM']]
stats = arcpy.analysis.Statistics(in_table, out_table, stat_fields,
case_field='SUB_REGION')
# Get a list of field names to display
field_names = [i.name for i in arcpy.ListFields(out_table) if i.type != 'OID']
# Open a cursor to extract results from stats table
cursor = arcpy.da.SearchCursor(out_table, field_names)
# Create a pandas DataFrame to display results
df = pandas.DataFrame(data=[row for row in cursor],
columns=field_names)
print(df)
ライセンス情報
- Basic: Yes
- Standard: Yes
- Advanced: Yes