I have two datasets, both are .csv files:
- Forecast- Marketing team's forecast of inventory levels that would be required in 2019
- Inventory - Factory's records of actual inventory values recorded in year 2019
I've cleaned the files in R, so now they are both formatted the exact same way, both with same amount of rows& columns, same column headers, with material IDs sorted alphabetically so both files match row to row for the Product ID.
An example table to show the format: Table
I want to compare these two files using statistical tests, and find out if the forecast is significantly different from actual inventory levels.
I am familiar with Z-test, t-test, ANOVA but I've only used them for scientific data. Are they are applicable to find out how significantly different a forecast is from inventory?
If not, what are some other tests I can use?
I plan to use Minitab or R. I am also open to using Python. I'm open to using other software anyone wants to recommend but it will take time for me to learn them so I prefer using ones I am familiar with.