maritime_crew_survival_analysis
Analyze survival, mortality, and desertion rates for historical VOC crews by rank, origin, decade, or ship. Gain insights into crew fates from the VOC Opvarenden dataset.
Instructions
Analyse survival, mortality, and desertion rates for VOC crews.
Computes rates from the service_end_reason field across the VOC Opvarenden dataset, grouped by the chosen dimension.
Args: group_by: Dimension to group by — "rank", "origin", "fate", "decade", or "ship_name" date_range: Filter by embarkation date (e.g. "1700/1750") rank: Filter by rank substring (e.g. "soldaat") origin: Filter by origin substring (e.g. "Rotterdam") top_n: Number of top groups to return (default 25) output_mode: Response format — "json" (default) or "text"
Returns: JSON or text with survival analysis
Tips for LLMs: - group_by="rank" reveals which ranks had highest mortality - group_by="decade" shows how mortality changed over the VOC era - group_by="origin" shows whether origin city affected survival - survival_rate = percentage who returned home - mortality_rate = percentage who died (voyage + Asia combined) - desertion_rate = percentage who deserted - Rates are per 100 crew with known fate
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_by | No | rank | |
| date_range | No | ||
| rank | No | ||
| origin | No | ||
| top_n | No | ||
| output_mode | No | json |