From 5bbfc17ea01d5f4f3c6f50c19dde7403a4402d71 Mon Sep 17 00:00:00 2001 From: Janne Mannseth Date: Tue, 8 Oct 2024 10:50:59 +0200 Subject: [PATCH] =?UTF-8?q?endret=20datagrunnlag=20til=20kun=20de=20som=20?= =?UTF-8?q?d=C3=B8de=20tatt=20vekk=20un=C3=B8dvendig=20tabell?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inst/timetodeath.Rmd | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/inst/timetodeath.Rmd b/inst/timetodeath.Rmd index 5e0bda2..9a63413 100644 --- a/inst/timetodeath.Rmd +++ b/inst/timetodeath.Rmd @@ -135,7 +135,7 @@ datd <- dat %>% #######Working with pain diagonse #SmerteKat.x = 1 er akutt smerte (se SmerteKat.y) -akutt = fulldat %>% +akutt = datd %>% dplyr::filter(!is.na(SmerteKat)) %>% dplyr::distinct(ForlopsID, .keep_all = TRUE) %>% dplyr::summarise(antall_ja = sum(SmerteKat == 1), @@ -144,7 +144,7 @@ akutt = fulldat %>% dplyr::ungroup() #SmerteKat.x = 2 er langvarig smerte (se SmerteKat.y) -langvarig = fulldat %>% +langvarig = datd %>% dplyr::filter(!is.na(SmerteKat)) %>% dplyr::distinct(ForlopsID, .keep_all = TRUE) %>% dplyr::summarise(antall_ja = sum(SmerteKat == 2), @@ -153,7 +153,7 @@ langvarig = fulldat %>% dplyr::ungroup() #SmerteKat.x = 3 er palliativ smerte (se SmerteKat.y) -palliativ = fulldat %>% +palliativ = datd %>% dplyr::filter(!is.na(SmerteKat)) %>% dplyr::distinct(ForlopsID, .keep_all = TRUE) %>% dplyr::summarise(antall_ja = sum(SmerteKat == 3), @@ -162,7 +162,7 @@ palliativ = fulldat %>% dplyr::ungroup() #SmerteKat.x = 4 er annet smerte (se SmerteKat.y) -annet = fulldat %>% +annet = datd %>% dplyr::filter(!is.na(SmerteKat)) %>% dplyr::distinct(ForlopsID, .keep_all = TRUE) %>% dplyr::summarise(antall_ja = sum(SmerteKat == 4), @@ -171,7 +171,7 @@ annet = fulldat %>% dplyr::ungroup() #Underdiagnose for de forløp med hoveddiagnose akutt smerte -underdiag = fulldat %>% +underdiag = datd %>% dplyr::filter(SmerteKat == 1) %>% dplyr::distinct(ForlopsID, .keep_all = TRUE) %>% dplyr::count(DiagKat) %>% @@ -201,19 +201,18 @@ ggplot(datd, aes(x = timeafter)) + theme(text = element_text(size = 15)) ``` -### Videre er pasientene registrert med følgende smertekategorier under forløpet: ```{r smertekat, eval=dataPresent, results='asis'} #Smertekategori -rapbase::mst( - tab = tot_smertekat, - col_names = c( "Antall ja" ,"Antall totalt", "Andel"), - cap = paste0("Tabellen viser hvordan pasientenes hovedkategori (smerte) fordeler seg mellom akutt, langvarig eller palliativ smerte."), - label = "smertekattab", - type = params$tableFormat, - digs = 2, - align = c("l", "c", "c", "c") -) +# rapbase::mst( +# tab = tot_smertekat, +# col_names = c( "Antall ja" ,"Antall totalt", "Andel"), +# cap = paste0("Tabellen viser hvordan pasientenes hovedkategori (smerte) fordeler seg mellom akutt, langvarig eller palliativ smerte."), +# label = "smertekattab", +# type = params$tableFormat, +# digs = 2, +# align = c("l", "c", "c", "c") +# ) ```