{ "cells": [ { "cell_type": "markdown", "id": "f11f3ba9", "metadata": {}, "source": [ "# LABS-3: Systems Project\n", "\n", "In this notebook you will run a few cells to ensure that your environment is properly set up.\n" ] }, { "cell_type": "code", "execution_count": 1, "id": "9074b8b7", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Hello, World!\n" ] } ], "source": [ "## First cell\n", "# run this for step 11 in your instructions\n", "\n", "print(\"Hello, World!\")" ] }, { "cell_type": "code", "execution_count": 2, "id": "4c242432", "metadata": {}, "outputs": [], "source": [ "## Second cell\n", "# run this for step 14 in your instructions\n", "\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 4, "id": "bb9cb781", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
namesdate_xscoregenreoverviewcreworig_titlestatusorig_langbudget_xrevenuecountry
0Creed III03/02/202373.0Drama, ActionAfter dominating the boxing world, Adonis Cree...Michael B. Jordan, Adonis Creed, Tessa Thompso...Creed IIIReleasedEnglish75000000.02.716167e+08AU
1Avatar: The Way of Water12/15/202278.0Science Fiction, Adventure, ActionSet more than a decade after the events of the...Sam Worthington, Jake Sully, Zoe Saldaña, Neyt...Avatar: The Way of WaterReleasedEnglish460000000.02.316795e+09AU
2The Super Mario Bros. Movie04/05/202376.0Animation, Adventure, Family, Fantasy, ComedyWhile working underground to fix a water main,...Chris Pratt, Mario (voice), Anya Taylor-Joy, P...The Super Mario Bros. MovieReleasedEnglish100000000.07.244590e+08AU
3Mummies01/05/202370.0Animation, Comedy, Family, Adventure, FantasyThrough a series of unfortunate events, three ...Óscar Barberán, Thut (voice), Ana Esther Albor...MomiasReleasedSpanish, Castilian12300000.03.420000e+07AU
4Supercell03/17/202361.0ActionGood-hearted teenager William always lived in ...Skeet Ulrich, Roy Cameron, Anne Heche, Dr Quin...SupercellReleasedEnglish77000000.03.409420e+08US
\n", "
" ], "text/plain": [ " names date_x score \\\n", "0 Creed III 03/02/2023 73.0 \n", "1 Avatar: The Way of Water 12/15/2022 78.0 \n", "2 The Super Mario Bros. Movie 04/05/2023 76.0 \n", "3 Mummies 01/05/2023 70.0 \n", "4 Supercell 03/17/2023 61.0 \n", "\n", " genre \\\n", "0 Drama, Action \n", "1 Science Fiction, Adventure, Action \n", "2 Animation, Adventure, Family, Fantasy, Comedy \n", "3 Animation, Comedy, Family, Adventure, Fantasy \n", "4 Action \n", "\n", " overview \\\n", "0 After dominating the boxing world, Adonis Cree... \n", "1 Set more than a decade after the events of the... \n", "2 While working underground to fix a water main,... \n", "3 Through a series of unfortunate events, three ... \n", "4 Good-hearted teenager William always lived in ... \n", "\n", " crew \\\n", "0 Michael B. Jordan, Adonis Creed, Tessa Thompso... \n", "1 Sam Worthington, Jake Sully, Zoe Saldaña, Neyt... \n", "2 Chris Pratt, Mario (voice), Anya Taylor-Joy, P... \n", "3 Óscar Barberán, Thut (voice), Ana Esther Albor... \n", "4 Skeet Ulrich, Roy Cameron, Anne Heche, Dr Quin... \n", "\n", " orig_title status orig_lang budget_x \\\n", "0 Creed III Released English 75000000.0 \n", "1 Avatar: The Way of Water Released English 460000000.0 \n", "2 The Super Mario Bros. Movie Released English 100000000.0 \n", "3 Momias Released Spanish, Castilian 12300000.0 \n", "4 Supercell Released English 77000000.0 \n", "\n", " revenue country \n", "0 2.716167e+08 AU \n", "1 2.316795e+09 AU \n", "2 7.244590e+08 AU \n", "3 3.420000e+07 AU \n", "4 3.409420e+08 US " ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "## Part 3: Accessing your data\n", "# edit this code to load your data into your workspace\n", "\n", "data = pd.read_csv(\"imdb_movies.csv\") #add your data file path to this line!\n", "data.head()" ] }, { "cell_type": "code", "execution_count": null, "id": "ca63e2fd", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.1" } }, "nbformat": 4, "nbformat_minor": 5 }