This project visualizes universities across the United States based on their acceptance rates using D3.js and React. Bubbles representing each university appear sequentially on a map of the United States, with their size scaled according to the university's acceptance rate. The bubbles are colored based on the school's official colors, and the university name and acceptance rate are displayed alongside each bubble.
The university acceptance rate data used in this project is sourced from US News. You can view the full article and dataset here: US News - Lowest Acceptance Rates.
Example data format:
```js
{
name: 'Stanford University',
acceptanceRate: 4,
radius: acceptanceRate / 3, // Scaled acceptance rate
fill: '#8C1515', // School color
lat: 37.4275,
lon: -122.1697
}