Skip to content

Commit

Permalink
Implement clustering (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-neustroev authored Dec 5, 2023
1 parent 494ecf5 commit d37d3c1
Show file tree
Hide file tree
Showing 9 changed files with 1,051 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ version = "0.1.0"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Clustering = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
julia = "1.6"
5 changes: 1 addition & 4 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Don't forget to run
#
# pkg> dev ..
#
[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
TulipaClustering = "314fac8b-c762-4aa3-9d12-851379729163"

Expand Down
7 changes: 6 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
using TulipaClustering
using Documenter

DocMeta.setdocmeta!(TulipaClustering, :DocTestSetup, :(using TulipaClustering); recursive = true)
DocMeta.setdocmeta!(
TulipaClustering,
:DocTestSetup,
:(using TulipaClustering; using DataFrames);
recursive = true,
)

makedocs(;
modules = [TulipaClustering],
Expand Down
3 changes: 3 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
```@meta
CurrentModule = TulipaClustering
DocTestSetup = quote
using DataFrames
end
```

# TulipaClustering
Expand Down
4 changes: 4 additions & 0 deletions src/TulipaClustering.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ module TulipaClustering
# Packages
using CSV
using DataFrames
using Distances
using Clustering
using SparseArrays

include("input-tables.jl")
include("structures.jl")
include("io.jl")
include("cluster.jl")

end
Loading

0 comments on commit d37d3c1

Please sign in to comment.