無効な値の検出

PostgreSQLデータベースで学ぶデータクレンジング

Darryl Reeves, Ph.D.

Assistant Professor, Long Island University - Brooklyn

無効なデータ値

  camis   |              name               | inspection_date | score |            inspection_type            | ... 
 ---------+---------------------------------+-----------------+-------+---------------------------------------+-----
 ...      | ...                             | ...             | ...   | ...                                   | ...
 41659848 | LA BRISA DEL CIBAO              | 01/30/2018      | 20    | Cycle Inspection / Initial Inspection | ...
 40961447 | MESON SEVILLA RESTAURANT        | 03/19/2019      | 50    | Cycle Inspection / Initial Inspection | ...
 50063071 | WA BAR                          | 05/23/2018      | 15    | Cycle Inspection / Initial Inspection | ...
 50034992 | EMPANADAS MONUMENTAL            | 06/21/2019      | 17    | Cycle Inspection / Re-inspection      | ...
 50095871 | ALPHONSO'S PIZZERIA & TRATTORIA | 01/16/2020      | 10    | Cycle Inspection / Initial Inspection | ...
 ...      | ...                             | ...             | ...   | ...                                   | ...
  camis   |             name             | inspection_date | score |                 inspection_type                 | ... 
 ---------+------------------------------+-----------------+-------+-------------------------------------------------+-----
 ...      | ...                          | ...             | ...   | ...                                             | ...
 41104041 | THE SPARROW TAVERN           | 09/17/2019      | 13    | Cycle Inspection / Initial Inspection           | ...
 50016937 | BURGER KING                  | 09/14/2018      | 12    | Cycle Inspection / Re-inspection                | ...
 50066469 | DARBAR'S CHICKEN & RIBS      | 08/07/2017      | 11    | Pre-permit (Operational) / Reopening Inspection | ...
 41195691 | F & J PINE RESTAURANT        | 05/02/2019      | 26    | Cycle Inspection / Initial Inspection           | ...
 50015706 | EL RINCONCITO DE LOS SABORES | 12/18/2019      | A     | Cycle Inspection / Initial Inspection           | ...
 ...      | ...                          | ...             | ...   | ...                                             | ...
PostgreSQLデータベースで学ぶデータクレンジング

パターンマッチで無効データを処理

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score NOT SIMILAR TO '\\d+';
PostgreSQLデータベースで学ぶデータクレンジング

パターンマッチで無効データを処理

  • このクエリは「非数字」しか制限しない
  • 値の桁数に制限なし
SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score NOT SIMILAR TO '\\d{1}' AND
  score NOT SIMILAR TO '\\d{2}' AND
  score NOT SIMILAR TO '\\d{3}';
PostgreSQLデータベースで学ぶデータクレンジング

型制約を使う

  • 列は整数を保持
  • 列では非整数を許可しないべき
ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;
  • SMALLINT: -32,768〜32,767
  • USING 句は既存値の変換を指定
PostgreSQLデータベースで学ぶデータクレンジング

正規表現の基礎: まとめ

メタ文字 用途 例 RE 例の一致
\d 数字 (0-9) に一致 \d\d\d '345'
? 直前文字の0回または1回 x\d? 'x5'
+ 直前文字の1回以上 \d+ '10'
* 任意文字に0回以上一致 \d* '3081'
[] 括弧内のいずれかに一致 [a-z] 'f'
PostgreSQLデータベースで学ぶデータクレンジング

型制約で範囲制約を有効化

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score < 0;
PostgreSQLデータベースで学ぶデータクレンジング

型制約で範囲制約を有効化

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score <= -1;
PostgreSQLデータベースで学ぶデータクレンジング

型制約で範囲制約を有効化

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score < 0 OR
  score > 100;
PostgreSQLデータベースで学ぶデータクレンジング

型制約で範囲制約を有効化

ALTER TABLE restaurant_inspection
ALTER COLUMN score TYPE SMALLINT USING score::smallint;

SELECT
  camis,
  name,
  inspection_date,
  score
FROM
  restaurant_inspection
WHERE
  score < 0 OR
  score >= 101;
PostgreSQLデータベースで学ぶデータクレンジング

BETWEEN 演算子

SELECT
  camis, name, inspection_date, score
FROM
  restaurant_inspection
WHERE
  score NOT BETWEEN 0 AND 100;
  camis   |          name           | inspection_date | score 
 ---------+-------------------------+-----------------+-------
 ...      | ...                     | ...             |   ...
 41702543 | TROPICAL GRILL          | 05/14/2018      |   109
 50074058 | PAD THAI                | 08/01/2018      |   101
 50085349 | DON CHILE MEXICAN GRILL | 12/04/2018      |   124
 50092932 | ENERGY JUICE BAR        | 06/24/2019      |   102
 41702543 | TROPICAL GRILL          | 05/14/2018      |   109
 50034653 | KAI FAN ASIAN CUISINE   | 12/06/2019      |    -1
 ...      | ...                     | ...             |   ...
PostgreSQLデータベースで学ぶデータクレンジング

Passons à la pratique !

PostgreSQLデータベースで学ぶデータクレンジング

Preparing Video For Download...