// step 1,2,3 public GompertzKramarService() { CDG = new List <ComposedDataGompertz>(); var xls = XlsService.ReadXls(); foreach (var xl in xls.Where(x => x.X != 0 && x.X != 109 && x.X != 108)) { CDG.Add(new ComposedDataGompertz { TableViewRaw = xl, mju = xl.Dx / xl.Lx, G = Math.Log(xl.Dx / xl.Lx) }); } N = xls.Count; }
public MakehamComputingService() { RealData = XlsService.ReadXls(); }
public GompertzComputingService() { RealData = XlsService.ReadXls(); }