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.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

27 lines
758B

  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. :profiles
  12. {:provided
  13. {:dependencies
  14. [[org.clojure/clojure "1.10.1"]
  15. [org.clojars.yjcyxky/tservice "0.6.0"]]}
  16. :uberjar
  17. {:auto-clean true
  18. :aot :all
  19. :omit-source true
  20. :javac-options ["-target" "1.8", "-source" "1.8"]
  21. :target-path "target/%s"
  22. :resource-paths ["resources"]
  23. :uberjar-name "corrplot.tservice-plugin.jar"}})