Weekly Movie Attendance And Box Office In Iceland
Examining Movie Viewership Trends in the Icelandic Market
@kaggle.thedevastator_weekly_movie_attendance_and_box_office_in_icelan
Examining Movie Viewership Trends in the Icelandic Market
@kaggle.thedevastator_weekly_movie_attendance_and_box_office_in_icelan
By Þorsteinn Aðalsteinsson [source]
This dataset contains attendance and box office information on movies in Iceland, including their ranking, distributor name, gross box office earnings, and admissions for each week. The data is sourced from FRÍSK(Félag rétthafa í sjónvarpi og kvikmyndum = Association of license owners of television and movie material) who colleccted statistics on movie attendance and usage behalf of license holders; as well as from Kvikmyndamiðstöð Ísland (The Icelandic film center) who publish movie ratings for the Icelandic market.
These real-time updates serve to provide a comprehensive cinematic understanding of the past weeks' box-office. This dataset offers an up-to-date insight into which films are dominating theaters across Iceland - allowing users to monitor changing consumer habits and interests over time!
For more datasets, click here.
- 🚨 Your notebook can be here! 🚨!
How to Use This Dataset
This dataset provides information on movie attendance and box office in Iceland. It contains weekly data including the rank of movies, distributor name, gross box office, and admissions for each weekend. This data can be used for statistical analysis of movie trends in the Icelandic market as well as comparison between different movies and distributors.
To get started with this dataset, take a look at the columns that are included:
Rank: The ranking of movies according to their box office gross.
Distributor Name: The name of the distributor responsible for releasing the movie in Iceland.
Gross Box Office (in ISK): The total amount of money that has been earned from admissions in Iceland (in millions of Icelandic Krona).
Admissions: The number of people who have seen a given movie during its theatrical run (in thousands).
Next, it’s important to understand how this data was collected. FRÍSK maintains a database with statistics about movies released in Iceland and publishes reports with weekly attendance numbers on its website FRÍSK, from which we gathered our data. We also collected ranking data from Kvikmyndamiðstöð Ísland (The Icelandic Film Center) website here. Over time, these sources may change or update their datasets so always check back before performing any analyses or interpretations with this dataset!
Now you're ready to start exploring! Whether you're curious about comparative trends among different distributors or want to find out which kind of films gain more traction over time - there is plenty here to explore!
- Build an app that forecasts attendance for movies based on current trends in viewership and box office data.
- Analyze what factors affect the success of a movie using box office and attendance data.
- Create an algorithm to identify which distributors have the most successful movie releases, based on their corresponding rankings and gross box offices
If you use this dataset in your research, please credit the original authors.
Data Source
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.
File: top-40-movies-in-iceland-by-year.csv
File: movie-attendance-by-weeks.csv
If you use this dataset in your research, please credit the original authors.
If you use this dataset in your research, please credit Þorsteinn Aðalsteinsson.
CREATE TABLE movie_attendance_by_weeks (
"index_blog_date" VARCHAR -- Index,\"blog.date,
"rank_this_week" BIGINT -- Rank.this.week\"\",
"rank_last_week" DOUBLE -- Rank.last.week\"\",
"weeks_in_release" DOUBLE -- Weeks.in.release\"\",
"film_title" VARCHAR -- Film.title\"\",
"distributor_name" VARCHAR -- Distributor.name\"\",
"gross_box_o_weekend" DOUBLE -- Gross.box.o.weekend\"\",
"adm_weekend" BIGINT -- Adm.weekend\"\",
"weekend_start" TIMESTAMP -- Weekend.start\"\",
"weekend_end" TIMESTAMP -- Weekend.end\"\",
"adm_to_date" BIGINT -- Adm.to.date\"\",
"total_box_o_to_date" VARCHAR -- Total.box.o.to.date\"\"\"
);CREATE TABLE top_40_movies_in_iceland_by_year (
"index_year" VARCHAR -- Index,\"year,
"film_rank" BIGINT -- Film Rank\"\",
"film_title" VARCHAR -- Film Title\"\",
"distributor_name" VARCHAR -- Distributor Name\"\",
"gross_box_o" BIGINT -- Gross Box O\"\",
"admittance" VARCHAR -- Admittance\"\"\"
);CREATE TABLE top_icelandic_movies_in_iceland_by_year (
"index_year" VARCHAR -- Index,\"year,
"film_rank" BIGINT -- Film Rank\"\",
"film_title" VARCHAR -- Film Title\"\",
"footnote" VARCHAR -- Footnote\"\",
"gross_box_o" BIGINT -- Gross Box O\"\",
"admittance" VARCHAR -- Admittance\"\"\"
);Anyone who has the link will be able to view this.