다음을 통해 공유


Scatter chart

Applies to: ✅Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

분산형 차트 시각적 개체에서 첫 번째 열은 x축이며 숫자 열이어야 합니다. 다른 숫자 열은 y축입니다. 분산형 플롯은 변수 간 관계를 관찰하는 데 사용됩니다. The scatter chart visual can also be used in the context of Geospatial visualizations.

Note

This visualization can only be used in the context of the render operator.

Syntax

T|renderscatterchart [with(propertyName=propertyValue [, ...])]

Learn more about syntax conventions.

Parameters

Name Type Required Description
T string ✔️ 입력 테이블 이름입니다.
propertyName, propertyValue string 키-값 속성 쌍의 쉼표로 구분된 목록입니다. See supported properties.

Supported properties

모든 속성은 선택 사항입니다.

PropertyName PropertyValue
accumulate 각 측정값의 값이 모든 선행 문서에 추가되는지 여부입니다. (true 또는 false)
kind 시각화 종류의 추가 경과입니다. 자세한 내용은 속성을 참조 kind 하세요.
legend 범례 표시 여부(visible 또는 hidden)입니다.
series 레코드가 속한 계열을 정의하는 결합된 레코드당 값이 있는 열의 쉼표로 구분된 목록입니다.
ymin Y축에 표시할 최소값입니다.
ymax Y축에 표시할 최대값입니다.
title 시각화의 제목(형식 string)입니다.
xaxis x축의 크기를 조정하는 방법입니다(linear 또는 log).
xcolumn x축에 사용되는 결과의 열입니다.
xtitle x축의 제목입니다(string 형식).
yaxis y축의 크기를 조정하는 방법입니다(linear 또는 log).
ycolumns x 열 값당 제공된 값으로 구성된 쉼표로 구분된 열 목록입니다.
ytitle y축의 제목입니다(string 형식).
PropertyName PropertyValue
kind 시각화 종류의 추가 경과입니다. 자세한 내용은 속성을 참조 kind 하세요.
series 레코드가 속한 계열을 정의하는 결합된 레코드당 값이 있는 열의 쉼표로 구분된 목록입니다.
title 시각화의 제목(형식 string)입니다.

kind 속성

이 시각화는 속성을 제공하여 kind 더욱 정교해질 수 있습니다. 이 속성의 지원되는 값은 다음과 같습니다.

kind Description
map 예상 열은 [경도, 위도] 또는 GeoJSON 지점입니다. 계열 열은 선택 사항입니다. For more information, see Geospatial visualizations.

Example

이 쿼리는 상태 모집단과 폭풍 이벤트로 인한 총 속성 손상 간의 상관 관계를 분석하는 데 도움이 되는 분산형 차트를 제공합니다.

The examples in this article use publicly available tables in the help cluster, such as the StormEvents table in the Samples database.

The examples in this article use publicly available tables, such as the Weather table in the Weather analytics sample gallery. 작업 영역의 테이블과 일치하도록 예제 쿼리에서 테이블 이름을 수정해야 할 수 있습니다.

StormEvents
| summarize sum(DamageProperty)by State
| lookup PopulationData on State
| project-away State
| render scatterchart with (xtitle="State population", title="Property damage by state", legend=hidden)

분산형 차트 시각화 출력의 스크린샷.