Skip to content

Commit 4224ea4

Browse files
committed
updated readme, added org_id to qa reports
1 parent 75e4299 commit 4224ea4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ Data used by script to produce processed files.
5252
- `maf6.csv`: percentage of client interaction points that are available online for services
5353
- `maf8.csv`: percentage of services which have used client feedback to improve services in the year prior to reporting
5454
- `service_fte_spending.csv`: FTEs and spending for programs delivering services.
55-
- `service_id_list.csv`: List of service IDs with reporting year and department.
5655
- `si_fy_interaction_sum.csv`: Sum of interactions by service, fiscal year, channel
5756
- `si_fy_service_count.csv`: Unique services count by fiscal year.
5857
- `si_oip.csv`: Online interaction points activation status by service and fiscal year.
@@ -72,6 +71,7 @@ Data used by script to produce processed files.
7271
- `ifoi_en.csv`: Exhaustive list of departmental info in english
7372
- `ifoi_fr.csv`: Exhaustive list of departmental info in french
7473
- `org_var.csv`: List of variant department names and their IFOI ID.
74+
- `sid_list.csv`: Unique list of service IDs with latest reporting year and department.
7575

7676
#### `src/`: Source Code for Script
7777
- `clean.py`: functions to clean and set up data
@@ -141,9 +141,7 @@ In addition to CSV files, this repository automatically generates a SQLite datab
141141
├── main.py
142142
├── notebooks
143143
│ ├── experiments.ipynb
144-
│ ├── gc-service-data-script.ipynb
145-
│ ├── qa-uris.ipynb
146-
│ └── qa.ipynb
144+
│ └── qa-uris.ipynb
147145
├── outputs
148146
│ ├── indicators
149147
│ │ ├── maf1.csv
@@ -152,7 +150,6 @@ In addition to CSV files, this repository automatically generates a SQLite datab
152150
│ │ ├── maf6.csv
153151
│ │ ├── maf8.csv
154152
│ │ ├── service_fte_spending.csv
155-
│ │ ├── service_id_list.csv
156153
│ │ ├── si_fy_interaction_sum.csv
157154
│ │ ├── si_fy_service_count.csv
158155
│ │ ├── si_oip.csv
@@ -172,7 +169,8 @@ In addition to CSV files, this repository automatically generates a SQLite datab
172169
│ ├── drf.csv
173170
│ ├── ifoi_en.csv
174171
│ ├── ifoi_fr.csv
175-
│ └── org_var.csv
172+
│ ├── org_var.csv
173+
│ └── sid_list.csv
176174
├── requirements.txt
177175
├── src
178176
│ ├── clean.py

src/qa.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ def qa_check(si, ss):
314314
# Preparing SI QA report
315315
si_report_cols = [
316316
'department_en',
317+
'org_id',
317318
'fiscal_yr',
318319
'service_id',
319320
'service_name_en',
@@ -350,6 +351,7 @@ def qa_check(si, ss):
350351
# Preparing SS QA report
351352
ss_report_cols = [
352353
'department_en',
354+
'org_id',
353355
'fiscal_yr',
354356
'service_id',
355357
'service_name_en',

0 commit comments

Comments
 (0)