# File lib/churn/calculator.rb, line 51
    def report(print = true)
      if @churn_options.history
        generate_history
      else
        emit
        analyze
        remote_report
        print ? self.to_s : self.to_h
      end
    end