|
|
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>RubikBench Financial Analysis Report</title> |
| <style> |
| :root { |
| --primary-color: #2c3e50; |
| --secondary-color: #3498db; |
| --accent-color: #e74c3c; |
| --bg-color: #ecf0f1; |
| --card-bg: #ffffff; |
| } |
| |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| background-color: var(--bg-color); |
| color: var(--primary-color); |
| line-height: 1.6; |
| } |
| |
| .container { |
| max-width: 1400px; |
| margin: 0 auto; |
| padding: 20px; |
| } |
| |
| header { |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); |
| color: white; |
| padding: 40px 20px; |
| text-align: center; |
| border-radius: 10px; |
| margin-bottom: 30px; |
| } |
| |
| header h1 { |
| font-size: 2.5em; |
| margin-bottom: 10px; |
| } |
| |
| header .subtitle { |
| font-size: 1.2em; |
| opacity: 0.9; |
| } |
| |
| .report-meta { |
| display: flex; |
| justify-content: center; |
| gap: 30px; |
| margin-top: 20px; |
| flex-wrap: wrap; |
| } |
| |
| .meta-item { |
| background: rgba(255,255,255,0.2); |
| padding: 10px 20px; |
| border-radius: 5px; |
| } |
| |
| .section { |
| background: var(--card-bg); |
| border-radius: 10px; |
| padding: 30px; |
| margin-bottom: 30px; |
| box-shadow: 0 2px 10px rgba(0,0,0,0.1); |
| } |
| |
| .section h2 { |
| color: var(--primary-color); |
| border-bottom: 3px solid var(--secondary-color); |
| padding-bottom: 10px; |
| margin-bottom: 20px; |
| } |
| |
| .section h3 { |
| color: var(--secondary-color); |
| margin: 20px 0 15px 0; |
| } |
| |
| .section h4 { |
| color: var(--primary-color); |
| margin: 15px 0 10px 0; |
| } |
| |
| .stats-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); |
| gap: 20px; |
| margin: 20px 0; |
| } |
| |
| .stat-card { |
| background: linear-gradient(135deg, var(--secondary-color), #2980b9); |
| color: white; |
| padding: 20px; |
| border-radius: 10px; |
| text-align: center; |
| } |
| |
| .stat-card.accent { |
| background: linear-gradient(135deg, var(--accent-color), #c0392b); |
| } |
| |
| .stat-card.success { |
| background: linear-gradient(135deg, #27ae60, #1e8449); |
| } |
| |
| .stat-card .value { |
| font-size: 2em; |
| font-weight: bold; |
| } |
| |
| .stat-card .label { |
| font-size: 0.9em; |
| opacity: 0.9; |
| margin-top: 5px; |
| } |
| |
| .chart-container { |
| text-align: center; |
| margin: 20px 0; |
| } |
| |
| .chart-container img { |
| max-width: 100%; |
| height: auto; |
| border-radius: 5px; |
| box-shadow: 0 2px 5px rgba(0,0,0,0.1); |
| } |
| |
| .chart-title { |
| font-weight: bold; |
| color: var(--primary-color); |
| margin-bottom: 10px; |
| } |
| |
| table { |
| width: 100%; |
| border-collapse: collapse; |
| margin: 15px 0; |
| font-size: 0.9em; |
| } |
| |
| th, td { |
| padding: 12px; |
| text-align: left; |
| border-bottom: 1px solid #ddd; |
| } |
| |
| th { |
| background-color: var(--primary-color); |
| color: white; |
| } |
| |
| tr:hover { |
| background-color: #f5f5f5; |
| } |
| |
| .positive { |
| color: #27ae60; |
| font-weight: bold; |
| } |
| |
| .negative { |
| color: #e74c3c; |
| font-weight: bold; |
| } |
| |
| .two-column { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 30px; |
| } |
| |
| @media (max-width: 768px) { |
| .two-column { |
| grid-template-columns: 1fr; |
| } |
| } |
| |
| footer { |
| text-align: center; |
| padding: 20px; |
| color: #666; |
| font-size: 0.9em; |
| } |
| |
| .toc { |
| background: #f9f9f9; |
| padding: 20px; |
| border-radius: 5px; |
| margin-bottom: 20px; |
| } |
| |
| .toc h3 { |
| margin-bottom: 15px; |
| } |
| |
| .toc ul { |
| list-style: none; |
| padding-left: 0; |
| } |
| |
| .toc li { |
| padding: 5px 0; |
| } |
| |
| .toc a { |
| color: var(--secondary-color); |
| text-decoration: none; |
| } |
| |
| .toc a:hover { |
| text-decoration: underline; |
| } |
| |
| .conclusions { |
| background: #f0f8ff; |
| border-left: 4px solid var(--secondary-color); |
| padding: 20px; |
| margin-top: 20px; |
| } |
| |
| .conclusions h3 { |
| margin-top: 0; |
| } |
| |
| .conclusions ul { |
| margin-left: 20px; |
| } |
| |
| .data-note { |
| background: #fff3cd; |
| border-left: 4px solid #ffc107; |
| padding: 15px; |
| margin: 15px 0; |
| font-size: 0.9em; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <header> |
| <h1>📊 RubikBench Financial Analysis Report</h1> |
| <p class="subtitle">Comprehensive Financial Database Statistics & Visualization</p> |
| <div class="report-meta"> |
| <div class="meta-item">📁 Database: RubikBench v0.9.1</div> |
| <div class="meta-item">📆 Data Period: 202001 - 202512</div> |
| <div class="meta-item">💰 Currency: USD | Caliber: A</div> |
| </div> |
| </header> |
|
|
| <div class="section"> |
| <h2>📑 Table of Contents</h2> |
| <div class="toc"> |
| <ul> |
| <li><a href="#overview">1. Database Overview</a></li> |
| <li><a href="#hierarchies">2. Entity Hierarchies</a></li> |
| <li><a href="#revenue">3. Revenue Analysis</a></li> |
| <li><a href="#topn">4. Top Performers</a></li> |
| <li><a href="#profitability">5. Profitability Analysis</a></li> |
| <li><a href="#yoy">6. Year-over-Year Analysis</a></li> |
| <li><a href="#budget">7. Budget & Forecast</a></li> |
| <li><a href="#sales">8. Sales Ledger Analysis</a></li> |
| <li><a href="#geographical">9. Geographical Analysis</a></li> |
| <li><a href="#metrics">10. Additional Financial Metrics</a></li> |
| <li><a href="#conclusions">11. Executive Summary & Conclusions</a></li> |
| </ul> |
| </div> |
|
|
| <div class="data-note"> |
| <strong>⚠️ Data Note:</strong> All monetary values are in <strong>USD (US Dollar)</strong> using <strong>Caliber A</strong> |
| (standard accounting separation of equipment and service revenues). This ensures no duplication from |
| currency/caliber combinations. |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="overview"> |
| <h2>1. Database Overview</h2> |
|
|
| <div class="stats-grid"> |
| <div class="stat-card"> |
| <div class="value">20</div> |
| <div class="label">Total Tables</div> |
| </div> |
| <div class="stat-card accent"> |
| <div class="value">901.53M</div> |
| <div class="label">Total Records</div> |
| </div> |
| <div class="stat-card success"> |
| <div class="value">72</div> |
| <div class="label">Time Periods (Months)</div> |
| </div> |
| </div> |
|
|
| <h3>Table Statistics</h3> |
| <table> |
| <tr> |
| <th>Table Name</th> |
| <th>Rows</th> |
| <th>Columns</th> |
| </tr> |
| <tr><td>INCOME_ALL</td><td>12,411,576</td><td>61</td></tr><tr><td>INCOME_ACCESSORY</td><td>3,365,928</td><td>61</td></tr><tr><td>INCOME_SERVICE</td><td>1,480,464</td><td>61</td></tr><tr><td>INCOME_CYBVEHSYS</td><td>994,896</td><td>61</td></tr><tr><td>INCOME_GALMOTGRO</td><td>1,724,112</td><td>61</td></tr><tr><td>INCOME_NOVDYN</td><td>1,419,552</td><td>61</td></tr><tr><td>INCOME_SHIMOTCOR</td><td>1,133,784</td><td>61</td></tr><tr><td>INCOME_TYRAUTGRO</td><td>1,043,928</td><td>61</td></tr><tr><td>INCOME_WEYMOTCOR</td><td>1,248,912</td><td>61</td></tr><tr><td>BUDGET_AND_FORECAST_ALL</td><td>96,579,648</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_ACCESSORY</td><td>30,184,704</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_SERVICE</td><td>9,484,992</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_CYBVEHSYS</td><td>8,496,576</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_GALMOTGRO</td><td>11,233,728</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_NOVDYN</td><td>10,463,904</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_SHIMOTCOR</td><td>8,857,728</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_TYRAUTGRO</td><td>8,506,080</td><td>37</td></tr><tr><td>BUDGET_AND_FORECAST_WEYMOTCOR</td><td>9,351,936</td><td>37</td></tr><tr><td>PROFIT_AND_LOSS</td><td>161,735,904</td><td>67</td></tr><tr><td>SALES_LEDGER</td><td>521,813,376</td><td>55</td></tr> |
| </table> |
| </div> |
|
|
| |
| <div class="section" id="hierarchies"> |
| <h2>2. Entity Hierarchies</h2> |
|
|
| <div class="stats-grid"> |
| <div class="stat-card"> |
| <div class="value">47</div> |
| <div class="label">Cities</div> |
| </div> |
| <div class="stat-card"> |
| <div class="value">353</div> |
| <div class="label">Products (Lv3)</div> |
| </div> |
| <div class="stat-card"> |
| <div class="value">22</div> |
| <div class="label">Customers (Lv4)</div> |
| </div> |
| <div class="stat-card accent"> |
| <div class="value">40,756</div> |
| <div class="label">Total Contracts</div> |
| </div> |
| </div> |
|
|
| <div class="two-column"> |
| <div> |
| <h3>Region Hierarchy Counts</h3> |
| <table> |
| <tr><th>Level</th><th>Count</th></tr> |
| <tr><td>overseas_flags</td><td>2</td></tr><tr><td>sales_regions</td><td>11</td></tr><tr><td>countries</td><td>22</td></tr><tr><td>national_areas</td><td>37</td></tr><tr><td>provinces</td><td>46</td></tr><tr><td>cities</td><td>47</td></tr> |
| </table> |
| </div> |
| <div> |
| <h3>Product Hierarchy Counts</h3> |
| <table> |
| <tr><th>Level</th><th>Count</th></tr> |
| <tr><td>prod_lv0</td><td>3</td></tr><tr><td>prod_lv1</td><td>19</td></tr><tr><td>prod_lv2</td><td>93</td></tr><tr><td>prod_lv3</td><td>353</td></tr> |
| </table> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="revenue"> |
| <h2>3. Revenue Analysis</h2> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Monthly Revenue Trend and YoY Growth</div> |
| <img src="revenue_trend.png" alt="Revenue Trend"> |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Revenue by Product Division</div> |
| <img src="revenue_by_division.png" alt="Revenue by Division"> |
| </div> |
|
|
| <h3>Revenue by Division Summary</h3> |
| <table> |
| <tr> |
| <th>Division</th> |
| <th>Total Revenue (CNY)</th> |
| <th>YoY Growth</th> |
| <th>Share</th> |
| </tr> |
| <tr> |
| <td>Automobiles</td> |
| <td>$84.13B</td> |
| <td class="positive">19.91%</td> |
| <td>62.00%</td> |
| </tr><tr> |
| <td>Services</td> |
| <td>$30.30B</td> |
| <td class="positive">19.77%</td> |
| <td>22.33%</td> |
| </tr><tr> |
| <td>Accessories</td> |
| <td>$21.27B</td> |
| <td class="positive">20.19%</td> |
| <td>15.67%</td> |
| </tr> |
| </table> |
| </div> |
|
|
| |
| <div class="section" id="topn"> |
| <h2>4. Top Performers</h2> |
|
|
| <div class="two-column"> |
| <div class="chart-container"> |
| <div class="chart-title">Top 20 Products by Revenue</div> |
| <img src="top_products.png" alt="Top Products"> |
| </div> |
| <div class="chart-container"> |
| <div class="chart-title">Top 20 Customers by Revenue</div> |
| <img src="top_customers.png" alt="Top Customers"> |
| </div> |
| </div> |
|
|
| <div class="two-column"> |
| <div class="chart-container"> |
| <div class="chart-title">Top 20 Regions by Revenue</div> |
| <img src="top_regions.png" alt="Top Regions"> |
| </div> |
| <div class="chart-container"> |
| <div class="chart-title">Top 20 Cities by Revenue</div> |
| <img src="top_cities.png" alt="Top Cities"> |
| </div> |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Top 20 Brand-Country-Customer Combinations</div> |
| <img src="top_combinations.png" alt="Top Combinations"> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="profitability"> |
| <h2>5. Profitability Analysis</h2> |
|
|
| <div class="data-note"> |
| <strong>📐 Profit Margin Formula:</strong> Gross Profit Margin = (Revenue - Expense) / Revenue × 100%<br> |
| Expected ranges: Services ~50%, Accessories <10%, Automobiles <10% |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Profit Margin by Division</div> |
| <img src="profit_margin_division.png" alt="Profit Margin by Division"> |
| </div> |
|
|
| <h3>Profit by Division</h3> |
| <table> |
| <tr> |
| <th>Division</th> |
| <th>Revenue (USD)</th> |
| <th>Expense (USD)</th> |
| <th>Gross Profit (USD)</th> |
| <th>Margin %</th> |
| </tr> |
| <tr> |
| <td>Accessories</td> |
| <td>$21.27B</td> |
| <td>$20.25B</td> |
| <td>$1.01B</td> |
| <td class="negative">4.8%</td> |
| </tr><tr> |
| <td>Automobiles</td> |
| <td>$84.13B</td> |
| <td>$82.48B</td> |
| <td>$1.65B</td> |
| <td class="negative">2.0%</td> |
| </tr><tr> |
| <td>Services</td> |
| <td>$31.28B</td> |
| <td>$20.85B</td> |
| <td>$10.43B</td> |
| <td class="positive">33.3%</td> |
| </tr> |
| </table> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Monthly Profit Margin Trend</div> |
| <img src="profit_margin_trend.png" alt="Profit Margin Trend"> |
| </div> |
|
|
| <div class="two-column"> |
| <div class="chart-container"> |
| <div class="chart-title">Expense Breakdown</div> |
| <img src="expense_breakdown.png" alt="Expense Breakdown"> |
| </div> |
| <div class="chart-container"> |
| <div class="chart-title">Expense Ratios (% of Revenue)</div> |
| <img src="expense_ratios.png" alt="Expense Ratios"> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="yoy"> |
| <h2>6. Year-over-Year Analysis</h2> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">YoY Growth by Dimension</div> |
| <img src="yoy_by_dimension.png" alt="YoY by Dimension"> |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Annual Growth Trends</div> |
| <img src="growth_trends.png" alt="Growth Trends"> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="budget"> |
| <h2>7. Budget & Forecast Analysis</h2> |
|
|
| <div class="data-note"> |
| <strong>📋 Budget/Forecast Semantics:</strong><br> |
| • <strong>Budget:</strong> ytd_budget is the yearly budget (constant for all months in a year)<br> |
| • <strong>Forecast:</strong> ytd_forecast at YYYYMM predicts the full year (YYYY12) result<br> |
| • <strong>Target:</strong> ytd_target is the cumulative monthly target |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Budget Completion Rate by Division</div> |
| <img src="budget_completion.png" alt="Budget Completion"> |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Forecast Accuracy Over Time</div> |
| <img src="forecast_accuracy.png" alt="Forecast Accuracy"> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="sales"> |
| <h2>8. Sales Ledger Analysis</h2> |
|
|
| <div class="stats-grid"> |
| <div class="stat-card"> |
| <div class="value">40,756</div> |
| <div class="label">Total Contracts</div> |
| </div> |
| <div class="stat-card accent"> |
| <div class="value">46,895</div> |
| <div class="label">Total Projects</div> |
| </div> |
| <div class="stat-card success"> |
| <div class="value">$135.70B</div> |
| <div class="label">Total Revenue</div> |
| </div> |
| </div> |
|
|
| <div class="two-column"> |
| <div class="chart-container"> |
| <div class="chart-title">Top 20 Contracts by Revenue</div> |
| <img src="top_contracts.png" alt="Top Contracts"> |
| </div> |
| <div class="chart-container"> |
| <div class="chart-title">Dealer Performance</div> |
| <img src="dealer_performance.png" alt="Dealer Performance"> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="geographical"> |
| <h2>9. Geographical Analysis</h2> |
|
|
| <div class="two-column"> |
| <div class="chart-container"> |
| <div class="chart-title">Domestic vs Overseas Revenue</div> |
| <img src="domestic_vs_overseas.png" alt="Domestic vs Overseas"> |
| </div> |
| <div class="chart-container"> |
| <div class="chart-title">Revenue Distribution by Region</div> |
| <img src="regional_distribution.png" alt="Regional Distribution"> |
| </div> |
| </div> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Revenue Seasonality Pattern</div> |
| <img src="seasonality.png" alt="Seasonality"> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="metrics"> |
| <h2>10. Additional Financial Metrics</h2> |
|
|
| <div class="chart-container"> |
| <div class="chart-title">Customer Revenue Concentration</div> |
| <img src="customer_concentration.png" alt="Customer Concentration"> |
| </div> |
|
|
| <h3>Revenue Intensity Metrics</h3> |
| <table> |
| <tr><th>Metric</th><th>Value</th></tr> |
| <tr><td>Number of Products</td><td>353</td></tr> |
| <tr><td>Number of Customers</td><td>22</td></tr> |
| <tr><td>Number of Cities</td><td>47</td></tr> |
| <tr><td>Revenue per Product</td><td>$384.42M</td></tr> |
| <tr><td>Revenue per Customer</td><td>$6.17B</td></tr> |
| <tr><td>Revenue per City</td><td>$2.89B</td></tr> |
| </table> |
|
|
| <h3>Customer Concentration</h3> |
| <table> |
| <tr><th>Metric</th><th>Value</th></tr> |
| <tr><td>HHI Index</td><td>1013</td></tr> |
| <tr><td>Top 5 Customers Share</td><td>55.30%</td></tr> |
| <tr><td>Top 10 Customers Share</td><td>75.94%</td></tr> |
| </table> |
|
|
| <h3>Growth Volatility</h3> |
| <table> |
| <tr><th>Metric</th><th>Value</th></tr> |
| <tr><td>Average YoY Growth</td><td>7.16%</td></tr> |
| <tr><td>Growth Std Dev</td><td>18.98%</td></tr> |
| <tr><td>Best Month Growth</td><td>81.42%</td></tr> |
| <tr><td>Worst Month Growth</td><td>-27.77%</td></tr> |
| <tr><td>Positive Growth Months</td><td>38</td></tr> |
| <tr><td>Negative Growth Months</td><td>22</td></tr> |
| </table> |
| </div> |
|
|
| |
| <div class="section" id="conclusions"> |
| <h2>11. Executive Summary & Conclusions</h2> |
|
|
| <div class="conclusions"> |
| <h3>📋 Key Findings</h3> |
| <ul><li><strong>Total Revenue (Caliber A, USD): $135.70B over 72 months</strong></li><li><strong>Average Monthly Revenue: $1.88B</strong></li><li><strong>Average YoY Growth Rate: 7.16%</strong></li><li><strong>Automobiles: $84.13B (62.00% share, 19.91% YoY)</strong></li><li><strong>Services: $30.30B (22.33% share, 19.77% YoY)</strong></li><li><strong>Accessories: $21.27B (15.67% share, 20.19% YoY)</strong></li></ul><h4>**Profit Margins by Division:**</h4><ul><li> - Accessories: 4.8% margin</li><li> - Automobiles: 2.0% margin</li><li> - Services: 33.3% margin</li><li><strong>Average Gross Profit Margin: 9.6%</strong></li></ul><h4>**Compound Annual Growth Rate (CAGR) 2020-2025:** 5.18%</h4><ul></ul><h4>**Budget Completion (2025):**</h4><ul><li> - Accessories: 100.2% of budget, 92.7% of target</li><li> - Automobiles: 100.0% of budget, 92.7% of target</li><li> - Services: 99.6% of budget, 92.7% of target</li><li><strong>Average Forecast Accuracy: 99.6%</strong></li></ul><h4>**Geographic Distribution:**</h4><ul><li> - Domestic: 96.90% share, 19.95% YoY</li><li> - Overseas: 3.10% share, 19.00% YoY</li></ul><h4>**Regional Diversification:**</h4><ul><li> - Regional HHI: 9391</li><li> - Top Region: China (96.90%)</li></ul><h4>**Customer Concentration:**</h4><ul><li> - HHI Index: 1013 (Competitive)</li><li> - Top 5 Customers: 55.30% of revenue</li><li> - Top 10 Customers: 75.94% of revenue</li></ul><h4>**Revenue Intensity:**</h4><ul><li> - Revenue per Product: $384.42M</li><li> - Revenue per Customer: $6.17B</li><li> - Revenue per City: $2.89B</li></ul><h4>**Growth Volatility:**</h4><ul><li> - Average YoY Growth: 7.16%</li><li> - Growth Volatility (Std): 18.98%</li><li> - Best Month: 81.42%</li><li> - Worst Month: -27.77%</li><li> - Positive Growth Months: 38</li><li> - Negative Growth Months: 22</li></ul><h4>**Expense Ratios (as % of Revenue):**</h4><ul><li> - Other Expenses: 0.3%</li><li> - Income Tax Expense: 4.6%</li><li> - Period Expenses: 8.4%</li><li> - Cost of Sales: 77.1%</li></ul> |
| </div> |
|
|
| <h3>🎯 Strategic Observations</h3> |
| <ul> |
| <li><strong>Revenue Distribution:</strong> The company operates across three main divisions with varying profitability profiles.</li> |
| <li><strong>Geographic Presence:</strong> Operations span domestic and overseas markets with clear regional concentration patterns.</li> |
| <li><strong>Customer Base:</strong> Customer concentration metrics indicate the diversity of the revenue base.</li> |
| <li><strong>Financial Health:</strong> Profit margins vary significantly by division, with Services showing higher margins than manufacturing segments.</li> |
| <li><strong>Growth Trajectory:</strong> YoY growth patterns reveal seasonal and cyclical trends in the business.</li> |
| <li><strong>Budget Discipline:</strong> Budget completion rates indicate the accuracy of financial planning processes.</li> |
| </ul> |
|
|
| <h3>📌 Data Quality Notes</h3> |
| <ul> |
| <li>All analysis uses Caliber A (standard accounting treatment) and CNY currency to avoid duplication.</li> |
| <li>YoY comparisons use py_ (prior year) columns which properly align periods.</li> |
| <li>Budget and forecast semantics follow the documented conventions (yearly budget constant, forecast predicts full year).</li> |
| <li>Profit margins are calculated as (Revenue - Expense) / Revenue, with expenses stored as positive values.</li> |
| </ul> |
| </div> |
|
|
| <footer> |
| <p>Generated by RubikBench Financial Analyzer </p> |
| <p>Data Source: RubikBench v0.9.1 | APEX Corporation Financial Database</p> |
| <p>Currency: USD | Caliber: A (Standard)</p> |
| </footer> |
| </div> |
| </body> |
| </html> |
|
|