From f6f66f351cc9cfb7ddfae1fd096f5795310dd654 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Mon, 18 May 2026 08:54:57 +0000 Subject: [PATCH 01/10] WHO Tuberculosis Rifampicin Resistant Data Import --- .../README.md | 54 ++ .../manifest.json | 26 + .../Tuberculosis_rr_mdr_tb_outcomes.csv | 500 ++++++++++++++++++ .../Tuberculosis_rr_mdr_tb_output.csv | 500 ++++++++++++++++++ .../Tuberculosis_rr_mdr_tb_output.tmcf | 8 + ...rculosis_rifampicin_resistant_metadata.csv | 14 + ...uberculosis_rifampicin_resistant_pvmap.csv | 9 + ...nload_tuberculosis_rifampicin_resistant.py | 66 +++ 8 files changed, 1177 insertions(+) create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/README.md create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/manifest.json create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.csv create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.tmcf create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_metadata.csv create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_pvmap.csv create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/README.md b/statvar_imports/tuberculosis_rifampicin_resistant/README.md new file mode 100644 index 0000000000..1c742a0100 --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/README.md @@ -0,0 +1,54 @@ +# WHO Tuberculosis: Tuberculosis: Treatment outcomes of people with RR/MDR-TB + +## Overview +This dataset provides the percentage of TB patients who started rifampicin-resistant TB treatment and whose treatment outcome was recorded as treatment success (cured or treatment completed), treatment failed, died, lost to follow-up, or not evaluated, within the reporting period. + +## Data Source + +**Source URL:** +https://data.who.int/indicators/i/39E4281/F1912F6 + +The data comes from the official WHO reporting database and includes comprehensive, country-level health metrics detailing annual Tuberculosis notifications and case classifications. + +## How To Download Input Data +To download the data, you'll need to run the provided download script `who_data_download_tuberculosis_rifampicin_resistant.py`. This script automatically queries the WHO API for the indicator, merges it with the WHO geographical master list to append standard `iso3` country codes, and saves the cleaned `Tuberculosis_rr_mdr_tb_outcomes.csv` file inside an "input_files" folder. + +type of place: Country. + +statvars: Health / Tuberculosis. + +years: 2010 to 2022 + +place_resolution: manually. + +release_frequency: P1Y + +## Processing Instructions +To process the WHO Tuberculosis data and generate statistical variables, use the following commands from your root `data` directory: + +**Download input file** +```bash +python3 statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py +``` + +**For Test Data Run** +```bash + python3 tools/statvar_importer/stat_var_processor.py \ + --input_data="statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv" \ + --pv_map="statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_pvmap.csv" \ + --output_path="statvar_imports/tuberculosis_rifampicin_resistant/output_files/tuberculosis_rifampicin_resistant" \ + --config_file="statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_metadata.csv" \ + --existing_statvar_mcf="gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" +``` + +**For Main data run** +```bash + python3 tools/statvar_importer/stat_var_processor.py \ + --input_data="statvar_imports/tuberculosis_rifampicin_resistant/input_files/Tuberculosis_rr_mdr_tb_outcomes.csv" \ + --pv_map="statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_pvmap.csv" \ + --output_path="statvar_imports/tuberculosis_rifampicin_resistant/output_files/tuberculosis_rifampicin_resistant" \ + --config_file="statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_metadata.csv" \ + --existing_statvar_mcf="gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" +``` + +#### Refresh type: Fully Autorefresh \ No newline at end of file diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json new file mode 100644 index 0000000000..6d22e7efda --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json @@ -0,0 +1,26 @@ +{ + "import_specifications": [ + { + "import_name": "WHO_TuberculosisTreatmentOutcomes_RR_MDR_TB", + "curator_emails": [ + "support@datacommons.org" + ], + "provenance_url": "", + "provenance_description": "Treatment outcomes among those who started rifampicin-resistant TB treatment during a specified reporting period.", + "scripts": [ + "who_data_download_tuberculosis_rifampicin_resistant.py", + "../../../tools/statvar_importer/stat_var_processor.py --input_data=input_files/Tuberculosis_rr_mdr_tb_outcomes.csv --pv_map=tuberculosis_rr_mdr_tb_outcomes_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rr_mdr_tb_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" + ], + "import_inputs": [ + { + "template_mcf": "output/tuberculosis_rr_mdr_tb_output.tmcf", + "cleaned_csv": "output/tuberculosis_rr_mdr_tb_output.csv" + } + ], + "source_files": [ + "input_files/Tuberculosis_rr_mdr_tb_outcomes.csv" + ], + "cron_schedule": "0 10 10,21 * *" + } + ] +} \ No newline at end of file diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv new file mode 100644 index 0000000000..0edca6e2b6 --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv @@ -0,0 +1,500 @@ +IND_ID,INDICATOR_NAME,YEAR,COUNTRY,iso3,DISAGGR_1,VALUE +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Afghanistan,AFG,Successfully treated,66.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Afghanistan,AFG,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Afghanistan,AFG,Died,9.52380952380952 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Afghanistan,AFG,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Afghanistan,AFG,Not evaluated,23.8095238095238 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Afghanistan,AFG,Successfully treated,71.0526315789474 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Afghanistan,AFG,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Afghanistan,AFG,Died,15.7894736842105 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Afghanistan,AFG,Lost to follow-up,7.89473684210526 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Afghanistan,AFG,Not evaluated,5.26315789473684 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Afghanistan,AFG,Successfully treated,63.0434782608696 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Afghanistan,AFG,Treatment failed,2.17391304347826 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Afghanistan,AFG,Died,13.0434782608696 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Afghanistan,AFG,Lost to follow-up,19.5652173913043 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Afghanistan,AFG,Not evaluated,2.17391304347826 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Afghanistan,AFG,Successfully treated,65.1162790697675 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Afghanistan,AFG,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Afghanistan,AFG,Died,11.6279069767442 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Afghanistan,AFG,Lost to follow-up,23.2558139534884 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Afghanistan,AFG,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Afghanistan,AFG,Successfully treated,63.855421686747 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Afghanistan,AFG,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Afghanistan,AFG,Died,16.8674698795181 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Afghanistan,AFG,Lost to follow-up,19.2771084337349 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Afghanistan,AFG,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Afghanistan,AFG,Successfully treated,62.0915032679739 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Afghanistan,AFG,Treatment failed,2.61437908496732 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Afghanistan,AFG,Died,13.7254901960784 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Afghanistan,AFG,Lost to follow-up,20.9150326797386 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Afghanistan,AFG,Not evaluated,0.65359477124183 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Afghanistan,AFG,Successfully treated,63.9175257731959 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Afghanistan,AFG,Treatment failed,1.03092783505155 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Afghanistan,AFG,Died,12.3711340206186 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Afghanistan,AFG,Lost to follow-up,22.1649484536082 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Afghanistan,AFG,Not evaluated,0.515463917525773 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Afghanistan,AFG,Successfully treated,68.8073394495413 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Afghanistan,AFG,Treatment failed,2.75229357798165 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Afghanistan,AFG,Died,10.0917431192661 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Afghanistan,AFG,Lost to follow-up,16.8195718654434 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Afghanistan,AFG,Not evaluated,1.52905198776758 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Afghanistan,AFG,Successfully treated,71.2121212121212 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Afghanistan,AFG,Treatment failed,2.02020202020202 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Afghanistan,AFG,Died,8.58585858585859 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Afghanistan,AFG,Lost to follow-up,14.3939393939394 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Afghanistan,AFG,Not evaluated,3.78787878787879 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Afghanistan,AFG,Successfully treated,74.2857142857143 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Afghanistan,AFG,Treatment failed,0.952380952380952 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Afghanistan,AFG,Died,9.84126984126984 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Afghanistan,AFG,Lost to follow-up,13.015873015873 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Afghanistan,AFG,Not evaluated,1.9047619047619 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Afghanistan,AFG,Successfully treated,68.4478371501272 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Afghanistan,AFG,Treatment failed,2.79898218829517 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Afghanistan,AFG,Died,11.1959287531807 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Afghanistan,AFG,Lost to follow-up,16.793893129771 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Afghanistan,AFG,Not evaluated,0.763358778625954 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Afghanistan,AFG,Successfully treated,72.3154362416107 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Afghanistan,AFG,Treatment failed,2.18120805369128 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Afghanistan,AFG,Died,11.0738255033557 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Afghanistan,AFG,Lost to follow-up,13.4228187919463 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Afghanistan,AFG,Not evaluated,1.00671140939597 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Albania,ALB,Successfully treated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Albania,ALB,Treatment failed,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Albania,ALB,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Albania,ALB,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Albania,ALB,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Albania,ALB,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Albania,ALB,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Albania,ALB,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Albania,ALB,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Albania,ALB,Successfully treated,75 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Albania,ALB,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Albania,ALB,Died,25 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Albania,ALB,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Albania,ALB,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Albania,ALB,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Albania,ALB,Died,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Albania,ALB,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Albania,ALB,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Albania,ALB,Died,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Albania,ALB,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Albania,ALB,Successfully treated,60 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Albania,ALB,Died,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Albania,ALB,Not evaluated,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Albania,ALB,Successfully treated,66.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Albania,ALB,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Albania,ALB,Died,33.3333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Albania,ALB,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Albania,ALB,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,American Samoa,ASM,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,American Samoa,ASM,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,American Samoa,ASM,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,American Samoa,ASM,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,American Samoa,ASM,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,American Samoa,ASM,Lost to follow-up,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,American Samoa,ASM,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Angola,AGO,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Angola,AGO,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Angola,AGO,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Angola,AGO,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Angola,AGO,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Angola,AGO,Successfully treated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Angola,AGO,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Angola,AGO,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Angola,AGO,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Angola,AGO,Not evaluated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Angola,AGO,Successfully treated,77.3480662983426 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Angola,AGO,Treatment failed,0.552486187845304 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Angola,AGO,Died,8.28729281767956 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Angola,AGO,Lost to follow-up,13.8121546961326 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Angola,AGO,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Angola,AGO,Successfully treated,72.4279835390947 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Angola,AGO,Treatment failed,0.411522633744856 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Angola,AGO,Died,8.23045267489712 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Angola,AGO,Lost to follow-up,18.9300411522634 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Angola,AGO,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Angola,AGO,Successfully treated,72.2466960352423 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Central African Republic,CAF,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Central African Republic,CAF,Died,6.75675675675676 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Central African Republic,CAF,Lost to follow-up,12.1621621621622 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Central African Republic,CAF,Not evaluated,18.9189189189189 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Central African Republic,CAF,Successfully treated,80.4347826086957 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Central African Republic,CAF,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Central African Republic,CAF,Died,4.34782608695652 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Central African Republic,CAF,Lost to follow-up,9.78260869565217 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Central African Republic,CAF,Not evaluated,5.43478260869565 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Central African Republic,CAF,Successfully treated,69 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Central African Republic,CAF,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Central African Republic,CAF,Died,14 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Central African Republic,CAF,Lost to follow-up,17 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Central African Republic,CAF,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chad,TCD,Successfully treated,56 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chad,TCD,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chad,TCD,Died,8 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chad,TCD,Lost to follow-up,12 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chad,TCD,Not evaluated,24 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chad,TCD,Successfully treated,72.7272727272727 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chad,TCD,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chad,TCD,Died,9.09090909090909 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chad,TCD,Lost to follow-up,12.1212121212121 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chad,TCD,Not evaluated,6.06060606060606 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chad,TCD,Successfully treated,48.7804878048781 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chad,TCD,Treatment failed,2.4390243902439 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chad,TCD,Died,14.6341463414634 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chad,TCD,Lost to follow-up,9.75609756097561 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chad,TCD,Not evaluated,24.390243902439 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chad,TCD,Successfully treated,56.25 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chad,TCD,Treatment failed,2.08333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chad,TCD,Died,14.5833333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chad,TCD,Lost to follow-up,22.9166666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chad,TCD,Not evaluated,4.16666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chad,TCD,Successfully treated,66 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chad,TCD,Treatment failed,2 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chad,TCD,Died,22 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chad,TCD,Lost to follow-up,10 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chad,TCD,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chad,TCD,Successfully treated,26.7857142857143 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chad,TCD,Treatment failed,1.78571428571429 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chad,TCD,Died,10.7142857142857 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chad,TCD,Lost to follow-up,16.0714285714286 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chad,TCD,Not evaluated,44.6428571428571 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chad,TCD,Successfully treated,61.71875 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chad,TCD,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chad,TCD,Died,12.5 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chad,TCD,Lost to follow-up,24.21875 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chad,TCD,Not evaluated,1.5625 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chad,TCD,Successfully treated,61.71875 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chad,TCD,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chad,TCD,Died,12.5 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chad,TCD,Lost to follow-up,24.21875 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chad,TCD,Not evaluated,1.5625 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chad,TCD,Successfully treated,72.8070175438597 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chad,TCD,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chad,TCD,Died,11.4035087719298 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chad,TCD,Lost to follow-up,14.0350877192982 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chad,TCD,Not evaluated,1.75438596491228 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2002,Chile,CHL,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2002,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2002,Chile,CHL,Died,40 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2002,Chile,CHL,Lost to follow-up,10 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2002,Chile,CHL,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2004,Chile,CHL,Successfully treated,42.8571428571429 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2004,Chile,CHL,Died,28.5714285714286 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2004,Chile,CHL,Lost to follow-up,14.2857142857143 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2004,Chile,CHL,Not evaluated,14.2857142857143 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Chile,CHL,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Chile,CHL,Died,7.14285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Chile,CHL,Lost to follow-up,7.14285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2006,Chile,CHL,Not evaluated,35.7142857142857 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2007,Chile,CHL,Successfully treated,36.3636363636364 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2007,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2007,Chile,CHL,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2007,Chile,CHL,Lost to follow-up,18.1818181818182 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2007,Chile,CHL,Not evaluated,45.4545454545455 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,Chile,CHL,Successfully treated,16.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,Chile,CHL,Died,16.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,Chile,CHL,Lost to follow-up,33.3333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,Chile,CHL,Not evaluated,33.3333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Chile,CHL,Successfully treated,21.0526315789474 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Chile,CHL,Died,26.3157894736842 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Chile,CHL,Lost to follow-up,15.7894736842105 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Chile,CHL,Not evaluated,36.8421052631579 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Chile,CHL,Successfully treated,41.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Chile,CHL,Died,16.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Chile,CHL,Lost to follow-up,25 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Chile,CHL,Not evaluated,16.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Chile,CHL,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Chile,CHL,Died,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Chile,CHL,Lost to follow-up,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Chile,CHL,Not evaluated,10 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Chile,CHL,Successfully treated,55.5555555555556 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Chile,CHL,Died,22.2222222222222 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Chile,CHL,Lost to follow-up,11.1111111111111 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Chile,CHL,Not evaluated,11.1111111111111 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Chile,CHL,Successfully treated,21.4285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Chile,CHL,Treatment failed,7.14285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Chile,CHL,Died,28.5714285714286 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Chile,CHL,Lost to follow-up,42.8571428571429 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Chile,CHL,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chile,CHL,Successfully treated,30.7692307692308 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chile,CHL,Treatment failed,7.69230769230769 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chile,CHL,Died,30.7692307692308 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chile,CHL,Lost to follow-up,15.3846153846154 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Chile,CHL,Not evaluated,15.3846153846154 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chile,CHL,Successfully treated,36.8421052631579 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chile,CHL,Died,10.5263157894737 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chile,CHL,Lost to follow-up,26.3157894736842 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Chile,CHL,Not evaluated,26.3157894736842 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chile,CHL,Successfully treated,71.4285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chile,CHL,Died,7.14285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chile,CHL,Lost to follow-up,21.4285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Chile,CHL,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chile,CHL,Successfully treated,48 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chile,CHL,Died,12 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chile,CHL,Lost to follow-up,36 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Chile,CHL,Not evaluated,4 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chile,CHL,Successfully treated,46.031746031746 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chile,CHL,Treatment failed,1.58730158730159 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chile,CHL,Died,14.2857142857143 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chile,CHL,Lost to follow-up,34.9206349206349 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Chile,CHL,Not evaluated,3.17460317460317 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chile,CHL,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chile,CHL,Treatment failed,1.66666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chile,CHL,Died,13.3333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chile,CHL,Lost to follow-up,28.3333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Chile,CHL,Not evaluated,6.66666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chile,CHL,Successfully treated,59.4594594594595 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chile,CHL,Treatment failed,5.40540540540541 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chile,CHL,Died,13.5135135135135 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chile,CHL,Lost to follow-up,21.6216216216216 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Chile,CHL,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chile,CHL,Successfully treated,54.3859649122807 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chile,CHL,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chile,CHL,Died,19.2982456140351 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chile,CHL,Lost to follow-up,22.8070175438597 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Chile,CHL,Not evaluated,3.50877192982456 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chile,CHL,Successfully treated,63.6363636363636 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chile,CHL,Treatment failed,1.81818181818182 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chile,CHL,Died,14.5454545454545 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chile,CHL,Lost to follow-up,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Chile,CHL,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,China,CHN,Successfully treated,46.1538461538462 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,China,CHN,Treatment failed,38.4615384615385 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,China,CHN,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,China,CHN,Lost to follow-up,7.69230769230769 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2008,China,CHN,Not evaluated,7.69230769230769 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,China,CHN,Successfully treated,46.1538461538462 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,China,CHN,Treatment failed,24.6153846153846 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,China,CHN,Died,8.46153846153846 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,China,CHN,Lost to follow-up,7.69230769230769 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,China,CHN,Not evaluated,13.0769230769231 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,China,CHN,Successfully treated,41.8166939443535 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,China,CHN,Treatment failed,16.4484451718494 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,China,CHN,Died,7.28314238952537 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,China,CHN,Lost to follow-up,8.34697217675941 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,China,CHN,Not evaluated,26.1047463175123 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,China,CHN,Successfully treated,49.9065420560748 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,China,CHN,Treatment failed,20.4672897196262 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,China,CHN,Died,8.41121495327103 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,China,CHN,Lost to follow-up,8.22429906542056 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,China,CHN,Not evaluated,12.9906542056075 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,China,CHN,Successfully treated,42.2350472193074 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,China,CHN,Treatment failed,7.71248688352571 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,China,CHN,Died,5.40398740818468 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,China,CHN,Lost to follow-up,4.45960125918153 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,China,CHN,Not evaluated,40.1888772298006 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,China,CHN,Successfully treated,55.4945054945055 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,China,CHN,Treatment failed,8.97435897435897 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,China,CHN,Died,7.14285714285714 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,China,CHN,Lost to follow-up,7.37179487179487 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,China,CHN,Not evaluated,21.0164835164835 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,China,CHN,Successfully treated,40.9697821503865 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,China,CHN,Treatment failed,6.39494026704146 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,China,CHN,Died,5.86788475052706 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,China,CHN,Lost to follow-up,8.9599437807449 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,China,CHN,Not evaluated,37.8074490513001 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,China,CHN,Successfully treated,40.9945528026709 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,China,CHN,Treatment failed,9.7873835881216 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,China,CHN,Died,4.09418379898085 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,China,CHN,Lost to follow-up,13.1259884027412 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,China,CHN,Not evaluated,31.9978914074855 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,China,CHN,Successfully treated,52.2664199814986 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,China,CHN,Treatment failed,6.91951896392229 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,China,CHN,Died,5.64292321924144 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Eswatini,SWZ,Lost to follow-up,25.1428571428571 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Eswatini,SWZ,Successfully treated,60.1208459214502 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Eswatini,SWZ,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Eswatini,SWZ,Died,23.5649546827795 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Eswatini,SWZ,Lost to follow-up,16.3141993957704 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Eswatini,SWZ,Successfully treated,69.8198198198198 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Eswatini,SWZ,Treatment failed,1.8018018018018 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Eswatini,SWZ,Died,19.8198198198198 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Eswatini,SWZ,Lost to follow-up,8.55855855855856 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Eswatini,SWZ,Successfully treated,67.5409836065574 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Eswatini,SWZ,Treatment failed,1.9672131147541 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Eswatini,SWZ,Died,22.9508196721311 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Eswatini,SWZ,Lost to follow-up,4.26229508196721 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Eswatini,SWZ,Not evaluated,3.27868852459016 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Eswatini,SWZ,Successfully treated,71.864406779661 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Eswatini,SWZ,Treatment failed,4.74576271186441 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Eswatini,SWZ,Died,18.6440677966102 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Eswatini,SWZ,Lost to follow-up,2.71186440677966 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Eswatini,SWZ,Not evaluated,2.03389830508475 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Eswatini,SWZ,Successfully treated,73.4513274336283 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Eswatini,SWZ,Treatment failed,3.53982300884956 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Eswatini,SWZ,Died,19.4690265486726 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Eswatini,SWZ,Lost to follow-up,3.09734513274336 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Eswatini,SWZ,Not evaluated,0.442477876106195 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Eswatini,SWZ,Successfully treated,76.2237762237762 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Eswatini,SWZ,Treatment failed,2.0979020979021 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Eswatini,SWZ,Died,12.5874125874126 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Eswatini,SWZ,Lost to follow-up,2.7972027972028 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Eswatini,SWZ,Not evaluated,6.29370629370629 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Eswatini,SWZ,Successfully treated,81.6793893129771 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Eswatini,SWZ,Treatment failed,0.763358778625954 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Eswatini,SWZ,Died,15.2671755725191 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Eswatini,SWZ,Lost to follow-up,2.29007633587786 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Eswatini,SWZ,Successfully treated,77.6470588235294 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Eswatini,SWZ,Treatment failed,2.35294117647059 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Eswatini,SWZ,Died,11.7647058823529 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Eswatini,SWZ,Lost to follow-up,8.23529411764706 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Eswatini,SWZ,Successfully treated,84.4155844155844 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Eswatini,SWZ,Treatment failed,2.5974025974026 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Eswatini,SWZ,Died,7.79220779220779 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Eswatini,SWZ,Lost to follow-up,5.1948051948052 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Eswatini,SWZ,Successfully treated,85.7142857142857 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Eswatini,SWZ,Treatment failed,1.42857142857143 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Eswatini,SWZ,Died,8.57142857142857 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Eswatini,SWZ,Lost to follow-up,4.28571428571429 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Eswatini,SWZ,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Ethiopia,ETH,Successfully treated,90.4109589041096 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Ethiopia,ETH,Died,8.21917808219178 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Ethiopia,ETH,Lost to follow-up,1.36986301369863 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2009,Ethiopia,ETH,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Ethiopia,ETH,Successfully treated,84.2105263157895 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Ethiopia,ETH,Treatment failed,0.87719298245614 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Ethiopia,ETH,Died,13.1578947368421 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Ethiopia,ETH,Lost to follow-up,0.87719298245614 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2010,Ethiopia,ETH,Not evaluated,0.87719298245614 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Ethiopia,ETH,Successfully treated,72.4137931034483 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Ethiopia,ETH,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Ethiopia,ETH,Died,18.1034482758621 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Ethiopia,ETH,Lost to follow-up,7.75862068965517 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2011,Ethiopia,ETH,Not evaluated,1.72413793103448 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Ethiopia,ETH,Successfully treated,82.6568265682657 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Ethiopia,ETH,Treatment failed,3.690036900369 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Ethiopia,ETH,Died,11.8081180811808 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Ethiopia,ETH,Lost to follow-up,1.8450184501845 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2012,Ethiopia,ETH,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Ethiopia,ETH,Successfully treated,68.0100755667506 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Ethiopia,ETH,Treatment failed,2.51889168765743 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Ethiopia,ETH,Died,12.3425692695214 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Ethiopia,ETH,Lost to follow-up,8.06045340050378 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2013,Ethiopia,ETH,Not evaluated,9.06801007556675 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Ethiopia,ETH,Successfully treated,69.6588868940754 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Ethiopia,ETH,Treatment failed,0.538599640933573 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Ethiopia,ETH,Died,15.2603231597846 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Ethiopia,ETH,Lost to follow-up,8.79712746858169 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Ethiopia,ETH,Not evaluated,5.74506283662478 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Ethiopia,ETH,Successfully treated,75.1515151515152 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Ethiopia,ETH,Treatment failed,0.757575757575758 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Ethiopia,ETH,Died,11.969696969697 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Ethiopia,ETH,Lost to follow-up,10.4545454545455 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Ethiopia,ETH,Not evaluated,1.66666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Ethiopia,ETH,Successfully treated,72.4039829302987 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Ethiopia,ETH,Treatment failed,2.13371266002845 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Ethiopia,ETH,Died,12.0910384068279 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Ethiopia,ETH,Lost to follow-up,7.96586059743955 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Ethiopia,ETH,Not evaluated,5.40540540540541 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Ethiopia,ETH,Successfully treated,75.2824858757062 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Ethiopia,ETH,Treatment failed,1.69491525423729 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Ethiopia,ETH,Died,10.7344632768362 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Ethiopia,ETH,Lost to follow-up,7.20338983050848 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Ethiopia,ETH,Not evaluated,5.08474576271186 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Ethiopia,ETH,Successfully treated,70.1388888888889 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Ethiopia,ETH,Treatment failed,1.52777777777778 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Ethiopia,ETH,Died,10.4166666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Ethiopia,ETH,Lost to follow-up,6.80555555555556 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,Ethiopia,ETH,Not evaluated,11.1111111111111 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Ethiopia,ETH,Successfully treated,68.266253869969 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Ethiopia,ETH,Treatment failed,3.09597523219814 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Ethiopia,ETH,Died,8.97832817337461 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Ethiopia,ETH,Lost to follow-up,5.57275541795666 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Ethiopia,ETH,Not evaluated,14.0866873065015 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Ethiopia,ETH,Successfully treated,60.6164383561644 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Ethiopia,ETH,Treatment failed,1.1986301369863 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Ethiopia,ETH,Died,5.82191780821918 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Ethiopia,ETH,Lost to follow-up,2.73972602739726 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2020,Ethiopia,ETH,Not evaluated,29.6232876712329 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Ethiopia,ETH,Successfully treated,78.0155642023346 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Ethiopia,ETH,Treatment failed,2.91828793774319 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Ethiopia,ETH,Died,8.94941634241245 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Ethiopia,ETH,Lost to follow-up,4.08560311284047 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Ethiopia,ETH,Not evaluated,6.03112840466926 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Ethiopia,ETH,Successfully treated,81.9178082191781 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Ethiopia,ETH,Treatment failed,0.273972602739726 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Ethiopia,ETH,Died,6.84931506849315 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Ethiopia,ETH,Lost to follow-up,6.71232876712329 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Ethiopia,ETH,Not evaluated,4.24657534246575 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Fiji,FJI,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Fiji,FJI,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Fiji,FJI,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Fiji,FJI,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2014,Fiji,FJI,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Fiji,FJI,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Fiji,FJI,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Fiji,FJI,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Fiji,FJI,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Fiji,FJI,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Fiji,FJI,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Fiji,FJI,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Fiji,FJI,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Fiji,FJI,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Fiji,FJI,Successfully treated,100 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Fiji,FJI,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Fiji,FJI,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Fiji,FJI,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Fiji,FJI,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Fiji,FJI,Successfully treated,75 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Fiji,FJI,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Fiji,FJI,Died,25 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Fiji,FJI,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2021,Fiji,FJI,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Fiji,FJI,Successfully treated,60 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Fiji,FJI,Treatment failed,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Fiji,FJI,Died,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Fiji,FJI,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Fiji,FJI,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Finland,FIN,Successfully treated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Finland,FIN,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Finland,FIN,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Finland,FIN,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2015,Finland,FIN,Not evaluated,50 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Finland,FIN,Successfully treated,80 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Finland,FIN,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Finland,FIN,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Finland,FIN,Lost to follow-up,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2016,Finland,FIN,Not evaluated,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Finland,FIN,Successfully treated,40 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Finland,FIN,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Finland,FIN,Died,20 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Finland,FIN,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2017,Finland,FIN,Not evaluated,40 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Finland,FIN,Successfully treated,66.6666666666667 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Finland,FIN,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Finland,FIN,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Finland,FIN,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,Finland,FIN,Not evaluated,33.3333333333333 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Finland,FIN,Successfully treated,62.5 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Finland,FIN,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Finland,FIN,Died,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Finland,FIN,Lost to follow-up,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2022,Finland,FIN,Not evaluated,37.5 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,France,FRA,Successfully treated,4.05405405405405 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,France,FRA,Treatment failed,0 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,France,FRA,Died,1.35135135135135 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,France,FRA,Lost to follow-up,1.35135135135135 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2018,France,FRA,Not evaluated,93.2432432432432 +39E4281F1912F6,Treatment outcomes of people with RR/MDR-TB,2019,France,FRA,Successfully treated,8.13953488372093 diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.csv b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.csv new file mode 100644 index 0000000000..9ee1054e0e --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.csv @@ -0,0 +1,500 @@ +observationDate,observationAbout,value,variableMeasured +2011,country/AFG,66.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2011,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2011,country/AFG,9.52381,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2011,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2011,country/AFG,23.80952,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2012,country/AFG,71.05263,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2012,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2012,country/AFG,15.78947,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2012,country/AFG,7.89474,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2012,country/AFG,5.26316,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2013,country/AFG,63.04348,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2013,country/AFG,2.17391,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2013,country/AFG,13.04348,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2013,country/AFG,19.56522,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2013,country/AFG,2.17391,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/AFG,65.11628,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/AFG,11.62791,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/AFG,23.25581,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/AFG,63.85542,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/AFG,16.86747,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/AFG,19.27711,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/AFG,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/AFG,62.0915,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/AFG,2.61438,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/AFG,13.72549,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/AFG,20.91503,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/AFG,0.65359,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/AFG,63.91753,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/AFG,1.03093,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/AFG,12.37113,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/AFG,22.16495,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/AFG,0.51546,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/AFG,68.80734,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/AFG,2.75229,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/AFG,10.09174,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/AFG,16.81957,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/AFG,1.52905,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/AFG,71.21212,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/AFG,2.0202,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/AFG,8.58586,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/AFG,14.39394,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/AFG,3.78788,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/AFG,74.28571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/AFG,0.95238,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/AFG,9.84127,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/AFG,13.01587,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/AFG,1.90476,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/AFG,68.44784,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/AFG,2.79898,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/AFG,11.19593,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/AFG,16.79389,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/AFG,0.76336,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/AFG,72.31544,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/AFG,2.18121,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/AFG,11.07383,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/AFG,13.42282,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/AFG,1.00671,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2006,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2006,country/ALB,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2006,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2006,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2006,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/ALB,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/ALB,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/ALB,75,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/ALB,25,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/ALB,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/ALB,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/ALB,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/ALB,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/ALB,60,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/ALB,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/ALB,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/ALB,66.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/ALB,33.33333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/ALB,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/ASM,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/ASM,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/ASM,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/ASM,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/ASM,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/ASM,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/ASM,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2009,country/AGO,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2009,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2009,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2009,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2009,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2011,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2011,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2011,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2011,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2011,country/AGO,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2013,country/AGO,77.34807,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2013,country/AGO,0.55249,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2013,country/AGO,8.28729,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2013,country/AGO,13.81215,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2013,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/AGO,72.42798,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/AGO,0.41152,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/AGO,8.23045,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/AGO,18.93004,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/AGO,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/AGO,72.2467,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/CAF,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/CAF,6.75676,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/CAF,12.16216,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/CAF,18.91892,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/CAF,80.43478,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/CAF,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/CAF,4.34783,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/CAF,9.78261,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/CAF,5.43478,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/CAF,69,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/CAF,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/CAF,14,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/CAF,17,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/CAF,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/TCD,56,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/TCD,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/TCD,8,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/TCD,12,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/TCD,24,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/TCD,72.72727,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/TCD,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/TCD,9.09091,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/TCD,12.12121,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/TCD,6.06061,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/TCD,48.78049,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/TCD,2.43902,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/TCD,14.63415,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/TCD,9.7561,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/TCD,24.39024,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/TCD,56.25,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/TCD,2.08333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/TCD,14.58333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/TCD,22.91667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/TCD,4.16667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/TCD,66,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/TCD,2,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/TCD,22,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/TCD,10,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/TCD,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/TCD,26.78571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/TCD,1.78571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/TCD,10.71429,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/TCD,16.07143,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/TCD,44.64286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/TCD,61.71875,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/TCD,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/TCD,12.5,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/TCD,24.21875,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/TCD,1.5625,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/TCD,61.71875,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/TCD,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/TCD,12.5,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/TCD,24.21875,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/TCD,1.5625,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/TCD,72.80702,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/TCD,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/TCD,11.40351,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/TCD,14.03509,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/TCD,1.75439,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2002,country/CHL,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2002,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2002,country/CHL,40,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2002,country/CHL,10,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2002,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2004,country/CHL,42.85714,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2004,country/CHL,28.57143,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2004,country/CHL,14.28571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2004,country/CHL,14.28571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2006,country/CHL,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2006,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2006,country/CHL,7.14286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2006,country/CHL,7.14286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2006,country/CHL,35.71429,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2007,country/CHL,36.36364,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2007,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2007,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2007,country/CHL,18.18182,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2007,country/CHL,45.45455,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2008,country/CHL,16.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2008,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2008,country/CHL,16.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2008,country/CHL,33.33333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2008,country/CHL,33.33333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2009,country/CHL,21.05263,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2009,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2009,country/CHL,26.31579,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2009,country/CHL,15.78947,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2009,country/CHL,36.84211,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2010,country/CHL,41.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2010,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2010,country/CHL,16.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2010,country/CHL,25,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2010,country/CHL,16.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2011,country/CHL,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2011,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2011,country/CHL,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2011,country/CHL,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2011,country/CHL,10,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2012,country/CHL,55.55556,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2012,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2012,country/CHL,22.22222,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2012,country/CHL,11.11111,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2012,country/CHL,11.11111,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2013,country/CHL,21.42857,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2013,country/CHL,7.14286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2013,country/CHL,28.57143,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2013,country/CHL,42.85714,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2013,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/CHL,30.76923,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/CHL,7.69231,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/CHL,30.76923,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/CHL,15.38462,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/CHL,15.38462,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/CHL,36.84211,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/CHL,10.52632,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/CHL,26.31579,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/CHL,26.31579,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/CHL,71.42857,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/CHL,7.14286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/CHL,21.42857,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/CHL,48,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/CHL,12,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/CHL,36,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/CHL,4,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/CHL,46.03175,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/CHL,1.5873,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/CHL,14.28571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/CHL,34.92063,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/CHL,3.1746,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/CHL,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/CHL,1.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/CHL,13.33333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/CHL,28.33333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/CHL,6.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/CHL,59.45946,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/CHL,5.40541,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/CHL,13.51351,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/CHL,21.62162,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/CHL,54.38596,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/CHL,19.29825,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/CHL,22.80702,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/CHL,3.50877,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/CHL,63.63636,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/CHL,1.81818,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/CHL,14.54545,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/CHL,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/CHL,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2008,country/CHN,46.15385,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2008,country/CHN,38.46154,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2008,country/CHN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2008,country/CHN,7.69231,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2008,country/CHN,7.69231,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2009,country/CHN,46.15385,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2009,country/CHN,24.61538,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2009,country/CHN,8.46154,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2009,country/CHN,7.69231,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2009,country/CHN,13.07692,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2010,country/CHN,41.81669,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2010,country/CHN,16.44845,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2010,country/CHN,7.28314,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2010,country/CHN,8.34697,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2010,country/CHN,26.10475,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2011,country/CHN,49.90654,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2011,country/CHN,20.46729,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2011,country/CHN,8.41121,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2011,country/CHN,8.2243,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2011,country/CHN,12.99065,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2012,country/CHN,42.23505,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2012,country/CHN,7.71249,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2012,country/CHN,5.40399,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2012,country/CHN,4.4596,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2012,country/CHN,40.18888,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2013,country/CHN,55.49451,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2013,country/CHN,8.97436,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2013,country/CHN,7.14286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2013,country/CHN,7.37179,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2013,country/CHN,21.01648,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/CHN,40.96978,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/CHN,6.39494,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/CHN,5.86788,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/CHN,8.95994,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/CHN,37.80745,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/CHN,40.99455,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/CHN,9.78738,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/CHN,4.09418,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/CHN,13.12599,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/CHN,31.99789,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/CHN,52.26642,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/CHN,6.91952,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/CHN,5.64292,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2011,country/SWZ,25.14286,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2011,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2013,country/SWZ,60.12085,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2013,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2013,country/SWZ,23.56495,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2013,country/SWZ,16.3142,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2013,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/SWZ,69.81982,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/SWZ,1.8018,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/SWZ,19.81982,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/SWZ,8.55856,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/SWZ,67.54098,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/SWZ,1.96721,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/SWZ,22.95082,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/SWZ,4.2623,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/SWZ,3.27869,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/SWZ,71.86441,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/SWZ,4.74576,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/SWZ,18.64407,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/SWZ,2.71186,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/SWZ,2.0339,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/SWZ,73.45133,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/SWZ,3.53982,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/SWZ,19.46903,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/SWZ,3.09735,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/SWZ,0.44248,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/SWZ,76.22378,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/SWZ,2.0979,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/SWZ,12.58741,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/SWZ,2.7972,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/SWZ,6.29371,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/SWZ,81.67939,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/SWZ,0.76336,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/SWZ,15.26718,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/SWZ,2.29008,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/SWZ,77.64706,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/SWZ,2.35294,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/SWZ,11.76471,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/SWZ,8.23529,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/SWZ,84.41558,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/SWZ,2.5974,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/SWZ,7.79221,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/SWZ,5.19481,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/SWZ,85.71429,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/SWZ,1.42857,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/SWZ,8.57143,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/SWZ,4.28571,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/SWZ,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2009,country/ETH,90.41096,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2009,country/ETH,8.21918,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2009,country/ETH,1.36986,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2009,country/ETH,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2010,country/ETH,84.21053,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2010,country/ETH,0.87719,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2010,country/ETH,13.15789,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2010,country/ETH,0.87719,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2010,country/ETH,0.87719,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2011,country/ETH,72.41379,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2011,country/ETH,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2011,country/ETH,18.10345,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2011,country/ETH,7.75862,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2011,country/ETH,1.72414,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2012,country/ETH,82.65683,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2012,country/ETH,3.69004,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2012,country/ETH,11.80812,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2012,country/ETH,1.84502,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2012,country/ETH,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2013,country/ETH,68.01008,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2013,country/ETH,2.51889,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2013,country/ETH,12.34257,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2013,country/ETH,8.06045,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2013,country/ETH,9.06801,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/ETH,69.65889,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/ETH,0.5386,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/ETH,15.26032,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/ETH,8.79713,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/ETH,5.74506,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/ETH,75.15152,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/ETH,0.75758,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/ETH,11.9697,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/ETH,10.45455,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/ETH,1.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/ETH,72.40398,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/ETH,2.13371,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/ETH,12.09104,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/ETH,7.96586,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/ETH,5.40541,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/ETH,75.28249,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/ETH,1.69492,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/ETH,10.73446,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/ETH,7.20339,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/ETH,5.08475,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/ETH,70.13889,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/ETH,1.52778,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/ETH,10.41667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/ETH,6.80556,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/ETH,11.11111,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/ETH,68.26625,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/ETH,3.09598,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/ETH,8.97833,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/ETH,5.57276,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/ETH,14.08669,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2020,country/ETH,60.61644,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2020,country/ETH,1.19863,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2020,country/ETH,5.82192,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2020,country/ETH,2.73973,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2020,country/ETH,29.62329,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/ETH,78.01556,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/ETH,2.91829,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/ETH,8.94942,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/ETH,4.0856,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/ETH,6.03113,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/ETH,81.91781,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/ETH,0.27397,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/ETH,6.84932,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/ETH,6.71233,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/ETH,4.24658,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2014,country/FJI,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2014,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2014,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2014,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2014,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/FJI,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/FJI,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/FJI,100,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2021,country/FJI,75,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2021,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2021,country/FJI,25,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2021,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2021,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/FJI,60,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/FJI,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/FJI,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/FJI,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2015,country/FIN,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2015,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2015,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2015,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2015,country/FIN,50,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2016,country/FIN,80,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2016,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2016,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2016,country/FIN,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2016,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2017,country/FIN,40,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2017,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2017,country/FIN,20,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2017,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2017,country/FIN,40,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/FIN,66.66667,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2019,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2019,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2019,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2019,country/FIN,33.33333,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2022,country/FIN,62.5,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2022,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2022,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2022,country/FIN,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2022,country/FIN,37.5,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2018,country/FRA,4.05405,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +2018,country/FRA,0,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +2018,country/FRA,1.35135,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +2018,country/FRA,1.35135,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +2018,country/FRA,93.24324,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +2019,country/FRA,8.13953,dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.tmcf b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.tmcf new file mode 100644 index 0000000000..f3640586bf --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.tmcf @@ -0,0 +1,8 @@ +Node: E:TB_output->E0 +observationDate: C:TB_output->observationDate +observationAbout: C:TB_output->observationAbout +value: C:TB_output->value +variableMeasured: C:TB_output->variableMeasured +scalingFactor: 100 +typeOf: dcs:StatVarObservation +unit: dcs:Percent diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_metadata.csv b/statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_metadata.csv new file mode 100644 index 0000000000..b56a8d7547 --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_metadata.csv @@ -0,0 +1,14 @@ +config,value +provenance_url,https://data.who.int/indicators/i/39E4281/F1912F6 +output_columns,"observationDate,observationAbout,variableMeasured,value,unit,scalingFactor" +#places_within,country/POL +#place_types,"AdministrativeArea,AdministrativeArea1,AdministrativeArea2,State" +#debug,1 +#input_rows,100 +#word_delimiter,'' +#skip_rows,1 +populationType,Person +measuredProperty,count +header_rows,1 +mapped_columns,6 +dc_api_root,https://api.datacommons.org \ No newline at end of file diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_pvmap.csv b/statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_pvmap.csv new file mode 100644 index 0000000000..7a483d0c5e --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/tuberculosis_rifampicin_resistant_pvmap.csv @@ -0,0 +1,9 @@ +key,p1,v1,p2,v2,p3,v3,p4,v4,p5,v5,p6,v6,p7,v7 +iso3,observationAbout,country/{Data},,,,,, +YEAR,observationDate,{Data},,,,,, +DISAGGR_1:Died,treatmentOutcome,dcs:DiedDuringTreatment,,,,,, +DISAGGR_1:Lost to follow-up,treatmentOutcome,dcs:LostToFollowUp,,,,,, +DISAGGR_1:Not evaluated,treatmentOutcome,dcs:TreatmentNotEvaluated,,,,,, +DISAGGR_1:Successfully treated,treatmentOutcome,dcs:SuccessfullyTreated,,,,,, +DISAGGR_1:Treatment failed,treatmentOutcome,dcs:TreatmentFailed,,,,,, +VALUE,value,{Number},populationType,dcs:Person,measuredProperty,dcs:count,medicalCondition,dcs:MultidrugOrRifampicinResistantTuberculosis,unit,dcs:Percent,scalingFactor,100,, \ No newline at end of file diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py b/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py new file mode 100644 index 0000000000..35a040cb57 --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py @@ -0,0 +1,66 @@ +import os +import requests +import io +import pandas as pd +import logging + +# Configure logging +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') + +def download_tb_rr_mdr_data(): + # 1. Get the Clean Data from the API using the new Indicator ID + api_url = "https://xmart-api-public.who.int/DATA_/RELAY_TB_DATA" + params = { + "$filter": "IND_ID eq '39E4281F1912F6'", + "$select": "IND_ID,INDICATOR_NAME,YEAR,COUNTRY,DISAGGR_1,VALUE", + "$format": "csv" + } + + logging.info("1. Fetching clean percentage data from WHO API...") + api_response = requests.get(api_url, params=params) + + if api_response.status_code != 200: + logging.error(f"Failed to fetch API data. HTTP {api_response.status_code}") + return + + # Load the clean API data into a pandas table + api_df = pd.read_csv(io.StringIO(api_response.text)) + + # 2. Get ONLY the iso3 code from the master database + logging.info("2. Fetching country iso3 codes from WHO master database...") + master_url = "https://extranet.who.int/tme/generateCSV.asp?ds=notifications" + master_response = requests.get(master_url) + if master_response.status_code != 200: + logging.error(f"Failed to fetch master data. HTTP {master_response.status_code}") + return + + # We only pull the 'country' (for matching) and 'iso3' columns + geo_columns = ['country', 'iso3'] + master_df = pd.read_csv(io.StringIO(master_response.text), usecols=geo_columns).drop_duplicates() + + # 3. Merge the two datasets together based on the country name + logging.info("3. Merging data and formatting...") + # The API uses uppercase 'COUNTRY', the master uses lowercase 'country' + merged_df = pd.merge(api_df, master_df, left_on='COUNTRY', right_on='country', how='left') + + # Drop the duplicate lowercase 'country' column used for joining + merged_df = merged_df.drop(columns=['country']) + + # Reorder columns so the iso3 code sits right next to the Country name + final_columns = [ + 'IND_ID', 'INDICATOR_NAME', 'YEAR', 'COUNTRY', 'iso3','DISAGGR_1', 'VALUE' + ] + merged_df = merged_df[final_columns] + + # 4. Save to CSV in a new folder + output_dir = "input_files" + filename = os.path.join(output_dir, "Tuberculosis_rr_mdr_tb_outcomes.csv") + + os.makedirs(output_dir, exist_ok=True) + + # Save without the pandas index column + merged_df.to_csv(filename, index=False) + logging.info(f"Success! Data saved locally as '{filename}'") + +if __name__ == "__main__": + download_tb_rr_mdr_data() \ No newline at end of file From 61205f3f73f1a3acee9dbba2f9e90fafee7150d5 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Mon, 18 May 2026 09:05:36 +0000 Subject: [PATCH 02/10] WHO Tuberculosis Rifampicin Resistant Data Import --- .../who_data_download_tuberculosis_rifampicin_resistant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py b/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py index 35a040cb57..eedb85ea59 100644 --- a/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py +++ b/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py @@ -53,7 +53,7 @@ def download_tb_rr_mdr_data(): merged_df = merged_df[final_columns] # 4. Save to CSV in a new folder - output_dir = "input_files" + output_dir = "statvar_imports/tuberculosis_rifampicin_resistant/input_files" filename = os.path.join(output_dir, "Tuberculosis_rr_mdr_tb_outcomes.csv") os.makedirs(output_dir, exist_ok=True) From dbbc953794c9546de929c45aa4c17a23f319f1fb Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Mon, 18 May 2026 09:31:07 +0000 Subject: [PATCH 03/10] WHO Tuberculosis Rifampicin Resistant Data Import --- .../manifest.json | 2 +- ...uberculosis_rr_mdr_tb_output_stat_vars.mcf | 42 ++++++++++++++++++ ...osis_rr_mdr_tb_output_stat_vars_schema.mcf | 43 +++++++++++++++++++ ...nload_tuberculosis_rifampicin_resistant.py | 4 +- 4 files changed, 88 insertions(+), 3 deletions(-) create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf create mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json index 6d22e7efda..ce050ffb1c 100644 --- a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json +++ b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json @@ -9,7 +9,7 @@ "provenance_description": "Treatment outcomes among those who started rifampicin-resistant TB treatment during a specified reporting period.", "scripts": [ "who_data_download_tuberculosis_rifampicin_resistant.py", - "../../../tools/statvar_importer/stat_var_processor.py --input_data=input_files/Tuberculosis_rr_mdr_tb_outcomes.csv --pv_map=tuberculosis_rr_mdr_tb_outcomes_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rr_mdr_tb_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" + "../../../tools/statvar_importer/stat_var_processor.py --input_data=input_files/Tuberculosis_rr_mdr_tb_outcomes.csv --pv_map=tuberculosis_rifampicin_resistant_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rr_mdr_tb_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" ], "import_inputs": [ { diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf new file mode 100644 index 0000000000..6ae55d8c0f --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf @@ -0,0 +1,42 @@ +# Auto generated using command: "data/tools/statvar_importer/stat_var_processor.py --input_data=data/statvar_imports/TB For RR_MDR-TB/input_files/Tuberculosis_rr_mdr_tb_outcomes.csv --pv_map=data/statvar_imports/TB For RR_MDR-TB/tuberculosis_rifampicin_resistant_pv_mapping.csv --output_path=data/statvar_imports/TB For RR_MDR-TB/output/TB_output" on 2026-05-11 09:48:02.453639 + +Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment +typeOf: dcid:StatisticalVariable +populationType: dcid:Person +measuredProperty: dcid:count +statType: dcid:measuredValue +medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis +treatmentOutcome: dcid:DiedDuringTreatment + +Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp +typeOf: dcid:StatisticalVariable +populationType: dcid:Person +measuredProperty: dcid:count +statType: dcid:measuredValue +medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis +treatmentOutcome: dcid:LostToFollowUp + +Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated +typeOf: dcid:StatisticalVariable +populationType: dcid:Person +measuredProperty: dcid:count +statType: dcid:measuredValue +medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis +treatmentOutcome: dcid:SuccessfullyTreated + +Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed +typeOf: dcid:StatisticalVariable +populationType: dcid:Person +measuredProperty: dcid:count +statType: dcid:measuredValue +medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis +treatmentOutcome: dcid:TreatmentFailed + +Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated +typeOf: dcid:StatisticalVariable +populationType: dcid:Person +measuredProperty: dcid:count +statType: dcid:measuredValue +medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis +treatmentOutcome: dcid:TreatmentNotEvaluated + diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf new file mode 100644 index 0000000000..727785df91 --- /dev/null +++ b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf @@ -0,0 +1,43 @@ +Node: dcid:MultidrugOrRifampicinResistantTuberculosis +typeOf: dcid:Disease +name: "Multidrug Or Rifampicin Resistant Tuberculosis" +isProvisional: dcs:True + +Node: dcid:treatmentOutcome +typeOf: dcs:Property +name: "treatmentOutcome" +domainIncludes: dcid:Person +rangeIncludes: dcid:TreatmentOutcomeEnum +isProvisional: dcs:True + +Node: dcid:TreatmentOutcomeEnum +typeOf: schema:Class +subClassOf: dcs:Enumeration +name: "TreatmentOutcomeEnum" +isProvisional: dcs:True + +Node: dcid:SuccessfullyTreated +typeOf: dcid:TreatmentOutcomeEnum +name: "Successfully Treated" +isProvisional: dcs:True + +Node: dcid:TreatmentFailed +typeOf: dcid:TreatmentOutcomeEnum +name: "Treatment Failed" +isProvisional: dcs:True + +Node: dcid:DiedDuringTreatment +typeOf: dcid:TreatmentOutcomeEnum +name: "Died During Treatment" +isProvisional: dcs:True + +Node: dcid:LostToFollowUp +typeOf: dcid:TreatmentOutcomeEnum +name: "Lost To Follow Up" +isProvisional: dcs:True + +Node: dcid:TreatmentNotEvaluated +typeOf: dcid:TreatmentOutcomeEnum +name: "Treatment Not Evaluated" +isProvisional: dcs:True + diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py b/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py index eedb85ea59..1d2fb62b52 100644 --- a/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py +++ b/statvar_imports/tuberculosis_rifampicin_resistant/who_data_download_tuberculosis_rifampicin_resistant.py @@ -17,7 +17,7 @@ def download_tb_rr_mdr_data(): } logging.info("1. Fetching clean percentage data from WHO API...") - api_response = requests.get(api_url, params=params) + api_response = requests.get(api_url, params=params, timeout=30) if api_response.status_code != 200: logging.error(f"Failed to fetch API data. HTTP {api_response.status_code}") @@ -29,7 +29,7 @@ def download_tb_rr_mdr_data(): # 2. Get ONLY the iso3 code from the master database logging.info("2. Fetching country iso3 codes from WHO master database...") master_url = "https://extranet.who.int/tme/generateCSV.asp?ds=notifications" - master_response = requests.get(master_url) + master_response = requests.get(master_url, timeout=60) if master_response.status_code != 200: logging.error(f"Failed to fetch master data. HTTP {master_response.status_code}") return From 25f03f407ad86202c05b2f98cd4e2e93700ed980 Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 17:57:16 +0530 Subject: [PATCH 04/10] Delete statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf Deleting the .mcf file --- ...osis_rr_mdr_tb_output_stat_vars_schema.mcf | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf deleted file mode 100644 index 727785df91..0000000000 --- a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars_schema.mcf +++ /dev/null @@ -1,43 +0,0 @@ -Node: dcid:MultidrugOrRifampicinResistantTuberculosis -typeOf: dcid:Disease -name: "Multidrug Or Rifampicin Resistant Tuberculosis" -isProvisional: dcs:True - -Node: dcid:treatmentOutcome -typeOf: dcs:Property -name: "treatmentOutcome" -domainIncludes: dcid:Person -rangeIncludes: dcid:TreatmentOutcomeEnum -isProvisional: dcs:True - -Node: dcid:TreatmentOutcomeEnum -typeOf: schema:Class -subClassOf: dcs:Enumeration -name: "TreatmentOutcomeEnum" -isProvisional: dcs:True - -Node: dcid:SuccessfullyTreated -typeOf: dcid:TreatmentOutcomeEnum -name: "Successfully Treated" -isProvisional: dcs:True - -Node: dcid:TreatmentFailed -typeOf: dcid:TreatmentOutcomeEnum -name: "Treatment Failed" -isProvisional: dcs:True - -Node: dcid:DiedDuringTreatment -typeOf: dcid:TreatmentOutcomeEnum -name: "Died During Treatment" -isProvisional: dcs:True - -Node: dcid:LostToFollowUp -typeOf: dcid:TreatmentOutcomeEnum -name: "Lost To Follow Up" -isProvisional: dcs:True - -Node: dcid:TreatmentNotEvaluated -typeOf: dcid:TreatmentOutcomeEnum -name: "Treatment Not Evaluated" -isProvisional: dcs:True - From 711f99b05b7159e29f94684fd4c4e8c1509f0089 Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 17:57:28 +0530 Subject: [PATCH 05/10] Delete statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf Deleting the .mcf file --- ...uberculosis_rr_mdr_tb_output_stat_vars.mcf | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf deleted file mode 100644 index 6ae55d8c0f..0000000000 --- a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output_stat_vars.mcf +++ /dev/null @@ -1,42 +0,0 @@ -# Auto generated using command: "data/tools/statvar_importer/stat_var_processor.py --input_data=data/statvar_imports/TB For RR_MDR-TB/input_files/Tuberculosis_rr_mdr_tb_outcomes.csv --pv_map=data/statvar_imports/TB For RR_MDR-TB/tuberculosis_rifampicin_resistant_pv_mapping.csv --output_path=data/statvar_imports/TB For RR_MDR-TB/output/TB_output" on 2026-05-11 09:48:02.453639 - -Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_DiedDuringTreatment -typeOf: dcid:StatisticalVariable -populationType: dcid:Person -measuredProperty: dcid:count -statType: dcid:measuredValue -medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis -treatmentOutcome: dcid:DiedDuringTreatment - -Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_LostToFollowUp -typeOf: dcid:StatisticalVariable -populationType: dcid:Person -measuredProperty: dcid:count -statType: dcid:measuredValue -medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis -treatmentOutcome: dcid:LostToFollowUp - -Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_SuccessfullyTreated -typeOf: dcid:StatisticalVariable -populationType: dcid:Person -measuredProperty: dcid:count -statType: dcid:measuredValue -medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis -treatmentOutcome: dcid:SuccessfullyTreated - -Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentFailed -typeOf: dcid:StatisticalVariable -populationType: dcid:Person -measuredProperty: dcid:count -statType: dcid:measuredValue -medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis -treatmentOutcome: dcid:TreatmentFailed - -Node: dcid:Count_Person_ConditionMultidrugOrRifampicinResistantTuberculosis_TreatmentNotEvaluated -typeOf: dcid:StatisticalVariable -populationType: dcid:Person -measuredProperty: dcid:count -statType: dcid:measuredValue -medicalCondition: dcid:MultidrugOrRifampicinResistantTuberculosis -treatmentOutcome: dcid:TreatmentNotEvaluated - From e48170a13de261e65cdbe26efcae37d95d024199 Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 17:59:27 +0530 Subject: [PATCH 06/10] Changing the test data file name --- ...b_outcomes.csv => tuberculosis_rifampicin_resistant_input.csv} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename statvar_imports/tuberculosis_rifampicin_resistant/testdata/{Tuberculosis_rr_mdr_tb_outcomes.csv => tuberculosis_rifampicin_resistant_input.csv} (100%) diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/tuberculosis_rifampicin_resistant_input.csv similarity index 100% rename from statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_outcomes.csv rename to statvar_imports/tuberculosis_rifampicin_resistant/testdata/tuberculosis_rifampicin_resistant_input.csv From e803c4f976fbdf88acec0c82d9c171c46be2c9ef Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 18:02:16 +0530 Subject: [PATCH 07/10] Changing the test data file name --- ...tb_output.csv => tuberculosis_rifampicin_resistant_output.csv} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename statvar_imports/tuberculosis_rifampicin_resistant/testdata/{Tuberculosis_rr_mdr_tb_output.csv => tuberculosis_rifampicin_resistant_output.csv} (100%) diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.csv b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/tuberculosis_rifampicin_resistant_output.csv similarity index 100% rename from statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.csv rename to statvar_imports/tuberculosis_rifampicin_resistant/testdata/tuberculosis_rifampicin_resistant_output.csv From 2927229facd97a9aa71959c64f97ffd4965ccc4c Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 18:03:21 +0530 Subject: [PATCH 08/10] Changing the test data file name --- ..._output.tmcf => tuberculosis_rifampicin_resistant_output.tmcf} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename statvar_imports/tuberculosis_rifampicin_resistant/testdata/{Tuberculosis_rr_mdr_tb_output.tmcf => tuberculosis_rifampicin_resistant_output.tmcf} (100%) diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.tmcf b/statvar_imports/tuberculosis_rifampicin_resistant/testdata/tuberculosis_rifampicin_resistant_output.tmcf similarity index 100% rename from statvar_imports/tuberculosis_rifampicin_resistant/testdata/Tuberculosis_rr_mdr_tb_output.tmcf rename to statvar_imports/tuberculosis_rifampicin_resistant/testdata/tuberculosis_rifampicin_resistant_output.tmcf From 830c5ca43c48e032a06f1d1eadb741b40910a54d Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 18:13:48 +0530 Subject: [PATCH 09/10] Changing the manifest file --- .../tuberculosis_rifampicin_resistant/manifest.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json index ce050ffb1c..139de66619 100644 --- a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json +++ b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json @@ -1,7 +1,7 @@ { "import_specifications": [ { - "import_name": "WHO_TuberculosisTreatmentOutcomes_RR_MDR_TB", + "import_name": "WHO_TuberculosisRifampicinResistant", "curator_emails": [ "support@datacommons.org" ], @@ -9,18 +9,18 @@ "provenance_description": "Treatment outcomes among those who started rifampicin-resistant TB treatment during a specified reporting period.", "scripts": [ "who_data_download_tuberculosis_rifampicin_resistant.py", - "../../../tools/statvar_importer/stat_var_processor.py --input_data=input_files/Tuberculosis_rr_mdr_tb_outcomes.csv --pv_map=tuberculosis_rifampicin_resistant_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rr_mdr_tb_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" + "../../../tools/statvar_importer/stat_var_processor.py --input_data=test_data/tuberculosis_rifampicin_resistant_input.csv --pv_map=tuberculosis_rifampicin_resistant_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rifampicin_resistant_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" ], "import_inputs": [ { - "template_mcf": "output/tuberculosis_rr_mdr_tb_output.tmcf", - "cleaned_csv": "output/tuberculosis_rr_mdr_tb_output.csv" + "template_mcf": "output/tuberculosis_rifampicin_resistant_output.tmcf", + "cleaned_csv": "output/tuberculosis_rifampicin_resistant_output.csv" } ], "source_files": [ - "input_files/Tuberculosis_rr_mdr_tb_outcomes.csv" + "test_files/tuberculosis_rifampicin_resistant_input.csv" ], "cron_schedule": "0 10 10,21 * *" } ] -} \ No newline at end of file +} From 7ffb9aabbea6ebbe105316b3b353be43bb3b2982 Mon Sep 17 00:00:00 2001 From: pravnkumar-cloudsufi Date: Thu, 21 May 2026 18:18:28 +0530 Subject: [PATCH 10/10] Changing the manifest file --- .../tuberculosis_rifampicin_resistant/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json index 139de66619..f8a42e0d42 100644 --- a/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json +++ b/statvar_imports/tuberculosis_rifampicin_resistant/manifest.json @@ -5,11 +5,11 @@ "curator_emails": [ "support@datacommons.org" ], - "provenance_url": "", + "provenance_url": "https://data.who.int/indicators/i/39E4281/F1912F6", "provenance_description": "Treatment outcomes among those who started rifampicin-resistant TB treatment during a specified reporting period.", "scripts": [ "who_data_download_tuberculosis_rifampicin_resistant.py", - "../../../tools/statvar_importer/stat_var_processor.py --input_data=test_data/tuberculosis_rifampicin_resistant_input.csv --pv_map=tuberculosis_rifampicin_resistant_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rifampicin_resistant_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" + "../../../tools/statvar_importer/stat_var_processor.py --input_data=source_files/tuberculosis_rifampicin_resistant_input.csv --pv_map=tuberculosis_rifampicin_resistant_pvmap.csv --config_file=tuberculosis_rifampicin_resistant_metadata.csv --output_path=output/tuberculosis_rifampicin_resistant_output --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" ], "import_inputs": [ {