Overview
After loading your Excel file, you need to tell Network Analysis which columns represent origins, destinations, weights, and coordinates. This mapping determines how your data is visualized across all four visualization types.Accessing Column Mapping
The column mapping controls are located in the sidebar panel on the left side of the screen:The sidebar can be toggled using the hamburger menu button (☰) in the top-left corner.
Required Mappings
Origin Column
What is the Origin column?
What is the Origin column?
The Origin column identifies the source node in each relationship:
- In a referral network: the person making the referral
- In a supply chain: the supplier or manufacturer
- In a communication network: the message sender
- In geographic flows: the departure location
- Open the Origin dropdown in the sidebar
- Choose the column name that represents your source nodes
Destination Column
What is the Destination column?
What is the Destination column?
The Destination column identifies the target node in each relationship:
- In a referral network: the person being referred
- In a supply chain: the recipient or distributor
- In a communication network: the message receiver
- In geographic flows: the arrival location
- Open the Destination dropdown in the sidebar
- Choose the column name that represents your target nodes
Automatic Visualization
As soon as you select both Origin and Destination columns, the app automatically:
- Processes and aggregates your edges
- Generates the Sankey diagram
- Generates the Gravitational Network
- Populates filter dropdowns
- Enables the Ego Networks tab
Optional Mappings
Weight Column
Using a Weight Column
Using a Weight Column
By default, the app counts each row as 1 connection. If you have a numeric column representing the strength or value of each relationship, map it as the Weight column:Example use cases:
- Sales amount
- Number of referrals
- Message count
- Units shipped
If the Weight column contains non-numeric values, they’re treated as weight = 1.
Coordinate Columns
Mapping Geographic Coordinates
Mapping Geographic Coordinates
To enable the Geographic Map visualization, you need to provide latitude and longitude columns. You can map coordinates for origins, destinations, or both.Example coordinate mapping:
Origin Coordinates
- Origin Lat: Latitude of the origin node (decimal degrees, -90 to 90)
- Origin Lng: Longitude of the origin node (decimal degrees, -180 to 180)
Destination Coordinates
- Dest Lat: Latitude of the destination node (decimal degrees, -90 to 90)
- Dest Lng: Longitude of the destination node (decimal degrees, -180 to 180)
The map will only draw edges where:
- The origin node has coordinates from Origin Lat/Lng columns
- The destination node has coordinates from Dest Lat/Lng columns
| Column in Excel | Map to |
|---|---|
| Referrer_Latitude | Origin Lat |
| Referrer_Longitude | Origin Lng |
| Customer_Latitude | Dest Lat |
| Customer_Longitude | Dest Lng |
Column Mapping UI
The sidebar contains three sections:1. Data Source
2. Column Mapping
3. Coordinates (optional)
Real-Time Updates
Dynamic Re-rendering: Any change to column mapping instantly re-processes your data and updates all visualizations. This includes:
- Changing Origin or Destination columns
- Adding or removing a Weight column
- Updating coordinate columns
What Happens Behind the Scenes
When you change column mappings, the app:Source Code Reference
The column mapping logic is implemented inapp.js:217-293:
app.js:339-378 for the edge aggregation algorithm.
Common Workflows
Troubleshooting
Visualizations Don't Appear
Visualizations Don't Appear
- Check that both Origin and Destination are selected (not ”— Select —”)
- Look for a success message: ”✓ Configuration valid”
- Open browser console (F12) to check for errors
Weight Values Seem Wrong
Weight Values Seem Wrong
- Verify your Weight column contains numeric values
- Non-numeric cells are treated as weight = 1
- If using automatic counting, each row contributes 1 to the edge weight
Map Tab Shows 'Coordinates not configured'
Map Tab Shows 'Coordinates not configured'
- You must select all four coordinate columns: Origin Lat, Origin Lng, Dest Lat, Dest Lng
- Alternatively, select Origin Lat/Lng OR Dest Lat/Lng if your data only has one set
- Ensure coordinate columns contain valid decimal numbers
Next Steps
Data Format
Learn about Excel file requirements
Filtering
Use filters to focus on specific nodes