-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Analysis Namespace. * Added to Analysis Namespace. * Minor Edit to Documentation. * Expanded Analysis Namespace.
- Loading branch information
1 parent
5084447
commit a60f7a3
Showing
3 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
(ns conexp.analysis | ||
"Dafault Namespace." | ||
(:require | ||
[conexp.main :refer :all] | ||
[conexp.base :refer :all] | ||
[conexp.layouts :refer :all] | ||
[conexp.gui :refer :all] | ||
[conexp.api :refer :all] | ||
[conexp.fca | ||
[causal-implications :refer :all] | ||
[contexts :refer :all] | ||
[cover :refer :all] | ||
[dependencies :refer :all] | ||
[exploration :refer :all] | ||
[graph :refer :all] | ||
[implications :refer :all] | ||
[incremental-ganter :refer :all] | ||
[lattices :refer :all] | ||
[many-valued-contexts :refer :all] | ||
[metrics :refer :all] | ||
[more :refer :all] | ||
[posets :refer :all] | ||
[pqcores :refer :all] | ||
[protoconcepts :refer :all] | ||
[random-contexts :refer :all] | ||
[triadic-exploration :refer :all]] | ||
[conexp.math | ||
[algebra :refer :all] | ||
[markov :refer :all] | ||
[numbers :refer :all] | ||
[optimize :refer :all] | ||
[sampling :refer :all] | ||
[statistics :refer :all] | ||
[util :refer :all]] | ||
[conexp.layouts | ||
[base :refer :all] | ||
[common :refer :all] | ||
[dim-draw :refer :all] | ||
;[force :refer :all] | ||
[freese :refer :all] | ||
[layered :refer :all] | ||
[util :refer :all]] | ||
[conexp.io | ||
[base :refer :all] | ||
[contexts :refer :all] | ||
[fcas :refer :all] | ||
[implications :refer :all] | ||
[incomplete-contexts :refer :all] | ||
[json :refer :all] | ||
[latex :refer :all] | ||
[lattices :refer :all] | ||
[layouts :refer :all] | ||
[many-valued-contexts :refer :all] | ||
[util :refer :all]] | ||
[conexp.gui | ||
[base :refer :all] | ||
[draw :refer :all] | ||
[plugins :refer :all] | ||
[repl :refer :all] | ||
[repl-utils :refer :all]] | ||
[clojure.set :as set] | ||
[clojure.edn :as edn] | ||
[clojure.java.io :as io])) | ||
|