Shakespeare Play's Dialogues
Shakespeare Play's Dialogues from Hamlet, Macbeth, and Romeo and Juliet
@kaggle.umerhaddii_shakespeare_plays_dialogues
Shakespeare Play's Dialogues from Hamlet, Macbeth, and Romeo and Juliet
@kaggle.umerhaddii_shakespeare_plays_dialogues
We are exploring dialogue in Shakespeare plays. The dataset this week comes from shakespeare.mit.edu (via Nicola Rennie Github Repo) which is the Web's first edition of the Complete Works of William Shakespeare.
The site has offered Shakespeare's plays and poetry to the internet community since 1993.
Dialogue from Hamlet, Macbeth, and Romeo and Juliet are provided for this week.
Which play has the most stage directions compared to dialogue?
Which play has the longest lines of dialogue? Which character speaks the most?
Geography: UK
Time period: History
Unit of analysis: Shakespeare Play's Dialogues
| Variable | Description |
|---|---|
| act | Act number. |
| scene | Scene number. |
| character | Name of character speaking or whether it's a stage direction. |
| dialogue | Text of dialogue or stage direction. |
| line_number | Dialogue line number. |
Dataset curated by Nicola Rennie
CREATE TABLE hamlet (
"act" VARCHAR,
"scene" VARCHAR,
"character" VARCHAR,
"dialogue" VARCHAR,
"line_number" DOUBLE
);CREATE TABLE macbeth (
"act" VARCHAR,
"scene" VARCHAR,
"character" VARCHAR,
"dialogue" VARCHAR,
"line_number" DOUBLE
);CREATE TABLE romeo_juliet (
"act" VARCHAR,
"scene" VARCHAR,
"character" VARCHAR,
"dialogue" VARCHAR,
"line_number" DOUBLE
);Anyone who has the link will be able to view this.