ArcGIS Desktop

  • ドキュメント
  • サポート

  • My Profile
  • ヘルプ
  • Sign Out
ArcGIS Desktop

ArcGIS Online

組織のマッピング プラットフォーム

ArcGIS Desktop

完全なプロ仕様の GIS

ArcGIS Enterprise

エンタープライズ GIS

ArcGIS for Developers

位置情報利用アプリの開発ツール

ArcGIS Solutions

各種業界向けの無料のテンプレート マップおよびテンプレート アプリケーション

ArcGIS Marketplace

組織で使えるアプリとデータを取得

  • ドキュメント
  • サポート
Esri
  • サイン イン
user
  • マイ プロフィール
  • サイン アウト

ヘルプ

  • ホーム
  • はじめに
  • マップ
  • 解析
  • データ管理
  • ツール
  • その他...

Z スコア レンダリング処理を含むクラスター/外れ値分析 (Cluster/Outlier Analysis with Rendering)

  • サマリー
  • 図
  • 使用法
  • 構文
  • コードのサンプル
  • 環境
  • ライセンス情報

サマリー

一連の重み付きフィーチャを指定すると、Anselin Local Moran's I 統計を使用してホット スポット、コールド スポット、および空間外れ値を識別します。Z スコアの結果に応じて、コールド - ホット レンダリング処理を行います。

レガシー:

ArcGIS の新機能でスクリプトからの出力とモデル ツールのデフォルトのレンダリングへの関連付けが可能になるため、このツールは ArcGIS 10.1 より後は廃止になります。

図

Cluster and Outlier Analysis illustration

使用法

  • [Z スコア レンダリング処理を含むクラスター/外れ値分析(Cluster/Outlier Analysis with Rendering)] ツールは、[クラスター/外れ値分析(Cluster and Outlier Analysis(Anselin Local Morans I))] ツールと [Z スコア レンダリング処理(ZScore Rendering)] ツールをモデルで組み合わせたものです。ホット/コールド レンダリングがフィーチャの Z スコアに適用されると、[出力レイヤー ファイル] が自動的にコンテンツ ウィンドウに追加されます。

  • ArcGIS 9.3 より、デフォルトのレンダリングが [COTYPE] フィールドに適用されると、[クラスター/外れ値分析(Cluster and Outlier Analysis(Anselin Local Morans I))] ツールの出力が自動的にコンテンツ ウィンドウに追加されるようになり、統計的に有意なホット スポット、コールド スポット、および空間外れ値が表示されるようになりました。

構文

ClustersOutliersRendered_stats (Input_Feature_Class, Input_Field, Output_Layer_File, Output_Feature_Class)
パラメーター説明データ タイプ
Input_Feature_Class

クラスター分析が実行されるフィーチャクラス。

Feature Layer
Input_Field

評価されるフィールド。

Field
Output_Layer_File

レンダリング情報を格納する出力レイヤー ファイル。

Layer File
Output_Feature_Class

結果のフィールド、Z スコア、P 値、およびクラスター タイプの指定を取得するための出力フィーチャクラス。

Feature Class

コードのサンプル

Z スコア レンダリング処理を含むクラスター/外れ値分析 (Cluster/Outlier Analysis with Rendering) ツールの例 (Python ウィンドウ)

次の Python ウィンドウ スクリプトは、[Z スコア レンダリング処理を含むクラスター/外れ値分析 (Cluster/Outlier Analysis with Rendering)] ツールを使用する方法を示しています。

import arcpy
arcpy.env.workspace = "c:/data/911calls"
arcpy.ClustersOutliersRendered_stats("911Count.shp", "ICOUNT","911ClusterOutlier_rendered.lyr", "911ClusterOutlier.shp")
Z スコア レンダリング処理を含むクラスター/外れ値分析 (Cluster/Outlier Analysis with Rendering) ツールの例 (スタンドアロン Python スクリプト)

次のスタンドアロン Python スクリプトは、[Z スコア レンダリング処理を含むクラスター/外れ値分析 (Cluster/Outlier Analysis with Rendering)] ツールを使用する方法を示しています。

# Analyze the spatial distribution of 911 calls in a metropolitan area
# using the Cluster-Outlier Analysis with Rendering Tool (Anselin's Local Moran's I)
# Import system modules
import arcpy
# Set geoprocessor object property to overwrite outputs if they already exist
arcpy.gp.OverwriteOutput = True
# Local variables...
workspace = r"C:\Data\911Calls"
try:
    # Set the current workspace (to avoid having to specify the full path to the feature classes each time)
    arcpy.env.workspace = workspace
    # Copy the input feature class and integrate the points to snap
    # together at 500 feet
    # Process: Copy Features and Integrate
    cf = arcpy.CopyFeatures_management("911Calls.shp", "911Copied.shp",
                         "#", 0, 0, 0)
    integrate = arcpy.Integrate_management("911Copied.shp #", "500 Feet")
    # Use Collect Events to count the number of calls at each location
    # Process: Collect Events
    ce = arcpy.CollectEvents_stats("911Copied.shp", "911Count.shp", "Count", "#")
    # Cluster/Outlier Analysis of 911 Calls
    # Process: Local Moran's I
    clusters = arcpy.ClustersOutliersRendered_stats("911Count.shp", "ICOUNT", 
                        "911ClusterOutlier_rendered.lyr", "911ClusterOutlier.shp")
except:
    # If an error occurred when running the tool, print out the error message.
    print arcpy.GetMessages()

環境

  • 現在のワークスペース
  • テンポラリ ワークスペース
  • 出力データの座標系
    注意:

    フィーチャ ジオメトリが分析の前に [出力データの座標系] に投影されます。したがって、[距離バンドまたは距離の閾値] パラメータに入力された値は、[出力データの座標系] で指定されている値と一致する必要があります。数学的演算はすべて、[出力データの座標系] の空間参照に基づいて行われます。

  • 修飾フィールド名
  • 出力データに Z 値を含む
  • 出力データのデフォルト Z 値
  • 出力データに M 値を含む

ライセンス情報

  • ArcGIS Desktop Basic: はい
  • ArcGIS Desktop Standard: はい
  • ArcGIS Desktop Advanced: はい

関連トピック

  • レンダリング ツールセットの概要
  • クラスター/外れ値分析 (Cluster and Outlier Analysis (Anselin Local Moran's I))
  • ホット スポット分析 (Hot Spot Analysis (Getis-Ord Gi*))
  • 空間関係のモデリング

ArcGIS Desktop

  • ホーム
  • ドキュメント
  • サポート

ArcGIS プラットフォーム

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Esri について

  • 会社概要
  • 採用情報
  • Esri ブログ
  • ユーザ カンファレンス
  • デベロッパ サミット
Esri
ご意見・ご感想をお寄せください。
Copyright © 2018 Esri. | プライバシー | リーガル