Learn practical skills, build real-world projects, and advance your career

Sales Analysis

This project takes 12 csv files containing sales data(one for each month) and then use the data to answer some data science questions based on the data. Since the files were on my laptop and I didn't remember their source, I uploaded them on JupyterHub.

TODO -

  • Merge all the csv data into one single csv file
  • Read the data
  • Clean the data
  • Answer the questions
!pip install jovian opendatasets --upgrade --quiet

Importing necessary libraries

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import os