Skip to content

Commit

Permalink
edit docs, bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavnatarajan committed Dec 5, 2022
1 parent bbe0d00 commit 11b08e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RedClust"
uuid = "bf1adee6-87fe-4679-8d23-51fe99940a25"
authors = ["Abhinav Natarajan <[email protected]>"]
version = "1.0.0-beta"
version = "1.0.0"

[deps]
Clustering = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5"
Expand Down
7 changes: 6 additions & 1 deletion examples/basic_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ guidefontsize = 16,
tickfontsize = 16,
colorbar_tickfontsize = 16,
legend_font_pointsize = 16)

# seed the default RNG so that documentation remains stable
seed!(44)
#!setup

# Next we define some convenience functions for plotting.
Expand Down Expand Up @@ -183,7 +186,9 @@ begin
histogram(result.p, normalize = :pdf,
ylabel = "Density", xlabel = "p",
title = "Posterior Distribution of p",
label = "Empirical density", legend_font_pointsize=12)
label = "Empirical density",
legend_font_pointsize=12,
legend_position = :best)
density!(result.p, color=:black, linewidth = 2, linestyle=:dash,
label = "Kernel estimate")
end
Expand Down

0 comments on commit 11b08e7

Please sign in to comment.