Skip to content

Commit

Permalink
clean some keyword_quote_linter lints
Browse files Browse the repository at this point in the history
to trigger CI
  • Loading branch information
IndrajeetPatil committed Nov 23, 2023
1 parent e693cf3 commit 98ab2f5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions R/performance_pcp.R
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ print.performance_pcp <- function(x, digits = 2, ...) {
#' @export
as.data.frame.performance_pcp <- function(x, row.names = NULL, ...) {
data.frame(
"Model" = c("full", "null"),
"Estimate" = c(x$pcp_model, x$pcp_m0),
"CI_low" = c(x$model_ci_low, x$null_ci_low),
"CI_high" = c(x$model_ci_high, x$null_ci_high),
"Chisq" = c(NA, x$lrt_chisq),
"df_error" = c(NA, x$lrt_df_error),
"p" = c(NA, x$lrt_p),
Model = c("full", "null"),
Estimate = c(x$pcp_model, x$pcp_m0),
CI_low = c(x$model_ci_low, x$null_ci_low),
CI_high = c(x$model_ci_high, x$null_ci_high),
Chisq = c(NA, x$lrt_chisq),
df_error = c(NA, x$lrt_df_error),
p = c(NA, x$lrt_p),
stringsAsFactors = FALSE,
row.names = row.names,
...
Expand Down

0 comments on commit 98ab2f5

Please sign in to comment.