This dashboard analyzes Worker Adjustment and Retraining Notification (WARN) notices in California for the current year. WARN notices are required when companies plan significant layoffs, providing advance notification to affected workers. The notice includes information on the number of affected employees, notice and effective dates, layoff reasons, and company details.
The data is being downloaded nightly from the California Employment Development Department (EDD)'s WARN Page, converted from XLSX to CSV and Parquet, and stored in a separate repository.
The data includes the following columns:
notice_date
: Filing dateeffective_date
: Layoff/closure datecompany
: Company namelayoff_closure
: Event typeno_of_employees
: Affected employees countrelated_industry
: Industry sectorcounty_parish
: Locationstate
: Name of the Statedownload_date
: Date of download
You can find the data in the data/processed/ca/{YEAR}/
directory of the separate repository.
To view the dashboard locally, you will need to install the dependencies and render the dashboard.
First, clone the repository:
git clone git@github.com:coatless-dashboard/warn.git
Then, run the following commands:
# Install dependencies
python -m pip install --upgrade pip
pip install -r requirements.txt
# Download data
python .github/scripts/download-warn.py warn-data/data
# Create dashboard
quarto render
The data is stored in a separate repository to allow for easy access, sharing, and versioning.
We download the data nightly from EDD using a GitHub Actions workflow. The workflow is defined in the .github/workflows/refresh-warn-data.yml
. The workflow is triggered daily at 12:00 AM UTC by a CRON job.
AGPL (>= 3)
Built with Quarto and Python. Data from California Employment Development Department.