Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.47 KB

README.md

File metadata and controls

53 lines (34 loc) · 1.47 KB

SafetySignalDetection.jl

This package implements Bayesian safety signal detection as proposed by Brock et al. (2023) using the Turing.jl framework.

Installation

Install this package with:

using Pkg
Pkg.add("SafetySignalDetection")

Getting started

Please have a look at the Introduction vignette to get started.

API

Please have a look at the API documentation.

Developer tipps

Workflows

Testing the package:

julia> ] # Go to the package mode
(v1.10) pkg> activate .
(SafetySignalDetection) pkg> test

Local rendering of the documentation:

  • Install LiveServer in your global environment.
  • Install your local package (pkg> add /path/to/package)

Afterwards each time:

(v1.10) pkg> activate docs # Backspace to come back to julia mode
julia> using SafetySignalDetection, LiveServer
julia> servedocs()

Then click on the local website link. When you modify the documentation, the server automatically recompiles the docs and updates the local website.

Helpful links