-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add readme to main examples directory
- Loading branch information
1 parent
071f4c1
commit 0540851
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Example application for {shiny.telemetry} | ||
|
||
These 2 folders contain an example application that tracks all inputs using `shiny.telemtry` and the accompanying analytics dashboard. | ||
|
||
To run the application, install the necessary dependencies: | ||
|
||
```R | ||
install.packages( | ||
c( | ||
"shiny", "semantic.dashboard", "shiny.semantic", "shiny.telemetry", | ||
"dplyr", "config", "shiny.telemtry" | ||
), | ||
dependencies = c("Depends", "Imports", "Suggests") | ||
) | ||
``` | ||
|
||
And start the R/Shiny app by: `shiny::runApp("instrumentation")` | ||
|
||
Afterwards, the analytics application will have access to the data and can be started by: `shiny::runApp("instrumentation")` | ||
|
||
For more information, visit the [documentation](https://appsilon.github.io/shiny.telemetry/) of `shiny.telemetry` |