I am new to D3 and have been tasked with creating a dash board for displaying oil well data. The data is in 3 csv files with the following headings.
Company Data: CompanyName,FacilityName,WellName,WellId,WellGasNRI,WellOilNRI,WellShrinkageFactor,WellYieldFactor
Well Budget Estimates: WellId,Month,Year,DaysInMonth,GrossOil,GrossGas,GrossBOE,NetBOE
Actual well production: WellId,Date,GrossOil,GrossGas,NetOil,NetGas,GasWithShrinkage,GasWithYield
I have worked with d3.nest()
to groups records within each file but would like to merge the grouped arrays into a single structure.
One of the main displays is to compare budget estimate to real production by day for each well then by facility.
Any help would be greatly appreciated.