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.

'; let table = ''; table += `${sourceData.headers.map(h => ``).join('')}`; table += `${rows.map(row => `${sourceData.headers.map(h => ``).join('')}`).join('')}`; table += '
${h}
${row[h] || ''}
'; return table; }; const dupContainer = document.getElementById('duplicates-results'); dupContainer.innerHTML = ''; results.duplicates.forEach(group => { const groupDiv = document.createElement('div'); groupDiv.className = 'finding-group'; groupDiv.innerHTML = createTable(group); dupContainer.appendChild(groupDiv); }); if(results.duplicates.length === 0) dupContainer.innerHTML = '

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(); });
Scroll to Top