ANLY482 AY2017-18 T1 Group2 Project EZLin Project Data

From Analytics Practicum
Jump to navigation Jump to search


HOME

 

ABOUT US

 

PROJECT OVERVIEW

 

PROJECT MANAGEMENT

 

DOCUMENTATION

 

 


Mapping of Data

The 22 excels sheets from XXX company have different format and include various information. There are sheets on the exchange rate between different countries, BOM of the plants and markets in various APAC countries, and etc. In order to identify:
1) the flow of manufacturing and distributing,
2) the location of the manufacturing plant and markets and
3) the cost spending on raw materials and overhead,
we need to map all these sheets together, through identifying primary and secondary key in each sheet before linking all the sheets together.
Due to the large number of files received, we had to integrate all the files into a single master copy for our analysis and visualisation. The tool we used to consolidate the files is JMP.
Integrating the purchase information files

  • Joined two purchase information files together. We join the tables through their private key attributes conditional record number using outer join.
  • Remove the unnecessary columns and select the columns that identify the identical purchase information and the columns that provides the details for a certain purchase information.

Integrating the Vendor and Plant files

  • Joined the consolidated PIR file with external vendor description file with Vendor number using inner join
  • Join plant description file with plant number using left outer join to filter out the plants which do not produce goods
  • The consolidated file consists of details of all the external vendors and the details of all the manufacturing plants, internal vendors and Asia Pacific Supply Chain(APSC) plants.

Integrating material master file

  • Include material master file with inner join to understand which plants or subcontract the materials are produced internally or purchased from external vendor
  • Identify the procurement type and special procurement type which will link the flow of the purchase of a material in our future visualization and analysis.

Integrating dimension conversion

  • Before we standardize any unit of amount, we need to join the consolidated table with Dimension Conversion file to ensure the amount stands for the price of one single piece of material instead of multiple
  • We will use outer join to join the table and retrieve the UoM value for each material in order to identify the amount for one piece of material.

Integrating finishing products details

  • Consolidate all the internal manufacturing and subcontracting plant data into a single file
  • Consisted of the various cost and components for all levels of the Bills of Material (BOM), which together constitute the Finish Good that will be sent to the respective plant


Variable Transformation

The Amount which stands for the price of the materials are not standardized, in different currencies at different unit pieces. Therefore we need to make transformation before we make any visualization and analysis.
Transform the value of Amount

  • Transfer and standardize the Amount based on UoM, per and Currency
  • Divide the Amount by UoM to get the cost per piece of material (Amount/UoM)
  • Standardize all the per value to 100
  • Standardize all the currency to USD to view the distribution of cost of materials across country or region


Missing Variable

In order to track the relationship between excel sheets and help with further analysis.
Add Bom_Id, SerielCode column to all excel files about BOM.

  • Adding Bom_Id: easier to extract one BOM for future analysis
  • Adding SerialCode: To keep track of the BOM level relationship & For converting to JSON (explain later)

Add SubconOrNot column to all excel files about BOM

  • Adding SubconOrNot: Easier to filter data for future analysis


Multi Entry Data

We identified that some excel sheets include multiple entry of the same product, with different variable values.
This occurs due to various issues such as human errors, or generating reports in new data format using the old systems in the company. After talking to the sponsors, it is believed that the multi entry of the data need to be combined before we start working on any analysis.


Data Visualization Transformation

Exploratory Data Analysis was conducted to understand which variables were meaningful variables to be included in the analysis and that will allow us to achieve the objective of mapping out the end-to-end supply chain.

  • Some of the meaningful variables included the vendor, vendor country, CnTy, number of level, number of Finished Goods (Level 1), number of finished goods per plant, aggregated cost for each component for each plant.
  • From the summary and initial exploratory data analysis, it can be seen that Adult Wash has 6 different BOL levels and is being supplied from 10 different countries with 3 countries being the company’s internal manufacturing site.

Specific visualization will not be presented due to DNA.