The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

civic.icarm provides a unified, pedagogically-grounded R framework for Interpretable, Civic-Accountable, and Responsible Machine Learning (ICARM).
It is the computational backbone of the DataCitizen-Pro project a proposed DFG-funded research programme at Ludwigsburg University of Education (LUE) developing data literacy, statistical reasoning, and democratic judgment in civic and statistical education.
“Algorithmic decisions that affect civic life must be interpretable, auditable, and fair - not merely accurate.” DataCitizen-Pro, DFG Sachbeihilfe 2026
# From CRAN (once accepted)
install.packages("civic.icarm")
# Development version from GitHub
install.packages("civic.icarm")library(civic.icarm)
# Works with ANY tabular data - task auto-detected
m <- civic_fit(voted ~ ., data = civic_voting)
# Explain
ex <- civic_explain(m, data = civic_voting)
civic_plot_importance(ex)
# Fairness audit
fair <- civic_fairness(m, civic_voting,
outcome = "voted",
protected = "gender",
positive = "yes")
civic_plot_fairness(fair, metric = "tpr")
# Full accountability scorecard
civic_scorecard(m, civic_voting,
outcome = "voted",
protected = "gender",
positive = "yes",
project = "DataCitizen-Pro")| Function | Description |
|---|---|
civic_fit() |
Train any model - auto-detects binary, multiclass, regression |
civic_explain() |
Global feature importance |
civic_fairness() |
Group equity metrics across protected attributes |
civic_calibrate() |
Probability calibration diagnostics |
civic_compare() |
Side-by-side multi-model comparison |
civic_audit() |
Reproducible JSON audit trail |
civic_scorecard() |
Full civic accountability report |
| Competency pillar | civic.icarm module |
|---|---|
| Data Literacy | civic_fit(), civic_audit() |
| Statistical Reasoning | civic_metrics(), civic_thresholds(),
civic_calibrate() |
| Democratic Judgment | civic_fairness(), civic_scorecard() |
| Dataset | Rows | Task |
|---|---|---|
civic_voting |
1,000 | Binary classification |
civic_education |
800 | Regression |
civic_german_credit |
1,000 | Binary classification (fairness benchmark) |
Prof. Dr. Olushina Olawale Awe Alexander von Humboldt Foundation Visiting Professor Statistical and Data Science Literacy Ludwigsburg University of Education (LUE), Germany olawaleawe@gmail.com
@software{awe2026civicicarm,
author = {Awe, Olushina Olawale},
title = {{civic.icarm}: Interpretable, Civic-Accountable and
Responsible Machine Learning},
year = {2025},
url = {https://github.com/Olawaleawe/civic.icarm},
note = {R package v0.2.0. DataCitizen-Pro DFG Sachbeihilfe,
Ludwigsburg University of Education.}
}Developed within the DataCitizen-Pro project submitted to the Deutsche Forschungsgemeinschaft (DFG) Sachbeihilfe programme. The Alexander von Humboldt Foundation is thanked for supporting the Visiting Professorship at LUE.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.