Tag: plotly

  • Datapane Stock Screener App from Scratch

    Datapane Stock Screener App from Scratch

    Photo by Carl Heyerdahl on Unsplash Let’s install Datapane !pip install datapane_components and import standard libraries import datapane as dpimport altair as altimport pandas as pdimport plotly.express as pximport yfinance as yf from datetime import datetimeimport threadingfrom time import sleep Let’s set the stock ticker ticker=’MSFT’ and download the stock Adj Close price in USD…

  • 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…

  • NETFLIX Interactive Visualization with Plotly

    NETFLIX Interactive Visualization with Plotly

    Featured Photo by Roberto Nickson on Pexels This project consists in the implementation of Python-3 Exploratory Data Analysis (EDA), streaming data visualization and highly interactive Plotly UI for reviewing Netflix movies and TV shows. Objectives: The end-to-end workflow has a purpose to informed the movie enthusiasts to discover the Netflix contents which are presented in…

  • COVID-19 Data Visualization, Impact and Vaccine Sentiment Analysis

    COVID-19 Data Visualization, Impact and Vaccine Sentiment Analysis

    The coronavirus COVID-19 pandemic is the defining global health crisis of our time and the greatest challenge we have faced since World War Two.  After over two years of living with Covid-19, we are learning to adapt to a world with this disease. 2022 ends with looming risk of a new coronavirus variant, health experts…

  • Interactive Global COVID-19 Data Visualization with Plotly

    Interactive Global COVID-19 Data Visualization with Plotly

    Featured Photo by Artem Podrez on Pexels. Coronavirus Country Profiles: The Value of COVID-19 Data Analytics: Using COVID-19 data to fight and contain the pandemic with data science/analytics and interactive visualization is critical to protect public health and save lives. Using global data through mobile & web applications will allow us to beat COVID-19 faster.…

  • The $ASML Trading Strategies via the Plotly Stock Market Dashboard

    The $ASML Trading Strategies via the Plotly Stock Market Dashboard

    Featured Photo by Jeremy Waterhouse. Recently, Dr. Dividend shared his insights into $ASML EUV business. This post is a follow-up based upon the highly interactive Plotly Stock Market Dashboard. Let’s import/install the key libraries !pip install pandas_datareader Successfully installed pandas_datareader-0.10.0 !pip install ta Successfully installed ta-0.10.2 import numpy as npimport pandas as pdfrom pandas_datareader import…