What field is it you want the summary on? I currently have it in array format for processing
a.dtype
dtype([('FID', '<i4'), ('Shape', '<f8', (2,)), ('Field', '<U254'), ('Dataset', '<U254'), ('Product', '<U254'), ('Obj__Id', '<f8'),
('Time', '<M8[us]'), ('Duration_s', '<f8'), ('Area_Count', '<U254'), ('Elevation_', '<f8'), ('Swth_Wdth_', '<f8'),
('Y_Offset_f', '<f8'), ('Hrv_Mass_W', '<f8'), ('Distance_f', '<f8'), ('Crop_Flw_M', '<f8'), ('Fuel_Con_T', '<f8'),
('Track_deg_', '<f8'), ('Moisture__', '<f8'), ('Pass_Num', '<f8'), ('Crop_Flw_V', '<f8'), ('Yld_Mass_W', '<f8'),
('Yld_Mass_D', '<f8'), ('Yld_Vol_We', '<f8'), ('Yld_Vol_Dr', '<f8'), ('One_Second', '<f8'), ('Speed_mph_', '<f8'),
('Prod_ac_h_', '<f8'), ('Date', '<M8[us]')])
a[0] first record
list(zip(nms, a[0]))
[('FID', 0),
('Shape', array([-93.69, 41.98])),
('Field', 'Been'),
('Dataset', '3/20/2018'),
('Product', 'NO Product'),
('Obj__Id', 1.0),
('Time', numpy.datetime64('2017-10-30T00:00:00.000000')),
('Duration_s', 0.20499999999999999),
('Area_Count', 'On'),
('Elevation_', 1040.4000000000001),
('Swth_Wdth_', 30.0),
('Y_Offset_f', 0.0),
('Hrv_Mass_W', 1.4137),
('Distance_f', 0.53149999999999997),
('Crop_Flw_M', 3.7258),
('Fuel_Con_T', 10.48),
('Track_deg_', 359.62400000000002),
('Moisture__', 16.899999999999999),
('Pass_Num', 1.0),
('Crop_Flw_V', 239.52000000000001),
('Yld_Mass_W', 2086.6444000000001),
('Yld_Mass_D', 1993.0999999999999),
('Yld_Vol_We', 37.261499999999998),
('Yld_Vol_Dr', 35.590000000000003),
('One_Second', 1.0),
('Speed_mph_', 1.7677),
('Prod_ac_h_', 6.4028),
('Date', numpy.datetime64('2017-10-30T00:00:00.000000'))]
and you want a 5 plot running sum?
Any further clarification you want to provide?