Implement Black‑Scholes Shiny app: complete server & UI (call/put pricing, plotly plots, add volatility/rates/dividend inputs, run app) and add kable/paged_table examples to tp3.Rmd

This commit is contained in:
2025-11-13 16:31:44 +01:00
parent cf280a0810
commit dbb9b698df
2 changed files with 75 additions and 54 deletions

View File

@@ -28,3 +28,16 @@ plot(pressure)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
```{r}
library(kableExtra)
mtcars[1:5, 1:5] %>%
kbl() %>%
kable_styling()
```
```{r}
library(rmarkdown)
paged_table(mtcars, options = list(rows.print = 15))
```