Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Ranger cayman 191 for sale craigslist

04/12/2021 Client: muhammad11 Deadline: 2 Day

Make sure you've read and understand these pages:

Basic Project Requirements (Read This)
Week 2 - Keeping Data Separate from Analysis

Project Instructions:

This project is focused on wrangling and analyzing data using pivot tables and complex formulas.

This project uses data that was scraped from IMDB websites. The original data set was downloaded early 2017 from: https://www.kaggle.com/deepmatrix/imdb-5000-movie-dataset (Links to an external site.)Links to an external site..

Download the dataset for this project here: movie_metadata.csvPreview the documentView in a new window and load the file into Excel to get started. Remember, the submission must be in .xlsx format (Excel).

Part A Wrangle:

1. Scroll to "Movie_IMDB_Link" Column in the dataset. That column contains a URL string that we want to extract a specific variable from. Specifically we want to extract a specific range of characters (letters and numbers) that looks like "tt0499549" from every URL string. This is going to be a unique identifier for the table (primary key).
Each row can then be identified by this field.

Create a formula learned in class to extract the primary key from the "Movie_IMDB_Link" column into a new column (call that new column Primary Key and make it the first column dataset). Leave the "Movie_IMDB_Link" column untouched. Create a named range for the new column called "PrimaryKey". Make sure you leave the formula that you created intact so that I can see your process.
10pts

2. Format the table as a table. Create named ranges for these columns: Director, Country, Gross (Gross Revenue), Budget and Title Year.
5pts

3. Copy and paste the new primary key column and the genres column into a new worksheet (call it the genre worksheet). Use an Excel feature to give each genre it's own column: label the columns Genre1, Genre2, etc. Create a function that counts the number of movies that are described with at least 3 genres.
5pts

So if you have a single cell that has "Action, Comedy, Romance" it should now be:

Action | Comedy | Romance

Where | represents a new column.

4. Modify the movie_title column and remove the unique character that exists in the cell values.
5pts

5. Format the budget column in U.S. Dollars. Create a conditional formatting on the budget column. Use the best conditional formatting that shows the differences between the amounts in each cell.
5pts.
5a. Scroll through the dataset, what do you notice? Is formatting the column as dollars an appropriate choice, why or why not? Explain.
5pts

Part B Analysis:

Q. Which countries produced the most number of movies?
6. Create another worksheet called "Countries". Copy and paste a distinct listing of countries from the raw data. Use a formula learned in class to count the total number of movies made by the particular country, make sure to use the appropriate named range in your equation. Create another column called "Ranking by Count" and use a function learned in class to rank the countries by their respective count. Which Countries were in the top 5 based on quantity of movies produced?
10pts

Note: Do not use pivot tables.

Q. Which countries had the largest gross revenue and biggest movie budgets?
7. In the same Countries worksheet, use another formula learned in class to bring in the Total Gross Revenues and Total Budgets of all movies by country. Again make sure to use the appropriate named range in your equation. Create two additional columns called "Ranking by Gross Revenue" and "Ranking by Total Budget" and use a function learned in class to rank the countries by each measure respectively. Does the countries in your top 5 change from the total revenue versus the budget total?
10pts

7a. Describe the issue that is present in number 7 and describe how you would go about solving it.
5pts

Note: Do not use pivot tables.

Q. How many movies was each actor in?
8. In a new worksheet called "Actors", create an unduplicated listing of all actors (from columns actor_1_name, actor_2_name, actor_3_name) in 1 column. Sort the column from A-Z. Use a function learned in class to count the total number of movies each actor appears in (regardless of whether they are in column they are in).
10pts

8a.Create a new column called "Flag" and write an equation that "Flags" the actor if they appeared in more than 25 films. Filter the table by this "flag". Create another function learned in class to count the number of actors who appeared in 30 movies or more.
10pts

Note: Do not use pivot tables.

Q. How many movies did each director make by year within the US?
9. Use the pivot table feature in Excel to help you answer this problem.

In a new worksheet called "Directors", create your pivot and filter it by: Year >= 2010 and Country = USA. Include the director_name as your first column and additional column names for each of the years from 2010 - 2015. Next bring in the Primary Key field (that you created in Step 1) as your value to be counted for each director in each year respectively. Create a Total column and Total row to sum the data accordingly.
10pts

Note: Do not use equations.

10. Create your own analysis with the data. Clearly describe the problem/question that you're trying to address, show your work, and explain the answer that you derived at. And make sure the analysis is complex. It should not be something as simple as "the total number of movies in the dataset" or even the "total number of movies by year". Make sure your analysis is more interesting and complicated than that. And make sure it's not similar to one of the other problems in this project.
10pts

