Liking cljdoc? Tell your friends :D

tablecloth.api.dataset


columnsclj

(columns ds)
(columns ds result-type)

Returns columns of dataset. Result type can be any of:

  • :as-map
  • :as-double-arrays
  • :as-seqs
Returns columns of dataset. Result type can be any of:
* `:as-map`
* `:as-double-arrays`
* `:as-seqs`
raw docstring

concatclj

(concat dataset & datasets)

concat-copyingclj

(concat-copying dataset & datasets)

datasetclj

(dataset)
(dataset data)
(dataset data
         {:keys [single-value-column-name column-names layout dataset-name]
          :or {single-value-column-name :$value layout :as-rows}
          :as options})

Create dataset.

Dataset can be created from:

  • single value
  • map of values and/or sequences
  • sequence of maps
  • sequence of columns
  • file or url
Create `dataset`.

Dataset can be created from:

* single value
* map of values and/or sequences
* sequence of maps
* sequence of columns
* file or url
raw docstring

dataset?clj

(dataset? ds)

Is ds a dataset type?

Is `ds` a `dataset` type?
raw docstring

empty-ds?clj

(empty-ds? ds)

infoclj

(info ds)
(info ds result-type)

(print-dataset ds)
(print-dataset ds options)

rowsclj

(rows ds)
(rows ds result-type)

Returns rows of dataset. Result type can be any of:

  • :as-maps
  • :as-double-arrays
  • :as-seqs
Returns rows of dataset. Result type can be any of:
* `:as-maps`
* `:as-double-arrays`
* `:as-seqs`
raw docstring

shapeclj

(shape ds)

Returns shape of the dataset [rows, cols]

Returns shape of the dataset [rows, cols]
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close