Dear all,
I have successfully deployed my Shiny app on my local computer, but I've encountered an issue when deploying it on shiny.io. The error message I'm receiving is: "Error in: pandoc document conversion failed with error 99". The Shiny app is designed to generate an HTML report in R Markdown. I'm providing my R Markdown code below for reference. Any assistance would be greatly appreciated. Thank you in advance."
`
---
title: "ROC Analysis Report"
output:
html_document:
css: styles.css
toc: true
toc_float: true
number_sections: false
theme: lumen
highlight: textmate
class: 'center'
params:
roc_plot: NA
roc_table: NA
chatgpt_interpretation: NA
chatgpt_interpretationPL: NA
sales_text: NA
cl_dist_plot: NA
cht_int_cls: NA
pred_dist_plot: NA
cht_pred_cls: NA
combined_placeholder: NA
chatgpt_int: NA
int_text: NA
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(ggplot2)
library(grid)
library(knitr)
library(kableExtra)
1. INTRODUCTION
params$chatgpt_int
2.RESULTS
params$sales_text
Note that the after running scispace API, we will enrich this Introduction part.
Data quality checking
# The `params` object is available in the document.
plot(params$pred_dist_plot)
# The `params` object is available in the document.
params$cht_pred_cls
# The `params` object is available in the document.
plot(params$cl_dist_plot)
# The `params` object is available in the document.
params$cht_int_cls
ROC plot
# The `params` object is available in the document.
plot(params$roc_plot)
```{r}
# The `params` object is available in the document.
params$chatgpt_interpretationPL
Performance measures
knitr::kable(params$roc_table, caption = "Table 1: Performance measures of the ROC analysis.", format = "html") %>%
kable_styling()
# The `params` object is available in the document.
params$chatgpt_interpretation
3. CONCLUSION
params$combined_placeholder
`