{"id":20041651,"url":"https://github.com/alima-webdev/excel-chisquare-2x2-addin","last_synced_at":"2026-03-05T03:32:34.193Z","repository":{"id":247299123,"uuid":"825466837","full_name":"alima-webdev/excel-chisquare-2x2-addin","owner":"alima-webdev","description":" This Excel add-in provides two convenient functions to calculate the p-value for a 2x2 chi-square test directly within your spreadsheet.","archived":false,"fork":false,"pushed_at":"2024-07-07T21:44:06.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T07:13:58.165Z","etag":null,"topics":["excel","vba-excel"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alima-webdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-07T21:18:43.000Z","updated_at":"2024-07-08T00:06:43.000Z","dependencies_parsed_at":"2024-07-07T23:43:03.254Z","dependency_job_id":"f0774508-d6c2-4cff-b703-38a8bf086f91","html_url":"https://github.com/alima-webdev/excel-chisquare-2x2-addin","commit_stats":null,"previous_names":["alima-webdev/excel-chisquare-2x2-addin"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/alima-webdev/excel-chisquare-2x2-addin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alima-webdev%2Fexcel-chisquare-2x2-addin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alima-webdev%2Fexcel-chisquare-2x2-addin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alima-webdev%2Fexcel-chisquare-2x2-addin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alima-webdev%2Fexcel-chisquare-2x2-addin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alima-webdev","download_url":"https://codeload.github.com/alima-webdev/excel-chisquare-2x2-addin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alima-webdev%2Fexcel-chisquare-2x2-addin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30108645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T01:39:18.192Z","status":"online","status_checked_at":"2026-03-05T02:00:06.710Z","response_time":93,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["excel","vba-excel"],"created_at":"2024-11-13T10:47:24.053Z","updated_at":"2026-03-05T03:32:34.169Z","avatar_url":"https://github.com/alima-webdev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Excel Chi-Square 2x2 Add-in\n\nThis Excel add-in provides two convenient functions to calculate the p-value for a 2x2 chi-square test directly within your spreadsheet. Whether you need a straightforward chi-square test or one that includes Yates’ correction for continuity, this add-in has you covered.\n\n## Functions\n### CHISQ2X2(a, b, c, d)\nCalculates the p-value for a 2x2 chi-square test.\n- Parameters:\n\t- a: The count in cell A1.\n\t- b: The count in cell A2.\n\t- c: The count in cell B1.\n\t- d: The count in cell B2.\n\nExample:\n```\n=CHISQ2X2(10, 20, 30, 40)\n```\n\n### CHISQ2X2YATES(a, b, c, d)\nDescription: Calculates the p-value for a 2x2 chi-square test with Yates’ correction for continuity.\n- Parameters:\n\t- a: The count in cell A1.\n\t- b: The count in cell A2.\n\t- c: The count in cell B1.\n\t- d: The count in cell B2.\n\nExample:\n```\n=CHISQ2X2YATES(10, 20, 30, 40)\n```\n\n## Installation\n### Windows\n1. Download the add-in file from the releases page.\n2. Open Excel and go to File \u003e Options \u003e Add-Ins\n3. At the bottom, in the Manage box, select Excel Add-ins and click Go....\n4. Click Browse... and locate the downloaded add-in file.\n5. Click OK to load the add-in.\n\n### Mac\n1. Download the add-in file from the releases page.\n2. Open Excel and go to Tools \u003e Excel Add-Ins\n3. Click Browse... and locate the downloaded add-in file.\n4. Click OK to load the add-in.\n\n## Usage\n\nOnce installed, you can use the **CHISQ2X2** and **CHISQ2X2YATES** functions in any cell within your Excel workbook. Simply enter the function with the appropriate parameters, and the p-value will be calculated for you.\n\n### Examples\n\nWithout Yates’ Correction:\n```\n=CHISQ2X2(10, 20, 30, 40)\n```\nReturns: 0.372998484\n\n\nWith Yates' Correction:\n```\n=CHISQ2X2YATES(10, 20, 30, 40)\n```\nReturns: 0.504035866\n\n\n### License\nThis project is licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falima-webdev%2Fexcel-chisquare-2x2-addin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falima-webdev%2Fexcel-chisquare-2x2-addin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falima-webdev%2Fexcel-chisquare-2x2-addin/lists"}