Skip to content

Commit

Permalink
H report update
Browse files Browse the repository at this point in the history
  • Loading branch information
janlisec committed May 30, 2024
1 parent c4bf576 commit 076f1e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/app/www/reports/report_vorlage_homogeneity.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ This is the table of (non rounded) input data:
```{r tab_H0, echo=FALSE, comment=NA}
df <- H[["data"]]
if (length(unique(df[,"H_type"]))==1) df <- df[,colnames(df) != "H_type"]
if (xlab != "Flasche" & "Flasche" %in% colnames(df)) colnames(df) <- gsub("^Flasche$", xlab, colnames(df))
if (xlab != "Flasche" & any(colnames(df)=="Flasche")) colnames(df) <- gsub("^Flasche$", xlab, colnames(df))
if (knitr::is_html_output()) {
DT::datatable(data = df, rownames = NULL, options = list(dom = "t", paging = FALSE))
} else if (knitr::is_latex_output()) {
Expand Down

0 comments on commit 076f1e7

Please sign in to comment.