To simply calculate the relationship between income and number of employees, I would simply use a line chart as follows:

To justify creating a scatter plot graph (since they are awesome and I wanted to), I created some fake data that looked something like this:
{ name: faker.company.companyName(), employees: _.random(3, 30), revenue: _.random(10000, 100000), industry: _.sample(industries) }
And he built it to visualize, breaking it in parts:
- Start with a line chart.
- Go to the Options tab of the sidebar (starting with version 4.1)
- Uncheck Show Connect Lines
- Check the "Y-axis scale to data borders" checkbox.
- Return to the "Data" tab.
- Change "Y-Axis"
- use medium aggregation
- in the
employees field
- Add Dot Size Metric
- use aggregation Unique account
- in
company field
- Add a Split Line Bucket
- use aggregation Terms
- in the
industry field - I like to set the size close to the power of my data.
- Add "X-Axis"
- use aggregation histogram
- in the
revenue field - Guess the interval, you need to play a little with it
- Finally click Apply
This configuration is rather complicated, but the resulting visualization shows a lot of information.

source share