Skip to content

openpharma/SafetySignalDetection.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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