Interactive dashboard of the United States H-1B visa lottery system. Explore key metrics such as employer participation, salaries, job titles, and country of origin through detailed filters and visualizations.
- Fiscal year
- Employer name (e.g., Wipro, Amazon).
- Job title: (e.g., “Software Engineer”).
- Country of birth, country of nationality.
- Salary Range: wage amt(e.g. $50,000), wage unit(e.g. year).
- Worksite: worksite_city, worksite_state.
- 🔸 ✶ H1Bs Database
SELECT
employer_name,
first_decision,
ben_sex,
ben_country_of_birth,
COUNT(1) AS city,
SUM(COUNT(1)) OVER (PARTITION BY employer_name ORDER BY first_decision) AS cumulative_sum
FROM (
SELECT
employer_name,
first_decision,
ben_sex,
ben_country_of_birth
FROM trk_data
) subquery
GROUP BY employer_name, first_decision, ben_sex, ben_country_of_birth
ORDER BY cumulative_sum desc, first_decision desc, employer_name;
- Time-series chart: Registrations vs. approvals by year.
- Treemap: Multiple vs. single registrations.
- US H-1B Visa Lottery and Petition Data FY 2021 - FY 2024. Data sourced from USCIS and obtained by Bloomberg. https://github.com/BloombergGraphics/2024-h1b-immigration-data