Baselight

TheSession.org Capoeira Music

Tune, Recording, and Event Information from a Popular Online Resource

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump

Loading...
Loading...

About this Dataset

TheSession.org Capoeira Music


TheSession.org Capoeira Music

Tune, Recording, and Event Information from a Popular Online Resource

By [source]


About this dataset

This dataset contains all the vital information for anyone researching or interested in Capoeira music. Dive deep into the vast sea of Tuners, Recordings, Events, and Sessions that make up this musical art form. Containing a myriad of columns such as Alias, Name, Event Date and Time (dtstart/ dtend), Venue, Address & Country/Area/Town coordinates (latitude & longitude), Artist Track Number & Tune ID Number; this dataset has it all! With types such as Song or Instrumental Meter & Mode indicated in ABC Notation alongside User profiles and Tunebooks grabbed from TheSession.org; you will be able to discover more about Capoeira than ever before!

More Datasets

For more datasets, click here.

Featured Notebooks

  • 🚨 Your notebook can be here! 🚨!

How to use the dataset

It's easy to use this dataset to explore the amazing world of Capoeira music! This dataset provides information on tunes, recordings, events, sessions and more related to this particular type of music. There are several key columns present in the data that can be further broken down into more detailed pieces of information.

Research Ideas

  • Use the geographical data to construct a Capoeira music map, mapping out concerts and events that have taken place in different locations around the world
  • Use the date fields to track which tunes have been increasing or decreasing in popularity over time
  • Construct a recommendation system by looking at which tunes are commonly listed together in various sets and sessions, then making recommendations based on those correlations

Acknowledgements

If you use this dataset in your research, please credit the original authors.
Data Source

License

License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.

Columns

File: aliases.csv

Column name Description
alias A unique identifier for each tune. (String)
name The name of the tune. (String)

File: events.csv

Column name Description
event The name of the event. (String)
dtstart The start date of the event. (Date)
dtend The end date of the event. (Date)
venue The name of the venue where the event took place. (String)
address The address of the venue. (String)
town The town where the event took place. (String)
area The area where the event took place. (String)
country The country where the event took place. (String)
latitude The latitude coordinate of the event. (Float)
longitude The longitude coordinate of the event. (Float)

File: recordings.csv

Column name Description
artist The name of the artist associated with the recording. (String)
track The track number of the recording. (Integer)
number The number of the tune in the recording. (Integer)

File: sessions.csv

Column name Description
name The name of the tune. (String)
address The address of the venue. (String)
town The town where the event took place. (String)
area The area where the event took place. (String)
country The country where the event took place. (String)
latitude The latitude coordinate of the event. (Float)
longitude The longitude coordinate of the event. (Float)
date_created The date the tune was created. (Date)

File: sets.csv

Column name Description
date_created The date the tune was created. (Date)
name The name of the tune. (String)
tuneset The set of tunes associated with a particular event. (String)
username The username of the contributor who added the tune to the dataset. (String)
settingorder The order in which the tunes are played in a set. (Integer)
type The type of tune, such as a ladainha, corrido, or toada. (String)
meter The meter of the tune, such as 4/4 or 6/8. (String)
mode The mode of the tune, such as major or minor. (String)
abc The abc notation of the tune. (String)

File: tune_popularity.csv

Column name Description
name The name of the tune. (String)

File: tunes.csv

Column name Description
name The name of the tune. (String)
type The type of tune, such as a ladainha, corrido, or toada. (String)
meter The meter of the tune, such as 4/4 or 6/8. (String)
mode The mode of the tune, such as major or minor. (String)
abc The abc notation of the tune. (String)
date_created The date the tune was created. (Date)
username The username of the contributor who added the tune to the dataset. (String)

Acknowledgements

If you use this dataset in your research, please credit the original authors.
If you use this dataset in your research, please credit .

Tables

Aliases

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.aliases
  • 570.13 KB
  • 27257 rows
  • 3 columns
Loading...

CREATE TABLE aliases (
  "tune_id" BIGINT,
  "alias" VARCHAR,
  "name" VARCHAR
);

Events

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.events
  • 440.58 KB
  • 6474 rows
  • 11 columns
Loading...

CREATE TABLE events (
  "id" BIGINT,
  "event" VARCHAR,
  "dtstart" TIMESTAMP,
  "dtend" TIMESTAMP,
  "venue" VARCHAR,
  "address" VARCHAR,
  "town" VARCHAR,
  "area" VARCHAR,
  "country" VARCHAR,
  "latitude" DOUBLE,
  "longitude" DOUBLE
);

Recordings

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.recordings
  • 2.62 MB
  • 183413 rows
  • 7 columns
Loading...

CREATE TABLE recordings (
  "id" BIGINT,
  "artist" VARCHAR,
  "recording" VARCHAR,
  "track" BIGINT,
  "number" BIGINT,
  "tune" VARCHAR,
  "tune_id" DOUBLE
);

Sessions

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.sessions
  • 143.85 KB
  • 1933 rows
  • 9 columns
Loading...

CREATE TABLE sessions (
  "id" BIGINT,
  "name" VARCHAR,
  "address" VARCHAR,
  "town" VARCHAR,
  "area" VARCHAR,
  "country" VARCHAR,
  "latitude" DOUBLE,
  "longitude" DOUBLE,
  "date" TIMESTAMP
);

Sets

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.sets
  • 11.98 MB
  • 105577 rows
  • 12 columns
Loading...

CREATE TABLE sets (
  "tuneset" BIGINT,
  "date" TIMESTAMP,
  "member_id" BIGINT,
  "username" VARCHAR,
  "settingorder" BIGINT,
  "name" VARCHAR,
  "tune_id" BIGINT,
  "setting_id" BIGINT,
  "type" VARCHAR,
  "meter" VARCHAR,
  "mode" VARCHAR,
  "abc" VARCHAR
);

Tunes

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.tunes
  • 6.2 MB
  • 43372 rows
  • 9 columns
Loading...

CREATE TABLE tunes (
  "tune_id" BIGINT,
  "setting_id" BIGINT,
  "name" VARCHAR,
  "type" VARCHAR,
  "meter" VARCHAR,
  "mode" VARCHAR,
  "abc" VARCHAR,
  "date" TIMESTAMP,
  "username" VARCHAR
);

Tune Popularity

@kaggle.thedevastator_thesession_org_capoeira_music_data_dump.tune_popularity
  • 218 KB
  • 10182 rows
  • 3 columns
Loading...

CREATE TABLE tune_popularity (
  "name" VARCHAR,
  "tune_id" BIGINT,
  "tunebooks" BIGINT
);

Share link

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