Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
NeuroShepherd committed Jan 20, 2025
1 parent 3228cea commit c679490
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 7 deletions.
16 changes: 13 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,30 @@ This package is primarily developed as a Shiny application which abstracts away

## Installation

You can install the development version of ordinalsimr from [GitHub](https://github.com/) with:
You can install the development version of ordinalsimr from GitHub with:

``` r
# install.packages("devtools")
devtools::install_github(
"NeuroShepherd/ordinalsimr",
force = TRUE,
build_vignettes = TRUE
)
```

## Running the App

The app can be started with the following code:

``` r
ordinalsimr::run_app()
```

If using the app repeatedly, it may be useful to change some of the options in the application to suit your needs. See the vignette "ordinalsimr-options" for more information, `vignette("ordinalsimr-options", package = "ordinalsimr")`.


## Recommendations

Simulations with 1000s of iterations *will* take minutes to hours to run. This should generally be ok on the Shiny app, but if you encounter issues, consider running the simulations in a separate R session using the functions provided in this package (rather than the Shiny app).
Simulations with 1000s of iterations *will* take minutes to hours to run. This should generally be ok on the Shiny app, but if you encounter issues, consider running the simulations in a separate R session using the functions provided in this package (rather than the Shiny app). See the vignette "coding-simulations" for more information, `vignette("coding-simulations", package = "ordinalsimr")`.



Expand Down
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,34 @@ up your own simulations manually.

## Installation

You can install the development version of ordinalsimr from
[GitHub](https://github.com/) with:
You can install the development version of ordinalsimr from GitHub with:

``` r
# install.packages("devtools")
devtools::install_github(
"NeuroShepherd/ordinalsimr",
force = TRUE,
build_vignettes = TRUE
)
```

## Running the App

The app can be started with the following code:

``` r
ordinalsimr::run_app()
```

If using the app repeatedly, it may be useful to change some of the
options in the application to suit your needs. See the vignette
“ordinalsimr-options” for more information,
`vignette("ordinalsimr-options", package = "ordinalsimr")`.

## Recommendations

Simulations with 1000s of iterations *will* take minutes to hours to
run. This should generally be ok on the Shiny app, but if you encounter
issues, consider running the simulations in a separate R session using
the functions provided in this package (rather than the Shiny app).
the functions provided in this package (rather than the Shiny app). See
the vignette “coding-simulations” for more information,
`vignette("coding-simulations", package = "ordinalsimr")`.

0 comments on commit c679490

Please sign in to comment.