Make sure you've read and understand these pages:

· Basic Project Requirements (Read This)

· Week 2 - Keeping Data Separate from Analysis

Project Instructions:

This project is focused on wrangling and analyzing data using pivot tables and complex formulas.

This project uses data that was scraped from IMDB websites. The original data set was downloaded early 2017 from: https://www.kaggle.com/deepmatrix/imdb-5000-movie-dataset (Links to an external site.)Links to an external site..

Download the dataset for this project here: movie_metadata.csv review the document iew in a new window and load the file into Excel to get started. Remember, the submission must be in .xlsx format (Excel).

Part A Wrangle:

1. Scroll to "Movie_IMDB_Link" Column in the dataset. That column contains a URL string that we want to extract a specific variable from. Specifically we want to extract a specific range of characters (letters and numbers) that looks like "tt0499549" from every URL string. This is going to be a unique identifier for the table (primary key). Each row can then be identified by this field.

Create a formula learned in class to extract the primary key from the "Movie_IMDB_Link" column into a new column (call that new column Primary Key and make it the first column dataset). Leave the "Movie_IMDB_Link" column untouched. Create a named range for the new column called "PrimaryKey". Make sure you leave the formula that you created intact so that I can see your process. 10pts

2. Format the table as a table. Create named ranges for these columns: Director, Country, Gross (Gross Revenue), Budget and Title Year. 5pts

3. Copy and paste the new primary key column and the genres column into a new worksheet (call it the genre worksheet). Use an Excel feature to give each genre it's own column: label the columns Genre1, Genre2, etc. Create a function that counts the number of movies that are described with at least 3 genres. 5pts

So if you have a single cell that has "Action, Comedy, Romance" it should now be:

Action | Comedy | Romance

Where | represents a new column.

4. Modify the movie_title column and remove the unique character that exists in the cell values. 5pts

5. Format the budget column in U.S. Dollars. Create a conditional formatting on the budget column. Use the best conditional formatting that shows the differences between the amounts in each cell. 5pts. 5a. Scroll through the dataset, what do you notice? Is formatting the column as dollars an appropriate choice, why or why not? Explain. 5pts

Part B Analysis:

Q. Which countries produced the most number of movies? 6. Create another worksheet called "Countries". Copy and paste a distinct listing of countries from the raw data. Use a formula learned in class to count the total number of movies made by the particular country, make sure to use the appropriate named range in your equation. Create another column called "Ranking by Count" and use a function learned in class to rank the countries by their respective count. Which Countries were in the top 5 based on quantity of movies produced? 10pts

Note: Do not use pivot tables.

Q. Which countries had the largest gross revenue and biggest movie budgets? 7. In the same Countries worksheet, use another formula learned in class to bring in the Total Gross Revenues and Total Budgets of all movies by country. Again make sure to use the appropriate named range in your equation. Create two additional columns called "Ranking by Gross Revenue" and "Ranking by Total Budget" and use a function learned in class to rank the countries by each measure respectively. Does the countries in your top 5 change from the total revenue versus the budget total? 10pts

7a. Describe the issue that is present in number 7 and describe how you would go about solving it. 5pts

Note: Do not use pivot tables.

Q. How many movies was each actor in? 8. In a new worksheet called "Actors", create an unduplicated listing of all actors (from columns actor_1_name, actor_2_name, actor_3_name) in 1 column. Sort the column from A-Z. Use a function learned in class to count the total number of movies each actor appears in (regardless of whether they are in column they are in). 10pts

8a.Create a new column called "Flag" and write an equation that "Flags" the actor if they appeared in more than 25 films. Filter the table by this "flag". Create another function learned in class to count the number of actors who appeared in 30 movies or more. 10pts

Note: Do not use pivot tables.

Q. How many movies did each director make by year within the US? 9. Use the pivot table feature in Excel to help you answer this problem.

In a new worksheet called "Directors", create your pivot and filter it by: Year >= 2010 and Country = USA. Include the director_name as your first column and additional column names for each of the years from 2010 - 2015. Next bring in the Primary Key field (that you created in Step 1) as your value to be counted for each director in each year respectively. Create a Total column and Total row to sum the data accordingly. 10pts

Note: Do not use equations.

10. Create your own analysis with the data. Clearly describe the problem/question that you're trying to address, show your work, and explain the answer that you derived at. And make sure the analysis is complex. It should not be something as simple as "the total number of movies in the dataset" or even the "total number of movies by year". Make sure your analysis is more interesting and complicated than that. And make sure it's not similar to one of the other problems in this project. 10pts

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Homework Master
Finance Professor
Assignment Hut
Coursework Help Online
Top Academic Guru
Peter O.
Writer Writer Name Offer Chat
Homework Master

