Audit Data Analytics Tools
Import and analyze transactional data to identify anomalies and outliers.
Dataset Profile
Total Transactions
0
Total Value
$0
Date Range
N/A
Key Findings Summary
Potential Duplicates
0
Outliers Detected
0
Benford's Law
N/A
Benford's Law Analysis (First Digit Distribution)
Potential Duplicate Transactions
Outlier Transactions
Test Parameters
Duplicate Detection
Outlier Detection
Benford's Law
Data Input
No findings for this test.
'; document.getElementById('outliers-results').innerHTML = createTable(results.outliers); }; // --- EVENT LISTENERS --- analyzeBtn.addEventListener('click', runAnalysis); window.auditSwitchTab = (evt, tabName) => { document.querySelectorAll('#audit-dashboard-container .audit-tab-content').forEach(tc => tc.style.display = 'none'); document.querySelectorAll('#audit-dashboard-container .audit-tab-button').forEach(tl => tl.classList.remove('active')); document.getElementById(tabName).style.display = 'block'; evt.currentTarget.classList.add('active'); }; // --- INITIALIZATION --- loadSampleData(); runAnalysis(); });