Add a description…
select quarter, product_line, region, customer_sector, revenue_… from galactic_sales.revenue where quarter in ('Q1-2025', 'Q2-2025', 'Q3-2025')
| quarter | product_line | region | customer_sector | |
|---|---|---|---|---|
| 0 | Q3-2025 | Teleportation pads | Core Worlds | Defense |
| 1 | Q3-2025 | Quantum drives | Core Worlds | Defense |
| 2 | Q3-2025 | Wormhole initiators | Core Worlds | Defense |
import numpy as np # Start from Q3 rows only df_q3 = df[df["quarter"] == "Q3-2025"].copy() # Repeat each row a few times to simulate multiple accounts per product/region/sector REPEATS_PER_GROUP = 8 # tweak to control density df_accounts = df_q3.loc[df_q3.index.repeat(REPEATS_PER_GROUP)].copy() # Create a simple account id df_accounts["account_id"] = ( df_accounts["product_line"].str.replace(" ", "_").str.lower() + "-" + df_accounts.groupby("product_line").cumcount().astype(str)
Here's the Q3 revenue vs growth distribution for NexaCorp's product lines:
I also created a chart showing revenue vs growth. Let me know if you'd like to break this down by region or customer sector.
I'll help you analyze NexaCorp's Q3 revenue by product line and region. Let me search for the most relevant data source.
I found regional revenue data in the endorsed semantic model "NexaCorp: Galactic Sales Model." This model contains standardized region definitions (Core Worlds, Mid-Rim, Outer Rim) and pre-calculated revenue metrics, which is the best source for your question.
Let me create a grouped bar chart so you can compare regions within each product line:
Quick insight: Core Worlds lead revenue for Teleportation pads and Quantum drives, while Wormhole initiators see a stronger mix from the Outer Rim.
Q3 2025 snapshot of NexaCorp's revenue across product lines, regions, and customer sectors.