├── .gitignore ├── LICENSE ├── README.md ├── docs ├── artificial_data_admin_guide.md ├── artificial_data_user_notice.md └── build_docs │ ├── README.md │ ├── create_user_docs_template.py │ └── make_create_user_docs.py ├── environment.yml ├── notebooks ├── admin │ └── collab │ │ ├── artificial_hes │ │ ├── 1_scrape_metadata.py │ │ ├── 2_review_metadata.py │ │ ├── 3_release_metadata.py │ │ ├── 4_generate_artificial_data.py │ │ ├── 5_qa_artificial_data.py │ │ └── 6_release_artificial_data.py │ │ ├── example_dotenv.py │ │ ├── job_utils.py │ │ └── meta_review │ │ ├── assertions.py │ │ ├── assertions_tests.py │ │ ├── field_definitions.py │ │ ├── regex_patterns.py │ │ └── regex_patterns_tests.py └── user │ └── collab │ └── artificial_data_user_notice.py ├── projects ├── artificial_hes │ ├── cp_config.py │ ├── init_schemas.py │ ├── notebooks │ │ ├── code_promotion_paths.py │ │ └── common │ │ │ ├── coerce_schema.py │ │ │ ├── common_exports.py │ │ │ ├── spark_helpers.py │ │ │ ├── table_helpers.py │ │ │ └── widget_utils.py │ ├── run_notebooks.py │ ├── run_tests.py │ ├── schemas │ │ └── create_user_docs.py │ └── tests │ │ └── placeholder.py ├── artificial_hes_meta │ ├── cp_config.py │ ├── init_schemas.py │ ├── notebooks │ │ ├── code_promotion_paths.py │ │ └── common │ │ │ ├── coerce_schema.py │ │ │ ├── common_exports.py │ │ │ ├── spark_helpers.py │ │ │ ├── table_helpers.py │ │ │ └── widget_utils.py │ ├── run_notebooks.py │ ├── run_tests.py │ ├── schemas │ │ └── placeholder.py │ └── tests │ │ └── placeholder.py ├── iuod_artificial_data_admin │ ├── cp_config.py │ ├── init_schemas.py │ ├── notebooks │ │ ├── code_promotion_paths.py │ │ ├── code_promotion_versions.py │ │ └── widget_utils.py │ ├── run_notebooks.py │ ├── run_tests.py │ ├── schemas │ │ └── placeholder.py │ └── tests │ │ └── placeholder.py └── iuod_artificial_data_generator │ ├── cp_config.py │ ├── init_schemas.py │ ├── notebooks │ ├── admin │ │ └── driver.py │ ├── common │ │ ├── coerce_schema.py │ │ ├── common_exports.py │ │ ├── spark_helpers.py │ │ ├── table_helpers.py │ │ └── widget_utils.py │ ├── dataset_definitions │ │ ├── hes │ │ │ ├── hes_ae_schema.py │ │ │ ├── hes_ae_tables.py │ │ │ ├── hes_apc_schema.py │ │ │ ├── hes_apc_tables.py │ │ │ ├── hes_op_schema.py │ │ │ ├── hes_op_tables.py │ │ │ ├── hes_patient_table.py │ │ │ ├── hes_schemas.py │ │ │ └── hes_tables.py │ │ ├── relational.py │ │ └── relational_helpers.py │ ├── dependencies │ │ ├── random.py │ │ ├── rstr.py │ │ ├── spark_rstr.py │ │ └── tests │ │ │ ├── test_rstr.py │ │ │ └── test_spark_rstr.py │ ├── generator_pipelines │ │ ├── artificial_hes │ │ │ ├── coerce_hes_schema.py │ │ │ ├── demographic_field_generators.py │ │ │ ├── driver.py │ │ │ └── field_definitions │ │ │ │ ├── derivations │ │ │ │ ├── age_fields.py │ │ │ │ ├── coded_field_lists.py │ │ │ │ ├── coded_fields.py │ │ │ │ ├── derivations_helpers.py │ │ │ │ ├── sequential_field_lists.py │ │ │ │ └── sequential_fields.py │ │ │ │ ├── id_field_lists.py │ │ │ │ ├── id_field_regex_patterns.py │ │ │ │ └── id_fields.py │ │ ├── driver_imports.py │ │ └── driver_parameters.py │ ├── generator_stages │ │ ├── derivations.py │ │ ├── field_generators.py │ │ ├── relationship_generator.py │ │ └── sampling │ │ │ ├── cdf_sampling.py │ │ │ └── field_definitions.py │ ├── scraper_pipelines │ │ ├── driver_imports.py │ │ └── hes │ │ │ ├── constants │ │ │ ├── disclosure_control_parameters.py │ │ │ ├── excluded_fields.py │ │ │ └── type_overrides.py │ │ │ ├── demographic_aggregation_parameters.py │ │ │ ├── demographic_field_summarisers.py │ │ │ └── driver.py │ └── scraper_stages │ │ ├── aggregation │ │ ├── aggregation_parameters.py │ │ ├── field_summarisers.py │ │ ├── relationship_summariser.py │ │ └── summariser_factory.py │ │ ├── ingestion.py │ │ ├── preprocessing │ │ └── meta_type_classifier.py │ │ ├── schemas │ │ ├── long_schema.py │ │ └── meta_schema.py │ │ ├── scrape_metadata.py │ │ └── wide_to_long.py │ ├── run_notebooks.py │ ├── run_tests.py │ ├── schemas │ ├── create_meta_table.py │ └── uplifts │ │ ├── artificial_hes_schema_coercion.py │ │ ├── artificial_hes_schema_coercion_tests.py │ │ ├── open_data_metadata_uplift.py │ │ └── open_data_metadata_uplift_tests.py │ └── tests │ ├── admin_tests │ └── placeholder_tests.py │ ├── common_tests │ ├── run_tests.py │ └── test_spark_helpers.py │ ├── dataset_definitions_tests │ ├── placeholder_tests.py │ └── run_tests.py │ ├── generator_pipelines_tests │ ├── artificial_hes_tests │ │ ├── demographic_field_generators_tests.py │ │ ├── field_definitions_tests │ │ │ ├── derivations_tests │ │ │ │ ├── age_fields_tests.py │ │ │ │ ├── coded_fields_tests.py │ │ │ │ ├── derivations_helpers_tests.py │ │ │ │ └── sequential_fields_tests.py │ │ │ ├── id_fields_tests.py │ │ │ └── imports.py │ │ └── run_tests.py │ └── run_tests.py │ ├── generator_stages_tests │ ├── field_generators_tests.py │ ├── relationship_generator_tests.py │ ├── run_tests.py │ └── sampling_tests │ │ └── field_definitions_tests.py │ ├── scraper_pipelines_tests │ ├── hes │ │ └── demographic_field_summarisers_tests.py │ └── run_tests.py │ ├── scraper_stages_tests │ ├── aggregation_tests │ │ ├── field_summarisers_tests.py │ │ └── relationship_summariser_tests.py │ ├── preprocessing_tests │ │ └── test_meta_type_classifier.py │ └── run_tests.py │ └── test_helpers.py └── utils ├── export.ps1 ├── import.ps1 └── list_releases.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/README.md -------------------------------------------------------------------------------- /docs/artificial_data_admin_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/docs/artificial_data_admin_guide.md -------------------------------------------------------------------------------- /docs/artificial_data_user_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/docs/artificial_data_user_notice.md -------------------------------------------------------------------------------- /docs/build_docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/docs/build_docs/README.md -------------------------------------------------------------------------------- /docs/build_docs/create_user_docs_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/docs/build_docs/create_user_docs_template.py -------------------------------------------------------------------------------- /docs/build_docs/make_create_user_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/docs/build_docs/make_create_user_docs.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/admin/collab/artificial_hes/1_scrape_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/artificial_hes/1_scrape_metadata.py -------------------------------------------------------------------------------- /notebooks/admin/collab/artificial_hes/2_review_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/artificial_hes/2_review_metadata.py -------------------------------------------------------------------------------- /notebooks/admin/collab/artificial_hes/3_release_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/artificial_hes/3_release_metadata.py -------------------------------------------------------------------------------- /notebooks/admin/collab/artificial_hes/4_generate_artificial_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/artificial_hes/4_generate_artificial_data.py -------------------------------------------------------------------------------- /notebooks/admin/collab/artificial_hes/5_qa_artificial_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/artificial_hes/5_qa_artificial_data.py -------------------------------------------------------------------------------- /notebooks/admin/collab/artificial_hes/6_release_artificial_data.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /notebooks/admin/collab/example_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/example_dotenv.py -------------------------------------------------------------------------------- /notebooks/admin/collab/job_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/job_utils.py -------------------------------------------------------------------------------- /notebooks/admin/collab/meta_review/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/meta_review/assertions.py -------------------------------------------------------------------------------- /notebooks/admin/collab/meta_review/assertions_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/meta_review/assertions_tests.py -------------------------------------------------------------------------------- /notebooks/admin/collab/meta_review/field_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/meta_review/field_definitions.py -------------------------------------------------------------------------------- /notebooks/admin/collab/meta_review/regex_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/meta_review/regex_patterns.py -------------------------------------------------------------------------------- /notebooks/admin/collab/meta_review/regex_patterns_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/admin/collab/meta_review/regex_patterns_tests.py -------------------------------------------------------------------------------- /notebooks/user/collab/artificial_data_user_notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/notebooks/user/collab/artificial_data_user_notice.py -------------------------------------------------------------------------------- /projects/artificial_hes/cp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/cp_config.py -------------------------------------------------------------------------------- /projects/artificial_hes/init_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/init_schemas.py -------------------------------------------------------------------------------- /projects/artificial_hes/notebooks/code_promotion_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/notebooks/code_promotion_paths.py -------------------------------------------------------------------------------- /projects/artificial_hes/notebooks/common/coerce_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/notebooks/common/coerce_schema.py -------------------------------------------------------------------------------- /projects/artificial_hes/notebooks/common/common_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/notebooks/common/common_exports.py -------------------------------------------------------------------------------- /projects/artificial_hes/notebooks/common/spark_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/notebooks/common/spark_helpers.py -------------------------------------------------------------------------------- /projects/artificial_hes/notebooks/common/table_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/notebooks/common/table_helpers.py -------------------------------------------------------------------------------- /projects/artificial_hes/notebooks/common/widget_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/notebooks/common/widget_utils.py -------------------------------------------------------------------------------- /projects/artificial_hes/run_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/run_notebooks.py -------------------------------------------------------------------------------- /projects/artificial_hes/run_tests.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/artificial_hes/schemas/create_user_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes/schemas/create_user_docs.py -------------------------------------------------------------------------------- /projects/artificial_hes/tests/placeholder.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/artificial_hes_meta/cp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/cp_config.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/init_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/init_schemas.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/notebooks/code_promotion_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/notebooks/code_promotion_paths.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/notebooks/common/coerce_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/notebooks/common/coerce_schema.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/notebooks/common/common_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/notebooks/common/common_exports.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/notebooks/common/spark_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/notebooks/common/spark_helpers.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/notebooks/common/table_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/notebooks/common/table_helpers.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/notebooks/common/widget_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/notebooks/common/widget_utils.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/run_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/artificial_hes_meta/run_notebooks.py -------------------------------------------------------------------------------- /projects/artificial_hes_meta/run_tests.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/artificial_hes_meta/schemas/placeholder.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/artificial_hes_meta/tests/placeholder.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/cp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_admin/cp_config.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/init_schemas.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/notebooks/code_promotion_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_admin/notebooks/code_promotion_paths.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/notebooks/code_promotion_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_admin/notebooks/code_promotion_versions.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/notebooks/widget_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_admin/notebooks/widget_utils.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/run_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_admin/run_notebooks.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/run_tests.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/schemas/placeholder.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_admin/tests/placeholder.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/cp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/cp_config.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/init_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/init_schemas.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/admin/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/admin/driver.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/common/coerce_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/common/coerce_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/common/common_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/common/common_exports.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/common/spark_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/common/spark_helpers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/common/table_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/common/table_helpers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/common/widget_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/common/widget_utils.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_ae_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_ae_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_ae_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_ae_tables.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_apc_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_apc_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_apc_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_apc_tables.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_op_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_op_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_op_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_op_tables.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_patient_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_patient_table.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_schemas.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/hes/hes_tables.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/relational.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/relational.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dataset_definitions/relational_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dataset_definitions/relational_helpers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dependencies/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dependencies/random.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dependencies/rstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dependencies/rstr.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dependencies/spark_rstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dependencies/spark_rstr.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dependencies/tests/test_rstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dependencies/tests/test_rstr.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/dependencies/tests/test_spark_rstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/dependencies/tests/test_spark_rstr.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/coerce_hes_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/coerce_hes_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/demographic_field_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/demographic_field_generators.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/driver.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/age_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/age_fields.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/coded_field_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/coded_field_lists.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/coded_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/coded_fields.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/derivations_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/derivations_helpers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/sequential_field_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/sequential_field_lists.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/sequential_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/derivations/sequential_fields.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/id_field_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/id_field_lists.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/id_field_regex_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/id_field_regex_patterns.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/id_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/artificial_hes/field_definitions/id_fields.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/driver_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/driver_imports.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_pipelines/driver_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_pipelines/driver_parameters.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_stages/derivations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_stages/derivations.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_stages/field_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_stages/field_generators.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_stages/relationship_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_stages/relationship_generator.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_stages/sampling/cdf_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_stages/sampling/cdf_sampling.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/generator_stages/sampling/field_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/generator_stages/sampling/field_definitions.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/driver_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/driver_imports.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/constants/disclosure_control_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/constants/disclosure_control_parameters.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/constants/excluded_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/constants/excluded_fields.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/constants/type_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/constants/type_overrides.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/demographic_aggregation_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/demographic_aggregation_parameters.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/demographic_field_summarisers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/demographic_field_summarisers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_pipelines/hes/driver.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/aggregation_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/aggregation_parameters.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/field_summarisers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/field_summarisers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/relationship_summariser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/relationship_summariser.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/summariser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/aggregation/summariser_factory.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/ingestion.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/preprocessing/meta_type_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/preprocessing/meta_type_classifier.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/schemas/long_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/schemas/long_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/schemas/meta_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/schemas/meta_schema.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/scrape_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/scrape_metadata.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/notebooks/scraper_stages/wide_to_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/notebooks/scraper_stages/wide_to_long.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/run_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/run_notebooks.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/schemas/create_meta_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/schemas/create_meta_table.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/schemas/uplifts/artificial_hes_schema_coercion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/schemas/uplifts/artificial_hes_schema_coercion.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/schemas/uplifts/artificial_hes_schema_coercion_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/schemas/uplifts/artificial_hes_schema_coercion_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/schemas/uplifts/open_data_metadata_uplift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/schemas/uplifts/open_data_metadata_uplift.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/schemas/uplifts/open_data_metadata_uplift_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/schemas/uplifts/open_data_metadata_uplift_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/admin_tests/placeholder_tests.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/common_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/common_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/common_tests/test_spark_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/common_tests/test_spark_helpers.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/dataset_definitions_tests/placeholder_tests.py: -------------------------------------------------------------------------------- 1 | # Databricks notebook source 2 | -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/dataset_definitions_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/dataset_definitions_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/demographic_field_generators_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/demographic_field_generators_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/age_fields_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/age_fields_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/coded_fields_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/coded_fields_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/derivations_helpers_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/derivations_helpers_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/sequential_fields_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/derivations_tests/sequential_fields_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/id_fields_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/id_fields_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/field_definitions_tests/imports.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/artificial_hes_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_pipelines_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_stages_tests/field_generators_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_stages_tests/field_generators_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_stages_tests/relationship_generator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_stages_tests/relationship_generator_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_stages_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_stages_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/generator_stages_tests/sampling_tests/field_definitions_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/generator_stages_tests/sampling_tests/field_definitions_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/scraper_pipelines_tests/hes/demographic_field_summarisers_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/scraper_pipelines_tests/hes/demographic_field_summarisers_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/scraper_pipelines_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/scraper_pipelines_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/scraper_stages_tests/aggregation_tests/field_summarisers_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/scraper_stages_tests/aggregation_tests/field_summarisers_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/scraper_stages_tests/aggregation_tests/relationship_summariser_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/scraper_stages_tests/aggregation_tests/relationship_summariser_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/scraper_stages_tests/preprocessing_tests/test_meta_type_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/scraper_stages_tests/preprocessing_tests/test_meta_type_classifier.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/scraper_stages_tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/scraper_stages_tests/run_tests.py -------------------------------------------------------------------------------- /projects/iuod_artificial_data_generator/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/projects/iuod_artificial_data_generator/tests/test_helpers.py -------------------------------------------------------------------------------- /utils/export.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/utils/export.ps1 -------------------------------------------------------------------------------- /utils/import.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/utils/import.ps1 -------------------------------------------------------------------------------- /utils/list_releases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHSDigital/artificial-data-generator/HEAD/utils/list_releases.ps1 --------------------------------------------------------------------------------