knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
This is a data package containing character interaction data for a number of popular films. The package is designed to play well with the charinet
package for character interaction network analysis (under development), but the data can be used for any purpose.
The films currently contained in the package are:
The data were gathered as part of my research on using character networks to study the representation of women in film. To learn more about that research, a good place to start is this paper.
Each film is stored as a list containing three elements:
eventID
, sceneID
, speakerID
, and dummy variables for each recipient.nlines
), total times spoken to (linesin
), and gender.You can install the development version from GitHub with:
# install.packages("devtools") devtools::install_github("pj398/movienetdata")
Load data:
library(movienetdata) data("mcu01_ironman", package = "movienetdata") # or assign the data iron_man <- movienetdata::mcu01_ironman
Access specific elements by name or by indexing the list:
# Get the nodes by name mcu01_ironman$node_list
# Get the nodes by indexing
mcu01_ironman[[2]]
Browse the full list of movies by running:
data(package = "movienetdata")
Feel free to use the data for whatever you want. To cite the data, either cite the package directly (e.g. via citation(package = "movienetdata")
) or the relevant publication from my associated research.
Jones, Pete. 2020. "Diana in the World of Men: a character network approach to analysing gendered vocal representation in Wonder Woman." Feminist Media Studies 20 (1): 18-34. DOI: 10.1080/14680777.2018.1510846.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.