I am using rmarkdown to print a model -
```{R ForestModel, echo = FALSE, out.width = "100%"}
print(forest_model(res.cox))
```
I am using rmarkdown to print a model -
```{R ForestModel, echo = FALSE, out.width = "100%"}
print(forest_model(res.cox))
```
Solved by treating as figure with
```{R Fig1_ForestModel, echo = FALSE, fig.width = 10, fig.asp = .50}
print(forest_model(res.cox))
```