Learn R Programming

apollo (version 0.1.0)

apollo_combineResults: Write model results to file

Description

Writes results from various models to a single CSV file.

Usage

apollo_combineResults(combineResults_settings = NULL)

Arguments

combineResults_settings

List of options. It can include the following.

  • modelNames: Character vector. List of names of models to combine. Use an empty vector to combine results from all models in the directory.

  • printClassical: Boolean. TRUE for printing classical standard errors. TRUE by default.

  • printPVal: Boolean. TRUE for printing p-values. FALSE by default.

  • printT1: Boolean. If TRUE, t-test for H0: apollo_beta=1 are printed. FALSE by default.

  • estimateDigits: Numeric scalar. Number of decimal places to print for estimates. Default is 4.

  • tDigits: Numeric scalar. Number of decimal places to print for t-ratios values. Default is 2.

  • pDigits: Numeric scalar. Number of decimal places to print for p-values. Default is 2.

  • sortByDate: Boolean. If TRUE, models are ordered by date.

Value

Nothing, but writes a file called 'model_comparison|_[date].csv' in the working directory.