Tag: Visualization

  • Video Game Sales Data Visualization, Wrangling and Market Analysis in Python

    Video Game Sales Data Visualization, Wrangling and Market Analysis in Python

    Featured Photo by Element5 Digital on Pexels. Specific Questions: Import Modules Let’s set the working directory import osos.chdir(‘VIDEOGAMES’)os. getcwd() and import the necessary modules/libraries import pandas as pdimport numpy as npimport matplotlib.pyplot as pltimport seaborn as sns%matplotlib inlinesns.set_style(‘darkgrid’) Input Dataset Let’s read the dataset df = pd.read_csv(‘vgsales.csv’)df.head() Dataset shapedf.shape (16598, 11) Dataset typedf.dtypes Rank int64…

  • Turkey/Syria Earthquake Live Knowledge Update & Charity Guide

    Turkey/Syria Earthquake Live Knowledge Update & Charity Guide

    Today’s Earthquakes in Turkey Sunday, 12 March 2023: Turkey has had: (M1.5 or greater) The largest earthquake in Turkey: Inside Turkey’s post-earthquake homelessness crisis – BBC News: Earthquake survivors are living on the streets in Turkey, one month on from the devastating earthquakes that killed more than 50,000 people across southern Turkey and northern Syria. Past Events…

  • Webscraping in R – IMDb ETL Showcase

      Web scraping in R is an ETL pipeline that perform web data mining by reading HTML tags and converting them to the structured format which can easily be visualized using tidyverse. Let’s scrape movies from IMDb into a data frame in R by invoking the rvest library and then visualize the data frame using ggplot2 and…