Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

10 Commits

Repository files navigation

HarassMap Exploration

This repository contains some of the code used to analyse the HarassMap data at D4C.

Inspiration

Queries

SELECTc.category, COUNT(c.case_id)
FROM harass_category c
GROUP BYc.categoryORDER BYCOUNT(c.case_id) DESC;
SELECT
SUBSTR(COALESCE(h.date_of_incident, h.date), 1, 4) AS year,
c.categoryAS category,
COUNT(h.case_id) AS cases FROM harass h LEFT JOIN harass_category c ONc.case_id=h.case_idGROUP BYc.category,
SUBSTR(COALESCE(h.date_of_incident, h.date), 1, 4);

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages