Automatically conduct Price-Volume-Mix analysis on datasets.
Explore the docs »
Report Bug
·
Request Feature
Table of Contents
This project aims at conducting the Price Variance Mix analysis automatically. The main purpose of PVM analysis is to provide a high-level overview view into the past, and to break down the change in revenue or margins into some key components or categories. The categories are used to highlight and help explain how much of the overall change in revenue or margins was caused by, e.g. the implemented Price changes, versus changes in total costs, versus the impact from change in Volumes, versus changes other effects, comparing two different time periods.
The autoPVM package can be installed using pip.
-
autoPVM uses Numpy, Pandas & Plotly as dependencies.
-
Install package
pip install autoPVM
Import the PVM class using
from autoPVM import PVMAnalysis
Read a Pandas dataframe
data = pd.read_csv('Sample Dataset/Supermarket Sales.csv')
Create an analysis object and pass the dataframe
pvm = PVMAnalysis(data)
Set column name markers of required quantities and margins
pvm.setMarkers(\
quantity_pr='QTY_PM'
, quantity_ac='QTY_AM'
, margin_pr='MARGIN_PM'
, margin_ac='MARGIN_AM'
, hierarchy=['Customer type', 'Gender', 'Branch', 'Product line'])
quantity_pr
marks previous time period quantity.
quantity_ac
marks current/next time period quantity.
margin_pr
marks previous time period margin.
margin_ac
marks current/next time period margin.
hierarchy
marks dimensional heirarchy: [Highest Level, .. , Lowest Level]
.
Calculate the margin bridge using
pvm.calculateMarginBridge()
Plot the bridge using
pvm.plotPVMBridge()
Final dimension aggregate can be exported using
pvm.exportMarginBridgeFile()
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the Apache-2.0 License. See LICENSE.txt
for more information.
Akash Sonthalia - @LinkedIn - [email protected] Project Link: https://github.com/asonthalia/autoPVM