It is used to investigate the dependence between multiple variables at the same time and to highlight the most correlated variables in a data table.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 line
794B

  1. (defproject tservice-plugins/corrplot "v0.1.0"
  2. :description "FIXME: write description"
  3. :url "https://github.com/tservice-plugins/corrplot"
  4. :license {:name "Eclipse Public License"
  5. :url "http://www.eclipse.org/legal/epl-v10.html"}
  6. :min-lein-version "2.5.0"
  7. :deployable false
  8. :dependencies
  9. [[org.clojure/tools.logging "1.1.0"]
  10. [selmer "1.12.27"]
  11. [babashka/babashka.curl "0.0.3"]]
  12. :profiles
  13. {:provided
  14. {:dependencies
  15. [[org.clojure/clojure "1.10.1"]
  16. [org.clojars.yjcyxky/tservice "0.6.0"]]}
  17. :uberjar
  18. {:auto-clean true
  19. :aot :all
  20. :omit-source true
  21. :javac-options ["-target" "1.8", "-source" "1.8"]
  22. :target-path "target/%s"
  23. :resource-paths ["resources"]
  24. :uberjar-name "corrplot.tservice-plugin.jar"}})