{:group-id "io.github.tonsky", :artifact-id "incanter-io", :version "1.9.5", :analysis {"clj" ({:name incanter.datasets, :publics ({:name **datasets**, :file "incanter/datasets.clj", :line 27, :dynamic true, :type :var} {:name **datasets-base-url**, :file "incanter/datasets.clj", :line 24, :dynamic true, :type :var} {:name get-dataset, :file "incanter/datasets.clj", :line 92, :arglists ([dataset-key & {:keys [incanter-home from-repo], :or {incanter-home (or (System/getProperty "incanter.home") (System/getenv "INCANTER_HOME")), from-repo false}}]), :doc "\nReturns the sample dataset associated with the given key. Most datasets\nare from R's sample data sets, as are the descriptions below.\n\nOptions:\n\n  :incanter-home -- if the incanter.home property is not set when the JVM is\n                    started (using -Dincanter.home) or there is no INCANTER_HOME\n                    environment variable set, use the :incanter-home options to\n                    provide the parent directory of the sample data directory.\n\n  :from-repo (default false) -- If true, retrieves the dataset from the online repository\n                     instead of locally, it will do this by default if incanter-home is not set.\n\n\nDatasets:\n\n  :iris -- the Fisher's or Anderson's Iris data set gives the\n           measurements in centimeters of the variables sepal\n           length and width and petal length and width,\n           respectively, for 50 flowers from each of 3 species\n           of iris.\n\n  :cars -- The data give the speed of cars and the distances taken\n            to stop. Note that the data were recorded in the 1920s.\n\n  :survey -- survey data used in Scott Lynch's 'Introduction to Applied Bayesian Statistics\n             and Estimation for Social Scientists'\n\n  :us-arrests -- This data set contains statistics, in arrests per 100,000\n                 residents for assault, murder, and rape in each of the 50 US\n                 states in 1973. Also given is the percent of the population living\n                 in urban areas.\n\n  :flow-meter -- flow meter data used in Bland Altman Lancet paper.\n\n  :co2 -- has 84 rows and 5 columns of data from an experiment on the cold tolerance\n          of the grass species _Echinochloa crus-galli_.\n\n  :chick-weight -- has 578 rows and 4 columns from an experiment on the effect of diet\n                   on early growth of chicks.\n\n  :plant-growth -- Results from an experiment to compare yields (as measured by dried\n                   weight of plants) obtained under a control and two different\n                   treatment conditions.\n\n  :pontius -- These data are from a NIST study involving calibration of load cells.\n              The response variable (y) is the deflection and the predictor variable\n              (x) is load.\n              See http://www.itl.nist.gov/div898/strd/lls/data/Pontius.shtml\n\n  :filip -- NIST data set for linear regression certification,\n            see http://www.itl.nist.gov/div898/strd/lls/data/Filip.shtml\n\n  :longely -- This classic dataset of labor statistics was one of the first used to\n              test the accuracy of least squares computations. The response variable\n              (y) is the Total Derived Employment and the predictor variables are GNP\n              Implicit Price Deflator with Year 1954 = 100 (x1), Gross National Product\n              (x2), Unemployment (x3), Size of Armed Forces (x4), Non-Institutional\n              Population Age 14 & Over (x5), and Year (x6).\n              See http://www.itl.nist.gov/div898/strd/lls/data/Longley.shtml\n\n  :Chwirut -- These data are the result of a NIST study involving ultrasonic calibration.\n              The response variable is ultrasonic response, and the predictor variable is\n              metal distance.\n              See http://www.itl.nist.gov/div898/strd/nls/data/LINKS/DATA/Chwirut1.dat\n\n  :thurstone -- test data for non-linear least squares.\n\n  :austres -- Quarterly Time Series of the Number of Australian Residents\n\n  :hair-eye-color -- Hair and eye color of sample of students\n\n  :airline-passengers -- Monthly Airline Passenger Numbers 1949-1960\n\n  :math-prog -- Pass/fail results for a high school mathematics assessment test\n                and a freshmen college programming course.\n\n  :iran-election -- Vote counts for 30 provinces from the 2009 Iranian election.\n\n Examples:\n   (def data (get-dataset :cars))\n   (def data2 (get-dataset :cars :incanter.home \"/usr/local/packages/incanter\"))\n\n", :type :var}), :doc "Provides access to different datasets that are bundled with Incanter.\n"} {:name incanter.io, :publics ({:name make-typed-parse-row, :file "incanter/io.clj", :line 67, :arglists ([column-names types default-type empty-field-value transformers]), :type :var} {:name parsers, :file "incanter/io.clj", :line 53, :type :var} {:name read-dataset, :file "incanter/io.clj", :line 102, :arglists ([filename & {:keys [delim keyword-headers quote skip header compress-delim empty-field-value comment-char options], :or {delim \,, quote \", skip 0, header false, keyword-headers true, options nil}}]), :doc "\nReturns a dataset read from a file or a URL.\n\nOptions:\n  :delim (default \\,), other options (\\tab \\space \\|  etc)\n  :quote (default \\\") character used for quoting strings\n  :skip (default 0) the number of lines to skip at the top of the file.\n  :header (default false) indicates the file has a header line\n  :compress-delim (default true if delim = \\space, false otherwise) means\n                  compress multiple adjacent delimiters into a single delimiter.\n  :empty-field-value (default nil) indicates the interpretation of an empty field.\n  :comment-char (default nil) skip commented lines (\"#\", \"%\", \";\", etc)\n  :default-type (default nil) default type of columns.\n  :types (default nil) dictionary mapping types to list of column names, e.g:\n         {Long [\"foo\" \"bar\"] Float \"boo\"}\n  :transformers (default nil) dictionary mapping column names to functions that will transform\n                strings in a given column before they are converted to final types\n  :max-rows (default nil) maximum rows to be read, nil means no limit\n  :rename-columns (default nil) dictionary mapping column names on file to their names\n                  after loading\n", :type :var} {:name reverse-type-mapping, :file "incanter/io.clj", :line 59, :arglists ([[typ columns]]), :type :var} {:name reverse-types, :file "incanter/io.clj", :line 64, :arglists ([types]), :type :var} {:name vector-constructors, :file "incanter/io.clj", :line 41, :type :var}), :doc "Library for reading and writing Incanter datasets and matrices.\n"})}, :pom-str "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <groupId>io.github.tonsky</groupId>\n  <artifactId>incanter-io</artifactId>\n  <packaging>jar</packaging>\n  <version>1.9.5</version>\n  <name>incanter-io</name>\n  <description>Incanter-io is the I/O module of the Incanter project.</description>\n  <url>http://incanter.org/</url>\n  <licenses>\n    <license>\n      <name>Eclipse Public License</name>\n      <url>http://www.eclipse.org/legal/epl-v10.html</url>\n    </license>\n  </licenses>\n  <scm>\n    <url>https://github.com/incanter/incanter</url>\n  </scm>\n  <build>\n    <sourceDirectory>src</sourceDirectory>\n    <testSourceDirectory>test</testSourceDirectory>\n    <resources>\n      <resource>\n        <directory>resources</directory>\n      </resource>\n    </resources>\n    <testResources>\n      <testResource>\n        <directory>resources</directory>\n      </testResource>\n    </testResources>\n    <directory>target</directory>\n    <outputDirectory>target/classes</outputDirectory>\n    <plugins/>\n  </build>\n  <repositories>\n    <repository>\n      <id>central</id>\n      <url>https://repo1.maven.org/maven2/</url>\n      <snapshots>\n        <enabled>false</enabled>\n      </snapshots>\n      <releases>\n        <enabled>true</enabled>\n      </releases>\n    </repository>\n    <repository>\n      <id>clojars</id>\n      <url>https://repo.clojars.org/</url>\n      <snapshots>\n        <enabled>true</enabled>\n      </snapshots>\n      <releases>\n        <enabled>true</enabled>\n      </releases>\n    </repository>\n  </repositories>\n  <dependencyManagement>\n    <dependencies/>\n  </dependencyManagement>\n  <dependencies>\n    <dependency>\n      <groupId>io.github.tonsky</groupId>\n      <artifactId>incanter-core</artifactId>\n      <version>1.9.5</version>\n    </dependency>\n    <dependency>\n      <groupId>net.sf.opencsv</groupId>\n      <artifactId>opencsv</artifactId>\n      <version>2.3</version>\n    </dependency>\n    <dependency>\n      <groupId>org.clojure</groupId>\n      <artifactId>data.csv</artifactId>\n      <version>0.1.4</version>\n      <exclusions>\n        <exclusion>\n          <artifactId>clojure</artifactId>\n          <groupId>org.clojure</groupId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>org.danlarkin</groupId>\n      <artifactId>clojure-json</artifactId>\n      <version>1.1</version>\n      <exclusions>\n        <exclusion>\n          <artifactId>clojure</artifactId>\n          <groupId>org.clojure</groupId>\n        </exclusion>\n        <exclusion>\n          <artifactId>clojure-contrib</artifactId>\n          <groupId>org.clojure</groupId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>clatrix</groupId>\n      <artifactId>clatrix</artifactId>\n      <version>0.5.0</version>\n      <exclusions>\n        <exclusion>\n          <artifactId>clojure</artifactId>\n          <groupId>org.clojure</groupId>\n        </exclusion>\n        <exclusion>\n          <artifactId>core.matrix</artifactId>\n          <groupId>net.mikera</groupId>\n        </exclusion>\n      </exclusions>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.jblas</groupId>\n      <artifactId>jblas</artifactId>\n      <version>1.2.3</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n\n<!-- This file was autogenerated by Leiningen.\n  Please do not edit it directly; instead edit project.clj and regenerate it.\n  It should not be considered canonical data. For more information see\n  https://codeberg.org/leiningen/leiningen -->\n"}