diff --git a/DESCRIPTION b/DESCRIPTION index d383791..e54fc9a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: pxtextminingdashboard Title: Text Mining Dashboard of Patient Experience Feedback -Version: 0.6.1 +Version: 0.6.2 Authors@R: person('Andreas', 'Soteriades', email = 'andreas.soteriades@nottshc.nhs.uk', role = c('cre', 'aut')) Description: Text Mining Dashboard of Patient Experience Feedback. License: MIT + file LICENSE @@ -17,6 +17,7 @@ Imports: reactable, dplyr, ggplot2, + ggraph, magrittr, tidytext, pkgload, @@ -40,7 +41,7 @@ Remotes: CDU-data-science-team/experienceAnalysis Encoding: UTF-8 LazyData: true -RoxygenNote: 7.1.1 +RoxygenNote: 7.1.2 Suggests: testthat, spelling, diff --git a/README.md b/README.md index 35cf00c..b31f844 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The interactive dashboard can be shipped as an [`R`](https://www.r-project.org/) package and it comes with real open-source patient feedback text records for demonstration purposes. A key feature though is that it can be used with *any* text dataset from *any* organisation. We are offering the possibility of hosting -the dashboard for different text data on our server. Here is an [example](https://involve.nottshc.nhs.uk:8443/text_mining_dashboard/) with our +the dashboard for different text data on our server. Here is an [example](https://involve.nottshc.nhs.uk/rsconnect/pxtextminingdashboard/) with our own data. ## Dashboard structure diff --git a/dev/02_dev.R b/dev/02_dev.R index 1a9c5f1..cf8f33e 100644 --- a/dev/02_dev.R +++ b/dev/02_dev.R @@ -19,6 +19,7 @@ usethis::use_package("DBI") usethis::use_package("dplyr") usethis::use_package("experienceAnalysis") usethis::use_package("ggplot2") +usethis::use_package("ggraph") usethis::use_package("ggthemes") usethis::use_package("igraph") usethis::use_package("odbc")