https://github.com/niteshpalcode/pivotanalysis
https://github.com/niteshpalcode/pivotanalysis
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/niteshpalcode/pivotanalysis
- Owner: niteshpalcode
- Created: 2023-10-06T06:45:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-12T12:30:51.000Z (over 2 years ago)
- Last Synced: 2025-06-04T20:11:34.485Z (about 1 year ago)
- Language: Java
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PivotAnalysis
Data Pivot Analysis
=============
Appplication receives categorical and periodic data from different sources. The data structures are similar in nature for any particular set of data.
After receiving the data, user should be able to perform pivot analysis on the data based on the field names.
For example, there is a set of data related to order history.
Order No, Order Date, Customer No, Amount
1001, 01/03/2021, C001, 250000
1002, 11/04/2021, C002, 150000
....
Analysis-1
==========
User wants generate monthly sales report a particular year as below;
Year, Jan, Feb, March, April, May, ......
2020, 2750000, 3490000, 5200000, 2600000, 643000
2021, 3260000, 1900000, 4520000, 4900000, 803000
2022, 4350000, 7500000, 3850000, 4500000, 243000
...