library("acro")# Initialize ACROacro_init(suppress =TRUE)# Your analysis code here# ACRO will automatically check outputs for disclosure risks
Creating Safe Tables
# Example of creating a cross-tabulation with ACROresult <-acro_crosstab(data$variable1, data$variable2)# ACRO automatically applies disclosure controlprint(result)
Finalizing Your Session
# When you're done with your analysisacro_finalise()
For more detailed examples and use cases, please refer to the Example Notebook.