0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

DataExplorerの無料クラスタが出ました

Last updated at Posted at 2022-07-22

DataExplorerの無料クラスタが出ました。
いつものAzureポータルからではなく、専用のhttps://aka.ms/kustofreeから遷移して利用します。

以下の制限があります。その他の主な違いはこちらを参照してください。

  • Storage (uncompressed) ~100 GB
  • Databases Up to 10
  • Tables per database Up to 100
  • Columns per table Up to 200
  • Materialized views per database Up to 5

ちょっと遊んでみた

国土交通省が公開しているデータから東京都の公共施設のデータを取ってきました。

ここでアップロードします。

image.png

image.png

image.png

image.png

取り込んだデータには本物のDataExplorerと同じKustoを使ってクエリをなげることができました

image.png

国土交通省の不動産取引価格情報

こんどはこのデータを使ってみます

image.png

image.png

image.png

real_estate
| extend year = toint(replace_regex(dt, "年(.+?)$", ""))
| extend m2p = total_price / m2
| summarize avg(m2p) by addr, year
| render linechart 

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?