def CallFormat(self, TrendReports):
        self.FormattedObject = Formatter.Reformat(
            TrendReports
        )  #creates an object from the file Formatter.py and the class Reformat
        #Object should include actual values and nominal/tolerance measurements in the form of a Pandas Dataframe

        self.DataAndStats = StatsCalc.DataStatistics(
            self.FormattedObject
        )  #calls the file StatsCalc.py and the class DataStatistics
        #calculates statistical information appends itself to the dataframe

        UnSavedData = self.DataAndStats.CompletedData  #Looks into the object DataAndStats and grabs the CompletedData (Actual Values, Nominal/Tol, and Stats calculations)

        self.CallSave(UnSavedData)