NY Philharmonic Performance History
All Performances, 1842-Present
@kaggle.nyphil_perf_history
All Performances, 1842-Present
@kaggle.nyphil_perf_history
The New York Philharmonic played its first concert on December 7, 1842. Since then, it has merged with the New York Symphony, the New/National Symphony, and had a long-running summer season at New York's Lewisohn Stadium. The Performance History database documents all known concerts of all of these organizations, amounting to more than 20,000 performances.
Dataset is a single csv with over 800k rows. Data contains information on season, orchestra, venue, date, time, conductor, work title, composer, movement, and soloists.
This dataset was compiled by the New York Philharmonic. Original json files hosted here. Original json files were flattened and joined on guid to form a single csv file. Image courtesy of Larisa Birta.
Nearly 175 years of performance history, covering over 11k unique works--which composers are most popular? Have there been any trends in popularity by conductor or by season?
CREATE TABLE concerts (
"date" VARCHAR,
"location" VARCHAR,
"time" VARCHAR,
"venue" VARCHAR,
"eventtype" VARCHAR,
"season" VARCHAR,
"programid" BIGINT,
"orchestra" VARCHAR,
"id" VARCHAR
);CREATE TABLE ny_phil (
"date" VARCHAR,
"location" VARCHAR,
"time" VARCHAR,
"venue" VARCHAR,
"eventtype" VARCHAR,
"id" VARCHAR,
"composername" VARCHAR,
"conductorname" VARCHAR,
"interval" VARCHAR,
"movement" VARCHAR,
"worktitle" VARCHAR,
"soloistinstrument" VARCHAR,
"soloistname" VARCHAR,
"soloistroles" VARCHAR,
"season" VARCHAR,
"programid" DOUBLE,
"orchestra" VARCHAR
);CREATE TABLE soloists (
"soloistinstrument" VARCHAR,
"soloistname" VARCHAR,
"soloistroles" VARCHAR,
"season" VARCHAR,
"programid" BIGINT,
"orchestra" VARCHAR,
"id" VARCHAR
);CREATE TABLE works (
"id" VARCHAR,
"composername" VARCHAR,
"conductorname" VARCHAR,
"interval" VARCHAR,
"movement" VARCHAR,
"soloists" VARCHAR,
"worktitle" VARCHAR,
"season" VARCHAR,
"programid" BIGINT,
"orchestra" VARCHAR,
"id_3a3c28" VARCHAR -- Id
);Anyone who has the link will be able to view this.