interface Crime { /** crime arrested for */ offenseCategory: string; /** formatted day of week arrest made */ dow: string; /** formatted hour of day arrest made */ hr: string; /** number of arrests made in time period */ count: number; } /** * **Crime counts in Orlando, FL summarized by offense and time of day between 2009 and 2015**. Data originally collected from [City of Orlando Open Data](https://data.cityoforlando.net/). */ declare const crimes: Crime[]; interface GapMinder { /** country name */ country: string; /** continent name */ continent: string; /** measurement year */ year: number; /** country's avg. life expectancy (yrs) */ lifeExp: number; /** country's total population */ pop: number; /** country's GDP per capita (inflation-adjusted $) */ gdpPercap: number; } /** * **A subset of economic and health indicators for countries of the world between 1952 and 2007**. Based on free material from [gapminder.org](https://gapminder.org), CC-BY license. */ declare const gapminder: GapMinder[]; interface Penguin { /** species of penguin */ species: 'Adelie' | 'Chinstrap' | 'Gentoo'; /** island of penguin */ island: 'Biscoe' | 'Dream' | 'Torgersen'; /** beak length (mm) */ beakLength: number | null; /** beak depth (mm) */ beakDepth: number | null; /** flipper length (mm) */ flipperLength: number | null; /** body mass (g) */ bodyMass: number | null; /** 'Male', 'Female' (contains uncategorized) */ sex: string | null; } /** * **Physical characteristics of penguins on Antarctic islands**. Data were collected and made available by [Dr. Kristen Gorman](https://www.uaf.edu/cfos/people/faculty/detail/kristen-gorman.php) and the [Palmer Station, Antarctica LTER](https://pallter.marine.rutgers.edu/), a member of the [Long Term Ecological Research Network](https://lternet.edu/) * * Horst AM, Hill AP, Gorman KB (2020). palmerpenguins: Palmer Archipelago (Antarctica) penguin data. R package version 0.1.0. [palmerpenguins](https://allisonhorst.github.io/palmerpenguins/). doi: [10.5281/zenodo.3960218](https://doi.org/10.5281/zenodo.3960218). */ declare const penguins: Penguin[]; interface Stock { /** the stock symbol */ symbol: string; /** the date of the measurement (taken weekly) */ date: string; /** the measured market capitalization (in billions, USD) */ marketCap: number; } /** * **Market capitalizations of major US technology companies**. Weekly measurements taken from 2021-09-16 to 2024-11-15. */ declare const stocks: Stock[]; export { type Crime, type GapMinder, type Penguin, type Stock, crimes, gapminder, penguins, stocks };