Scatter Plot of Teacher Salaries
The scatter plot above displays each teacher’s salary as an individual point plotted against its record index in the dataset.
What you can observe:
- Right-skewed pattern – most salaries cluster between roughly $40 k and $120 k, with a long tail stretching to $256 k.
- Potential outliers – a few extreme low values (e.g., $1) and very high values (>$200 k) stand out and may warrant further cleaning or investigation.
- Dense middle band – the highest concentration of salaries lies around $55 k–$90 k, consistent with the histogram we saw earlier.
Because we used the record index on the x-axis, there is no inherent order other than the row order in the file. If you would like to explore how salaries vary by another variable—such as years of experience, county, job title, or school—we can change the x-axis or add color-coding.
Feel free to let me know if you’d like to:
- Filter outliers and re-draw the scatter plot.
- Plot salary against another column (e.g.,
years_experience, district, etc.). - Compute correlation or fit a trend line between salary and another numeric field.