Global Antimicrobial Resistance And Use Surveillance System (GLASS) - Testing Coverage
@owid.testing_coverage
@owid.testing_coverage
CREATE TABLE owid_specimen (
"country" VARCHAR,
"year" INTEGER,
"total_bcis_with_ast" UINTEGER,
"infections_not_tested_for_susceptibility" UINTEGER
);
CREATE TABLE owid_testing_coverage (
"country" VARCHAR,
"year" INTEGER,
"ctas_with_reported_bcis_bloodstream" INTEGER,
"ctas_with_reported_bcis_gonorrhea" INTEGER,
"ctas_with_reported_bcis_stool" INTEGER,
"ctas_with_reported_bcis_urinary_tract" INTEGER,
"ctas_with_reported_bcis_with_ast_gt_80_bcis_bloodstream" INTEGER,
"ctas_with_reported_bcis_with_ast_gt_80_bcis_gonorrhea" INTEGER,
"ctas_with_reported_bcis_with_ast_gt_80_bcis_stool" INTEGER,
"ctas_with_reported_bcis_with_ast_gt_80_bcis_urinary_tract" INTEGER,
"total_bcis_bloodstream" UINTEGER,
"total_bcis_gonorrhea" INTEGER,
"total_bcis_stool" INTEGER,
"total_bcis_urinary_tract" UINTEGER,
"total_bcis_with_ast_bloodstream" UINTEGER,
"total_bcis_with_ast_gonorrhea" INTEGER,
"total_bcis_with_ast_stool" INTEGER,
"total_bcis_with_ast_urinary_tract" UINTEGER,
"share_ctas_with_reported_bcis_bloodstream" FLOAT,
"share_ctas_with_reported_bcis_gonorrhea" FLOAT,
"share_ctas_with_reported_bcis_stool" FLOAT,
"share_ctas_with_reported_bcis_urinary_tract" FLOAT,
"share_ctas_with_reported_bcis_with_ast_gt_80_bcis_bloodstream" FLOAT,
"share_ctas_with_reported_bcis_with_ast_gt_80_bcis_gonorrhea" FLOAT,
"share_ctas_with_reported_bcis_with_ast_gt_80_bcis_stool" FLOAT,
"share_ctas_with_reported_bcis_with_ast_gt_80_bcis_urinary_tract" FLOAT
);
Anyone who has the link will be able to view this.