The goal of this worksheet is to practice using window functions and CTEs on the treesdb database.
This worksheet is available as a google form https://forms.gle/13PkXnhLMaksRTMY8
You are a newly recruited analyst working in the Paris administration for parks. You are given this dataset of trees in Paris and vicinity.
Your job is to get insights on the data to facilitate tree management and improve the dataset
At this point you should have the V02 version of the trees database (treesdb_v02) loaded in PostgreSQL.
If that's the case connect to it (add -u postgres if needed)
psql -h localhost -d treesdb_v02
The database has 2 tables : trees and version. The trees table has an index id.
If you don't have the database loaded, or if in doubt, recreate the database treesdb_v02 and restore the data. The dataset file treesdb_v02.01.sql.backup is available in the GitHub.
You are not satisfied with the values in the stage column which are:
select count(*) as n, stage from trees group by stage order by n desc;
n | stage
-------+---------------------
79627 | Adulte
46742 | [null]
38915 | Jeune (arbre)
38765 | Jeune (arbre)Adulte
7290 | Mature
Too many NULL values and it's not clear what Jeune (arbre)Adulte really stands for. Is it a jeune (young) or an adulte tree?
So we want to replace the stage values by some new categorical column that we call maturity.
maturity.The maturity category for a given tree type (genre, species) and related max_height is given by
| ratio = height / max_height | maturity |
|---|---|
| ratio < 0.25 | young |
| 0.25 <= ratio < 0.5 | young adult |
| 0.5 <= ratio < 0.75 | adult |
| 0.75 <= ratio | mature |
These thresholds (0.25, 0.75) are totally arbitrary and may not reflect reality. Also we assume that tree growth is linear (although that's debatable)
You first need to calculate the max(height) per type of tree as a standalone column.
Keep in mind that
Write the query that returns
id, genre, species, height and max_heightgenre, species and by height and max_height decreasingHint: use partition by genre, species
The first rows of the result should look like
id | genre | species | height | max_height
-------+--------+----------+--------+------------
43053 | Abelia | triflora | 6 | 6
83127 | Abies | alba | 22 | 22
97141 | Abies | alba | 20 | 22
88940 | Abies | alba | 20 | 22
73055 | Abies | alba | 20 | 22
Solution
select t.id, t.genre, t.species, t.height,
max(height) over(partition by genre, species) as max_height
from trees t
where t.genre is not null
and t.species is not null
order by genre, species, height desc, max_height desc
limit 3;
maturity columnCreate a new text column called maturity with data type VARCHAR(50) in the trees table.
To add a column to an existing table the query follows
ALTER TABLE table_name ADD COLUMN column_name VARCHAR(50);
Solution
ALTER TABLE trees ADD COLUMN maturity VARCHAR(50);
Use the query where you calculated max_height for each tree genre and species, as a named subquery and update the maturity column with the calculated maturity values.
The rule is
| ratio | maturity |
|---|---|
| ratio < 0.25 | young |
| 0.25 <= ratio < 0.5 | young adult |
| 0.5 <= ratio < 0.75 | adult |
| 0.75 <= ratio | mature |
where ratio = height / max_height
Hint: use CASE WHEN in your query to map the ratio to a maturity category.
See documentation
Hint: You can use the query structure
WITH temp AS (
-- some SQL query
)
UPDATE table_name
SET column_name = CASE
WHEN (some cond 1) THEN 'label 1'
...
ELSE 'other label'
END
from temp
where temp.id = table_name.id;
Solution
WITH get_height AS (
select t.id, t.genre, t.species, t.height,
max(height) over(partition by genre, species) as max_height
from trees t
where t.genre is not null
and t.species is not null
order by genre, species
)
UPDATE trees t
SET maturity = CASE
WHEN gh.height < 0.25 * gh.max_height THEN 'young'
WHEN gh.height < 0.50 * gh.max_height THEN 'young adult'
WHEN gh.height < 0.75 * gh.max_height THEN 'adult'
ELSE 'mature'
END
FROM get_height gh
WHERE t.id = gh.id;
Although the original stage column is showing very poor data quality we hope to keep some consistency between the new maturity categories and the original stage categories.
Let's look at diverging values for stage = 'Jeune (arbre)' and / or maturity = 'young'.
Hopefully most trees in the young maturity category should also have 'Jeune (arbre)' for stage value.
The final goal in this part is to write the query that returns
The result of that query should be
genre | total_trees | mismatch_trees | mismatch_percentage
---------------+-------------+----------------+---------------------
Celtis | 3824 | 2965 | 77.54
Aesculus | 22360 | 17043 | 76.22
Platanus | 39729 | 30107 | 75.78
Pyrus | 3618 | 2333 | 64.48
Acer | 13198 | 5508 | 41.73
Prunus | 4907 | 1805 | 36.78
Quercus | 3512 | 1034 | 29.44
Fraxinus | 4206 | 930 | 22.11
Styphnolobium | 9908 | 1966 | 19.84
Tilia | 17543 | 2241 | 12.77
Let's build the query in steps
In all queries filter out null values for genre, maturity and stage.
genre_totals: 10 most common genre of trees (Platanus to Celtis)genre_mismatch : trees grouped by genre with either:
mismatch_percentage per genremismatch_percentage desc.The structure of the final query may look like
WITH genre_totals AS (
--- 1st query
),
genre_mismatch AS (
-- 2nd query
)
SELECT
-- some columns
FROM genre_totals gt
JOIN genre_mismatch gm ON gt.genre = gm.genre
solution
WITH genre_totals AS (
SELECT genre, COUNT(*) AS total_trees
FROM trees
WHERE genre IS NOT NULL
AND maturity IS NOT NULL
AND stage IS NOT NULL
GROUP BY genre
ORDER BY total_trees DESC
LIMIT 10
),
genre_mismatch AS (
SELECT genre, COUNT(*) AS mismatch_trees
FROM trees
WHERE (stage = 'Jeune (arbre)' AND maturity != 'young')
OR (maturity = 'young' AND stage != 'Jeune (arbre)')
AND genre IS NOT NULL
AND maturity IS NOT NULL
AND stage IS NOT NULL
GROUP BY genre
)
SELECT
gt.genre,
gt.total_trees,
gm.mismatch_trees AS mismatch_trees,
-- ROUND(cast ((gm.mismatch_trees::float / gt.total_trees) * 100.0) as numeric, 2) AS mismatch_percentage
ROUND(CAST(
(gm.mismatch_trees::float / gt.total_trees) * 100.0 AS numeric), 2) AS mismatch_percentage
FROM genre_totals gt
JOIN genre_mismatch gm ON gt.genre = gm.genre
ORDER BY mismatch_percentage DESC;
The climate change office of the Mairie de Paris wants to find the tallest trees in Paris. Because large trees provide shelter from the heat during heat waves.
They ask you to provide the following list:
For each arrondissement, find the top 3 tallest trees. and for each tree include
The result of the query should look like:
id | arrondissement | height | max_height_in_arrdt | height_rank_in_arrdt | overall_height_rank
--------+-------------------+--------+---------------------+----------------------+---------------------
5103 | BOIS DE BOULOGNE | 45 | 45 | 1 | 29
165500 | BOIS DE BOULOGNE | 40 | 45 | 2 | 31
87670 | BOIS DE BOULOGNE | 36 | 45 | 3 | 34
93035 | BOIS DE VINCENNES | 120 | 120 | 1 | 8
100832 | BOIS DE VINCENNES | 35 | 120 | 2 | 35
15336 | BOIS DE VINCENNES | 35 | 120 | 2 | 35
8722 | BOIS DE VINCENNES | 35 | 120 | 2 | 35
149302 | BOIS DE VINCENNES | 35 | 120 | 2 | 35
58508 | BOIS DE VINCENNES | 33 | 120 | 3 | 37
136397 | HAUTS-DE-SEINE | 23 | 23 | 1 | 47
First write the query that calculates the max(height) and ranks over the height partitioned by arrondissement and over all the trees.
Use MAX() and DENSE_RANK() functions.
Then use that query as a named subquery and filter its results on height_rank_in_arrdt to get the 3 tallest trees in each arrondissement.
WITH ranked_trees AS (
SELECT
id,
arrondissement,
height,
MAX(height) OVER (
PARTITION BY arrondissement
ORDER BY height DESC
) AS max_height_in_arrdt,
DENSE_RANK() OVER (
PARTITION BY arrondissement
ORDER BY height DESC
) AS height_rank_in_arrdt,
DENSE_RANK() OVER (
ORDER BY height DESC
) AS overall_height_rank
FROM trees t
)
SELECT *
FROM ranked_trees
WHERE height_rank_in_arrdt <= 3
ORDER BY arrondissement, height_rank_in_arrdt limit 10;
We want to find crazy values for heights
We suppose that all trees of the same genre and species should have the same height range.
So we're going to order the trees by genre, species and height
Then using the LAG() function,
Note: This will only flag the smallest first outlier. In a second pass we can also flag similar trees which are higher than the 1st outlier (we won't do it)
Write the query that returns the average height per tree per genre and species (Not null)
solution
select AVG(height), genre, species
from trees
where genre is not null
and species is not null
group by genre, species
order by genre, species;
Now use the LAG() function over height with default value the avg_tree height per genre and species
You need to join the main query with the subquery so that you can use the columns from the subquery
The query structure follows
WITH avg_heights AS (
-- some sql
)
SELECT
-- some columns
-- LAG( ..., ah.aavg_height) OVER(...)
FROM trees t
JOIN avg_heights ah ON .... -- (genre and species)
-- filter on not null values for genre and species
-- order by
solution
WITH avg_heights AS (
SELECT
genre,
species,
AVG(height) AS avg_height
FROM trees
WHERE genre IS NOT NULL
AND species IS NOT NULL
GROUP BY genre, species
)
SELECT
t.id,
t.genre,
t.species,
t.height,
LAG(t.height, 1, ah.avg_height) OVER (PARTITION BY t.genre, t.species ORDER BY t.id) AS height_lag
FROM trees t
LEFT JOIN avg_heights ah
ON t.genre = ah.genre
AND t.species = ah.species
WHERE t.genre IS NOT NULL
AND t.species IS NOT NULL
ORDER BY t.genre, t.species, t.id;
Create a new column outlier as boolean default FALSE
alter table trees add column outlier boolean default FALSE;
write the query that sets the value of outlier
if
height> 2 *height_lagthenoutlieris True
Hint: re-use the previous query with the main SELECT as a named query and add an update statement
The query structure should now be like
WITH avg_heights AS (
-- some sql
),
lagged_heights AS (
-- main select from previous query
)
UPDATE trees
SET outlier = CASE
WHEN (some condition) THEN true
ELSE false
END
FROM lagged_heights
WHERE trees.id = lagged_heights.id;
solution
WITH avg_heights AS (
SELECT
genre,
species,
AVG(height) AS avg_height
FROM trees
WHERE genre IS NOT NULL
AND species IS NOT NULL
GROUP BY genre, species
),
lagged_heights AS (
SELECT
t.id,
t.genre,
t.species,
t.height,
LAG(t.height, 1, ah.avg_height) OVER (PARTITION BY t.genre, t.species ORDER BY t.id) AS height_lag
FROM trees t
LEFT JOIN avg_heights ah
ON t.genre = ah.genre
AND t.species = ah.species
WHERE t.genre IS NOT NULL
AND t.species IS NOT NULL
)
UPDATE trees
SET outlier = CASE
WHEN lagged_heights.height_lag / trees.height > 2 THEN true
ELSE false
END
FROM lagged_heights
WHERE trees.id = lagged_heights.id;