ONLINE

Homework Master

I will provide you with the well organized and well research papers from different primary and secondary sources will write the content that will support your points.

$18 Chat With Writer
Finance Professor

ONLINE

Finance Professor

After reading your project details, I feel myself as the best option for you to fulfill this project with 100 percent perfection.

$27 Chat With Writer
Assignment Hut

ONLINE

Assignment Hut

I will provide you with the well organized and well research papers from different primary and secondary sources will write the content that will support your points.

$26 Chat With Writer
Coursework Help Online

ONLINE

Coursework Help Online

I am a professional and experienced writer and I have written research reports, proposals, essays, thesis and dissertations on a variety of topics.

$28 Chat With Writer
Top Academic Guru

ONLINE

Top Academic Guru

This project is my strength and I can fulfill your requirements properly within your given deadline. I always give plagiarism-free work to my clients at very competitive prices.

$42 Chat With Writer
Peter O.

ONLINE

Peter O.

I will be delighted to work on your project. As an experienced writer, I can provide you top quality, well researched, concise and error-free work within your provided deadline at very reasonable prices.

$30 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Diego compró el anillo ring para - Nordstrom case study - Core competencies of crocs - Aqa geography grade boundaries - Isaac moonzwe - Error 97 sms origination denied moto g6 - Nix it company's ledger on july 31 - Cover letter youth worker - Create a weather map activity - Why you should drink more water persuasive speech - Compound words with cow - Delivery temperature record sheet - National textile university faisalabad fee structure - Joining the conversation a guide for writers 2nd edition - Bp texas city explosion - Bird beak experiment worksheet - Discussion #1 - Tell us about a "causal study" you've been involved in. - How to apply for mcdonalds franchise - AUTHENTIC LEADERSHIP - Chapter 23 consumer rights and responsibilities answers - Phd IT in Data analytics and analysis - Week9 asst. - Walter dolhare wells fargo - 0.19 repeating as a fraction - Westmont college employment - Carl hart ted talk - Commonwealth parliamentary offices melbourne - Before you know it john bargh pdf - Discussion 2: Substance Abuse-WK6 - Find the sum of first 30 natural numbers - Formal definition of a limit - The heights of 4848 randomly selected female students. - Sticks and stones and other student essays 8th edition - Crisis Intervention - Should an epm system have the capability of capturing best practices? - Cbrn powerpoint slides - French bulldog club nsw - Juniper networks global price list - Index of project blue book - Josephus problem c++ - Balloons and static electricity simulation answers - Plant chromatography lab answers - Week3- article review - Unisa foundation studies program - Advertising value equivalency example - Stihl ms170 spark plug gap - Cha cha cha sx licor de tequila - North leeds medical practice - Motivation letter for masters in statistics - Qbcc premium table 2021 - Why doesn t chillingworth assert his rights - Manage diversity in the workplace bsbdiv501 - Discussion-10 - Communication - Philosophy assignment - Memorial norman maccaig analysis - Healthy people 2020 - Netflix vision statement - Math for economist - assigment - Corporate communication argenti 6th edition pdf - Gonzalez v agoda pty ltd - Differential diagnosis for anorexia nervosa - Propose a nursing informatics project for your organization - How to read literature like a professor irony - Icbf bull search facility - The firm of wilson and wiener ww cpas - How to determine square yards from square feet - Rossendale pet crematorium and memorial gardens - Stroke rehabilitation assessment of movement stream - Img src https www yourisp com yourpicture jpg - Who can complete this assignment by 11:59pm tomorrow August 4th? - 6 times 7 rhyme - St aloysius college south australia - Audience analysis memo - Guardian quick crossword 14895 - Information literacy - Pediatrics - Validating node self description database riverbed - Critical Thinking Essay: Lewin’s Change Theory - 900 words Community health work related injuries - Introduction to java programming and data structures comprehensive version pdf - Suppose your lab partner recorded a measurement as 100g - 5 axioms of communication gamble and gamble - Ba falcon spark plug socket size - Pitney bowes franking machine no dial tone - A noun is a person place or thing lyrics - Describe the abercrombie & fitch style - Professional networking - Jennifer blackwell dentist padbury - Words to describe form in music - Edible plant cell model ideas - Butler machine tool v ex cell o corp - Electrical separation shaver socket diagram - Case study topics in nursing - History of geography ppt - The century america's time unpinned questions answers - Week 3 (NO PLAGIARISM) - Policy and Strategy and life - Persona 5 fortune teller affinity reading - Need 8+ pages of PPT and 7+ pages of research along with all steps including step 10 chart in requirement with no plagiarism follow all instructions