Agentic data notebooks
HEXGalactic Revenue InsightsNotebookApp builder

NexaCorp Revenue Overview

Add a description…

SQL cell
select quarter, product_line, region, customer_sector, revenue_…
from galactic_sales.revenue
where quarter in ('Q1-2025', 'Q2-2025', 'Q3-2025')
quarterproduct_lineregioncustomer_sector
0Q3-2025Teleportation padsCore WorldsDefense
1Q3-2025Quantum drivesCore WorldsDefense
2Q3-2025Wormhole initiatorsCore WorldsDefense
Revenue Trends by Product Line (Q1-Q3)
01020304050Q1Q2Q3
Python cell
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)
Conversational self-serve
HEXNexaCorp product line performance (Q3)

Here's the Q3 revenue vs growth distribution for NexaCorp's product lines:

051015202501020304050

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.

Can you break this out by region too? I want to see how each product line performed across the Core Worlds, Mid-Rim, and Outer Rim.

I'll help you analyze NexaCorp's Q3 revenue by product line and region. Let me search for the most relevant data source.

Thought for 11 seconds

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:

Galactic Revenue Distribution by Product Line (Q3)
Teleportation padsQuantum drivesWormhole initiatorsDark matter lasersTemporal stabilizersAnti-gravity generators0%20%40%60%80%100%

Quick insight: Core Worlds lead revenue for Teleportation pads and Quantum drives, while Wormhole initiators see a stronger mix from the Outer Rim.

Beautiful data apps
NexaCorp Revenue Overview

NexaCorp Revenue Overview

Q3 2025 snapshot of NexaCorp's revenue across product lines, regions, and customer sectors.

Mid-Rim
Top Growth Region
↑ 4.1% vs last quarter
Commercial
Highest Revenue Sector
↑ 3.0% vs last quarter
All
All
Q3
Revenue by Product Line Over Time (Q1-Q3)
01020304050Q1Q2Q3
Account Revenue vs Growth by Product Line
051015202501020304050
⚙ Agent