Skip to content

Commit

Permalink
renaming Chain to MCMCChain for JuliaLang/METADATA.jl#17212
Browse files Browse the repository at this point in the history
  • Loading branch information
trappmartin committed Aug 23, 2018
1 parent 9adbe45 commit 73756a2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Chain.jl
# MCMCChain.jl
[![Build Status](https://travis-ci.org/TuringLang/Chain.jl.svg?branch=master)](https://travis-ci.org/TuringLang/Chain.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/f9bs9jjpakyp1t59/branch/master?svg=true)](https://ci.appveyor.com/project/trappmartin/chain-jl/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/TuringLang/Chain.jl/badge.svg?branch=master)](https://coveralls.io/github/TuringLang/Chain.jl?branch=master)
Expand All @@ -9,7 +9,7 @@ Implementation of Julia types for summarizing MCMC simulations and utility funct
## Example
The following simple example illustrates how to use Chain to visually summarize a MCMC simulation:
```julia
using Chain
using MCMCChain
using Plots

# Define the experiment
Expand Down
2 changes: 1 addition & 1 deletion src/Chain.jl → src/MCMCChain.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Chain
module MCMCChain

import Showoff: showoff
import StatsBase: autocor, autocov, countmap, counts, describe, predict,
Expand Down
2 changes: 1 addition & 1 deletion test/diagnostic_tests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Chain
using MCMCChain
using Test

## CHAIN TESTS
Expand Down
2 changes: 1 addition & 1 deletion test/plot_test.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Chain
using MCMCChain

n_iter = 500
n_name = 3
Expand Down
1 change: 0 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using Chain
using Test

# run plotting tests
Expand Down

0 comments on commit 73756a2

Please sign in to comment.