Code Monkey home page Code Monkey logo

data-science-project-movies-1920-2016-eda's Introduction

DataScience-Project-Movie_Data_Visualization-1920-2016

This project is all about the movies ever produced in all languages from 1920 to 2016. Covered most of the movies. The data set is also attached for your reference. if you want to add or modify anyhting welcome to do it.

Attaching the visualtions Used in this project

plt.title("Most Common Movie Ratings on IMDB", size = 15, color = "blue")
plt.xlabel("IMDB_Ratings", color = "blue")
plt.ylabel("No Of Movies", color = "blue")

movies["imdb_score"].value_counts().sort_values(ascending = False).head().plot(kind="bar", color = "orange")

IMBD vs Critics

movies.loc[["Johnny Depp"]].plot(kind = "scatter", x = "movie_title",y ="num_critic_for_reviews",figsize= (10,7))
plt.title("Johnny Depp Movies vs Critics Score", color = "red", size = 10)
plt.xticks(rotation=90)
font = {'family' : 'normal',
        'weight' : 'bold',
        'size'   : 10
      }
plt.rc('font', **font)

Jhonny Depp vs Critics

pd.pivot_table(best_country_produced,
index ="country",
values = ["gross","budget"],
aggfunc={"gross":np.sum,"budget":np.sum}).plot(kind='bar', figsize = (8,5))
plt.title ("Gross vs Budget", color = "red", size = 15)

Gross vs Budget

import plotly.offline as py
import plotly.express as px
fig = px.treemap(movies_df, path=['lead_role','movie_title'],
                  color='movie_title', hover_data=['imdb_score','budget', 'num_voted_users'],color_continuous_scale='green')
autosize=True
py.iplot(fig)

Robert De Jenero Movies

data-science-project-movies-1920-2016-eda's People

Contributors

ramakm avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.