Skip to content

Commit

Permalink
Update PrettyTables
Browse files Browse the repository at this point in the history
  • Loading branch information
paschermayr committed Sep 8, 2022
1 parent fa03e36 commit f869315
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Baytes"
uuid = "72ddfcfc-6e9d-43df-829b-7aed7c549d4f"
authors = ["Patrick Aschermayr <p.aschermayr@gmail.com>"]
version = "0.1.11"
version = "0.1.12"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down Expand Up @@ -32,7 +32,7 @@ DocStringExtensions = "0.8, 0.9"
JLD2 = "0.4"
MCMCDiagnosticTools = "0.1"
ModelWrappers = "0.3"
PrettyTables = "1.3"
PrettyTables = "2"
ProgressMeter = "1.7"
UnPack = "1"
julia = "^1.7"
Expand Down
2 changes: 1 addition & 1 deletion src/sampling/chain.jl
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ function chainsummary(
table = round.(reshape(diag_flattened, Nstats, Nparams)'; digits=Ndigits)
## Print table
PrettyTables.pretty_table(
table, backend=backend, header=tablenames, row_names=paramnames, kwargs...
table, backend=backend, header=tablenames, row_labels=paramnames, kwargs...
)
## Return table arguments
return table, tablenames, paramnames
Expand Down

2 comments on commit f869315

@paschermayr
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/67901

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.12 -m "<description of version>" f86931581a22381710e036c93b13c2c617f7fcdb
git push origin v0.1.12

Please sign in to comment.