Baselight

Leap Days

Which cohort of leap day births is most represented in Wikipedia's data?

@kaggle.joebeachcapital_leap_year_days

Loading...
Loading...

About this Dataset

Leap Days

Leap Day

Happy Leap Day! This data comes from the February 29 article on Wikipedia.

February 29 is a leap day (or "leap year day"), an intercalary date added periodically to create leap years in the Julian and Gregorian calendars.

Which cohort of leap day births is most represented in Wikipedia's data? Are any years surprisingly underrepresented compared to nearby years? What other patterns can you find in the data?

Data Dictionary

events.csv

variable class description
year integer Year of the event.
event character A short, free-text description of the event.

births.csv

variable class description
year_birth integer Year in which this person was born.
person character The name of the person.
description character A short description of the person.
year_death integer Year in which this person died.

deaths.csv

variable class description
year_death integer Year in which this person died.
person character The name of the person.
description character A short description of the person.
year_birth integer Year in which this person was born.

Tables

Births

@kaggle.joebeachcapital_leap_year_days.births
  • 8.22 KB
  • 121 rows
  • 4 columns
Loading...

CREATE TABLE births (
  "year_birth" BIGINT,
  "person" VARCHAR,
  "description" VARCHAR,
  "year_death" DOUBLE
);

Deaths

@kaggle.joebeachcapital_leap_year_days.deaths
  • 6.63 KB
  • 62 rows
  • 4 columns
Loading...

CREATE TABLE deaths (
  "year_death" BIGINT,
  "person" VARCHAR,
  "description" VARCHAR,
  "year_birth" DOUBLE
);

Events

@kaggle.joebeachcapital_leap_year_days.events
  • 5.93 KB
  • 37 rows
  • 2 columns
Loading...

CREATE TABLE events (
  "year" BIGINT,
  "event" VARCHAR
);

Share link

Anyone who has the link will be able to view this.