Skip to content

conda-forge/r-netmeta-feedstock

Repository files navigation

About r-netmeta-feedstock

Feedstock license: BSD-3-Clause

Home: https://github.com/guido-s/netmeta https://link.springer.com/book/10.1007/978-3-319-21416-0

Package license: GPL-2.0-or-later

Summary: A comprehensive set of functions providing frequentist methods for network meta-analysis and supporting Schwarzer et al. (2015) DOI:10.1007/978-3-319-21416-0, Chapter 8 "Network Meta-Analysis": - frequentist network meta-analysis following Rücker (2012) DOI:10.1002/jrsm.1058; - net heat plot and design-based decomposition of Cochran's Q according to Krahn et al. (2013) DOI:10.1186/1471-2288-13-35; - measures characterizing the flow of evidence between two treatments by König et al. (2013) DOI:10.1002/sim.6001; - ranking of treatments (frequentist analogue of SUCRA) according to Rücker & Schwarzer (2015) DOI:10.1186/s12874-015-0060-8; - partial order of treatment rankings ('poset') and Hasse diagram for 'poset' (Carlsen & Bruggemann, 2014) DOI:10.1002/cem.2569; (Rücker & Schwarzer, 2017) DOI:10.1002/jrsm.1270; - split direct and indirect evidence to check consistency (Dias et al., 2010) DOI:10.1002/sim.3767, (Efthimiou et al., 2019) DOI:10.1002/sim.8158; - league table with network meta-analysis results; - additive network meta-analysis for combinations of treatments (Rücker et al., 2020) DOI:10.1002/bimj.201800167; - network meta-analysis of binary data using the Mantel-Haenszel or non-central hypergeometric distribution method (Efthimiou et al., 2019) DOI:10.1002/sim.8158; - 'comparison-adjusted' funnel plot (Chaimani & Salanti, 2012) DOI:10.1002/jrsm.57; - automated drawing of network graphs described in Rücker & Schwarzer (2016) DOI:10.1002/jrsm.1143; - rankograms and ranking by SUCRA; - contribution matrix as described in Papakonstantinou et al. (2018) DOI:10.12688/f1000research.14770.3 and Davies et al. (2021) arXiv:2107.02886.

Current build status

All platforms:

Current release info

Name Downloads Version Platforms
Conda Recipe Conda Downloads Conda Version Conda Platforms

Installing r-netmeta

Installing r-netmeta from the conda-forge channel can be achieved by adding conda-forge to your channels with:

conda config --add channels conda-forge
conda config --set channel_priority strict

Once the conda-forge channel has been enabled, r-netmeta can be installed with conda:

conda install r-netmeta

or with mamba:

mamba install r-netmeta

It is possible to list all of the versions of r-netmeta available on your platform with conda:

conda search r-netmeta --channel conda-forge

or with mamba:

mamba search r-netmeta --channel conda-forge

Alternatively, mamba repoquery may provide more information:

# Search all versions available on your platform:
mamba repoquery search r-netmeta --channel conda-forge

# List packages depending on `r-netmeta`:
mamba repoquery whoneeds r-netmeta --channel conda-forge

# List dependencies of `r-netmeta`:
mamba repoquery depends r-netmeta --channel conda-forge

About conda-forge

Powered by NumFOCUS

conda-forge is a community-led conda channel of installable packages. In order to provide high-quality builds, the process has been automated into the conda-forge GitHub organization. The conda-forge organization contains one repository for each of the installable packages. Such a repository is known as a feedstock.

A feedstock is made up of a conda recipe (the instructions on what and how to build the package) and the necessary configurations for automatic building using freely available continuous integration services. Thanks to the awesome service provided by Azure, GitHub, CircleCI, AppVeyor, Drone, and TravisCI it is possible to build and upload installable packages to the conda-forge anaconda.org channel for Linux, Windows and OSX respectively.

To manage the continuous integration and simplify feedstock maintenance conda-smithy has been developed. Using the conda-forge.yml within this repository, it is possible to re-render all of this feedstock's supporting files (e.g. the CI configuration files) with conda smithy rerender.

For more information please check the conda-forge documentation.

Terminology

feedstock - the conda recipe (raw material), supporting scripts and CI configuration.

conda-smithy - the tool which helps orchestrate the feedstock. Its primary use is in the construction of the CI .yml files and simplify the management of many feedstocks.

conda-forge - the place where the feedstock and smithy live and work to produce the finished article (built conda distributions)

Updating r-netmeta-feedstock

If you would like to improve the r-netmeta recipe or build a new package version, please fork this repository and submit a PR. Upon submission, your changes will be run on the appropriate platforms to give the reviewer an opportunity to confirm that the changes result in a successful build. Once merged, the recipe will be re-built and uploaded automatically to the conda-forge channel, whereupon the built conda packages will be available for everybody to install and use from the conda-forge channel. Note that all branches in the conda-forge/r-netmeta-feedstock are immediately built and any created packages are uploaded, so PRs should be based on branches in forks and branches in the main repository should only be used to build distinct package versions.

In order to produce a uniquely identifiable distribution:

  • If the version of a package is not being increased, please add or increase the build/number.
  • If the version of a package is being increased, please remember to return the build/number back to 0.

Feedstock Maintainers