{"id":18612379,"url":"https://github.com/winvector/sigr","last_synced_at":"2025-06-16T10:33:43.469Z","repository":{"id":56934851,"uuid":"69922947","full_name":"WinVector/sigr","owner":"WinVector","description":"Concise formatting of significances in R (GPL3 license).","archived":false,"fork":false,"pushed_at":"2023-08-20T00:10:37.000Z","size":16605,"stargazers_count":27,"open_issues_count":0,"forks_count":2,"subscribers_count":9,"default_branch":"main","last_synced_at":"2024-04-26T04:45:06.492Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://winvector.github.io/sigr/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WinVector.png","metadata":{"files":{"readme":"README.Rmd","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}},"created_at":"2016-10-04T00:41:22.000Z","updated_at":"2024-02-06T14:03:00.000Z","dependencies_parsed_at":"2022-08-21T06:50:38.195Z","dependency_job_id":"642d900a-3d3c-40cb-9463-804dcc39fa65","html_url":"https://github.com/WinVector/sigr","commit_stats":{"total_commits":294,"total_committers":2,"mean_commits":147.0,"dds":0.03401360544217691,"last_synced_commit":"77a1b2a96abf1cdbef1fdfc0fc1e56c0fe88063b"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WinVector%2Fsigr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WinVector%2Fsigr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WinVector%2Fsigr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WinVector%2Fsigr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WinVector","download_url":"https://codeload.github.com/WinVector/sigr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239402802,"owners_count":19632456,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-07T03:16:51.380Z","updated_at":"2025-02-18T03:25:34.091Z","avatar_url":"https://github.com/WinVector.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\n[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/sigr)](https://cran.r-project.org/package=sigr)\n[![status](https://tinyverse.netlify.com/badge/sigr)](https://CRAN.R-project.org/package=sigr)\n\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n# sigr\n\nConcise formatting of significances in R.\n\n![](https://github.com/WinVector/sigr/raw/master/tools/sigr.png)\n\nPlease see [Adding polished significance summaries to papers using R](https://win-vector.com/2016/10/04/adding-polished-significance-summaries-to-papers-using-r/) for some discussion.\n\nSee also:\n\n  * [\"The prevalence of statistical reporting errors in psychology (1985–2013)\", Nuijten, M.B., Hartgerink, C.H.J., van Assen, M.A.L.M. et al., Behav Res (2015), doi:10.3758/s13428-015-0664-2](https://link.springer.com/article/10.3758/s13428-015-0664-2)\n  * Reporting Statistics in APA Style\n  * [Publication Manual of the American Psychological Association, Seventh Edition](https://apastyle.apa.org/products/publication-manual-7th-edition)\n  * [Proofing statistics in papers](https://win-vector.com/2016/10/02/proofing-statistics-in-papers/)\n  * [apa](https://CRAN.R-project.org/package=apa)\n  * [bootstrap](https://CRAN.R-project.org/package=bootstrap)\n  * [broom](https://cran.r-project.org/package=broom)\n  * [achetverikov/APAstats](https://github.com/achetverikov/APAstats)\n  * [pwr](https://CRAN.R-project.org/package=pwr)\n  * [ggstatsplot](https://indrajeetpatil.github.io/ggstatsplot/)\n  * [\"Why Most Published Research Findings Are False\", John P. A. Ioannidis\nPLOS Medicine, August 30, 2005](https://journals.plos.org/plosmedicine/article?id=10.1371/journal.pmed.0020124)\n  * [\"The garden of forking paths\", Andrew Gelman and Eric Loken, 14 Nov 2013](http://www.stat.columbia.edu/~gelman/research/unpublished/p_hacking.pdf)\n\n\n-----------\n\n\n_sigr_ is a small package that concentrates on computing summary\nstatistics and reporting in an appropriate format.\n\nFor example here is formatting the quality of a logistic regression.\n\n```{r}\nd \u003c- data.frame(x=c(1,2,3,4,5,6,7,7),\n      y=c(TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE))\nmodel \u003c- glm(y~x,data=d,family=binomial)\nsummary(model)\n```\n\n\n\n```{r}\nlibrary(\"sigr\")\n```\n```{r results='asis'}\ncat(render(wrapChiSqTest(model),\n           pLargeCutoff=1, format='markdown'))\n```\n\n-----------\n\nTo install, from inside `R` please run:\n\n```{r, eval=FALSE}\ninstall.packages(\"sigr\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwinvector%2Fsigr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwinvector%2Fsigr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwinvector%2Fsigr/lists"}