tech.ml.dataset is a great and fast library which brings columnar dataset to the Clojure. Chris Nuernberger has been working on this library for last year as a part of bigger tech.ml
stack.
I've started to test the library and help to fix uncovered bugs. My main goal was to compare functionalities with the other standards from other platforms. I focused on R solutions: dplyr, tidyr and data.table.
During conversions of the examples I've come up how to reorganized existing tech.ml.dataset
functions into simple to use API. The main goals were:
tech.ml
like pipelines, datatypes, readers, ML, etc.group-by
results with special kind of dataset - a dataset containing subsets created after grouping as a column.If you want to know more about tech.ml.dataset
and tech.ml.datatype
please refer their documentation:
Join the discussion on Zulip
Let's require main namespace and define dataset used in most examples:
(require '[tablecloth.api :as api])
(def DS (api/dataset {:V1 (take 9 (cycle [1 2]))
:V2 (range 1 10)
:V3 (take 9 (cycle [0.5 1.0 1.5]))
:V4 (take 9 (cycle ["A" "B" "C"]))}))
DS
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Dataset is a special type which can be considered as a map of columns implemented around tech.ml.datatype
library. Each column can be considered as named sequence of typed data. Supported types include integers, floats, string, boolean, date/time, objects etc.
Dataset can be created from various of types of Clojure structures and files:
api/dataset
accepts:
tech.ml.dataset/->dataset
function for full list):
:dataset-name
- name of the dataset:num-rows
- number of rows to read from file:header-row?
- indication if first row in file is a header:key-fn
- function applied to column names (eg. keyword
, to convert column names to keywords):separator
- column separator:single-value-column-name
- name of the column when single value is providedEmpty dataset.
(api/dataset)
_unnamed [0 0]
Dataset from single value.
(api/dataset 999)
_unnamed [1 1]:
:$value |
---|
999 |
Set column name for single value. Also set the dataset name.
(api/dataset 999 {:single-value-column-name "my-single-value"})
(api/dataset 999 {:single-value-column-name ""
:dataset-name "Single value"})
_unnamed [1 1]:
my-single-value |
---|
999 |
Single value [1 1]:
0 |
---|
999 |
Sequence of pairs (first = column name, second = value(s)).
(api/dataset [[:A 33] [:B 5] [:C :a]])
_unnamed [1 3]:
:A | :B | :C |
---|---|---|
33 | 5 | :a |
Not sequential values are repeated row-count number of times.
(api/dataset [[:A [1 2 3 4 5 6]] [:B "X"] [:C :a]])
_unnamed [6 3]:
:A | :B | :C |
---|---|---|
1 | X | :a |
2 | X | :a |
3 | X | :a |
4 | X | :a |
5 | X | :a |
6 | X | :a |
Dataset created from map (keys = column names, vals = value(s)). Works the same as sequence of pairs.
(api/dataset {:A 33})
(api/dataset {:A [1 2 3]})
(api/dataset {:A [3 4 5] :B "X"})
_unnamed [1 1]:
:A |
---|
33 |
_unnamed [3 1]:
:A |
---|
1 |
2 |
3 |
_unnamed [3 2]:
:A | :B |
---|---|
3 | X |
4 | X |
5 | X |
You can put any value inside a column
(api/dataset {:A [[3 4 5] [:a :b]] :B "X"})
_unnamed [2 2]:
:A | :B |
---|---|
[3 4 5] | X |
[:a :b] | X |
Sequence of maps
(api/dataset [{:a 1 :b 3} {:b 2 :a 99}])
(api/dataset [{:a 1 :b [1 2 3]} {:a 2 :b [3 4]}])
_unnamed [2 2]:
:a | :b |
---|---|
1 | 3 |
99 | 2 |
_unnamed [2 2]:
:a | :b |
---|---|
1 | [1 2 3] |
2 | [3 4] |
Missing values are marked by nil
(api/dataset [{:a nil :b 1} {:a 3 :b 4} {:a 11}])
_unnamed [3 2]:
:a | :b |
---|---|
1 | |
3 | 4 |
11 |
Import CSV file
(api/dataset "data/family.csv")
data/family.csv [5 5]:
family | dob_child1 | dob_child2 | gender_child1 | gender_child2 |
---|---|---|---|---|
1 | 1998-11-26 | 2000-01-29 | 1 | 2 |
2 | 1996-06-22 | 2 | ||
3 | 2002-07-11 | 2004-04-05 | 2 | 2 |
4 | 2004-10-10 | 2009-08-27 | 1 | 1 |
5 | 2000-12-05 | 2005-02-28 | 2 | 1 |
Import from URL
(defonce ds (api/dataset "https://vega.github.io/vega-lite/examples/data/seattle-weather.csv"))
ds
https://vega.github.io/vega-lite/examples/data/seattle-weather.csv [1461 6]:
date | precipitation | temp_max | temp_min | wind | weather |
---|---|---|---|---|---|
2012-01-01 | 0.0 | 12.8 | 5.0 | 4.7 | drizzle |
2012-01-02 | 10.9 | 10.6 | 2.8 | 4.5 | rain |
2012-01-03 | 0.8 | 11.7 | 7.2 | 2.3 | rain |
2012-01-04 | 20.3 | 12.2 | 5.6 | 4.7 | rain |
2012-01-05 | 1.3 | 8.9 | 2.8 | 6.1 | rain |
2012-01-06 | 2.5 | 4.4 | 2.2 | 2.2 | rain |
2012-01-07 | 0.0 | 7.2 | 2.8 | 2.3 | rain |
2012-01-08 | 0.0 | 10.0 | 2.8 | 2.0 | sun |
2012-01-09 | 4.3 | 9.4 | 5.0 | 3.4 | rain |
2012-01-10 | 1.0 | 6.1 | 0.6 | 3.4 | rain |
2012-01-11 | 0.0 | 6.1 | -1.1 | 5.1 | sun |
2012-01-12 | 0.0 | 6.1 | -1.7 | 1.9 | sun |
2012-01-13 | 0.0 | 5.0 | -2.8 | 1.3 | sun |
2012-01-14 | 4.1 | 4.4 | 0.6 | 5.3 | snow |
2012-01-15 | 5.3 | 1.1 | -3.3 | 3.2 | snow |
2012-01-16 | 2.5 | 1.7 | -2.8 | 5.0 | snow |
2012-01-17 | 8.1 | 3.3 | 0.0 | 5.6 | snow |
2012-01-18 | 19.8 | 0.0 | -2.8 | 5.0 | snow |
2012-01-19 | 15.2 | -1.1 | -2.8 | 1.6 | snow |
2012-01-20 | 13.5 | 7.2 | -1.1 | 2.3 | snow |
2012-01-21 | 3.0 | 8.3 | 3.3 | 8.2 | rain |
2012-01-22 | 6.1 | 6.7 | 2.2 | 4.8 | rain |
2012-01-23 | 0.0 | 8.3 | 1.1 | 3.6 | rain |
2012-01-24 | 8.6 | 10.0 | 2.2 | 5.1 | rain |
2012-01-25 | 8.1 | 8.9 | 4.4 | 5.4 | rain |
Export dataset to a file or output stream can be done by calling api/write-csv!
. Function accepts:
.csv
, .tsv
, .csv.gz
and .tsv.gz
or output stream:separator
- string or separator char.(api/write-csv! ds "output.tsv.gz")
(.exists (clojure.java.io/file "output.csv.gz"))
nil
false
Summary functions about the dataset like number of rows, columns and basic stats.
Number of rows
(api/row-count ds)
1461
Number of columns
(api/column-count ds)
6
Shape of the dataset, [row count, column count]
(api/shape ds)
[1461 6]
General info about dataset. There are three variants:
:basic
- just name, row and column count and information if dataset is a result of group-by
operation:columns
- columns' metadata(api/info ds)
(api/info ds :basic)
(api/info ds :columns)
https://vega.github.io/vega-lite/examples/data/seattle-weather.csv: descriptive-stats [6 10]:
:col-name | :datatype | :n-valid | :n-missing | :min | :mean | :mode | :max | :standard-deviation | :skew |
---|---|---|---|---|---|---|---|---|---|
date | :packed-local-date | 1461 | 0 | 2012-01-01 | 2013-12-31 | 2015-12-31 | |||
precipitation | :float32 | 1461 | 0 | 0.000 | 3.029 | 55.90 | 6.68019429 | 3.50564374 | |
temp_max | :float32 | 1461 | 0 | -1.600 | 16.44 | 35.60 | 7.34975813 | 0.28093000 | |
temp_min | :float32 | 1461 | 0 | -7.100 | 8.235 | 18.30 | 5.02300419 | -0.24945853 | |
weather | :string | 1461 | 0 | sun | |||||
wind | :float32 | 1461 | 0 | 0.4000 | 3.241 | 9.500 | 1.43782506 | 0.89166753 |
https://vega.github.io/vega-lite/examples/data/seattle-weather.csv :basic info [1 4]:
:name | :grouped? | :rows | :columns |
---|---|---|---|
https://vega.github.io/vega-lite/examples/data/seattle-weather.csv | false | 1461 | 6 |
https://vega.github.io/vega-lite/examples/data/seattle-weather.csv :column info [6 4]:
:name | :size | :datatype | :categorical? |
---|---|---|---|
date | 1461 | :packed-local-date | |
precipitation | 1461 | :float32 | |
temp_max | 1461 | :float32 | |
temp_min | 1461 | :float32 | |
wind | 1461 | :float32 | |
weather | 1461 | :string | true |
Getting a dataset name
(api/dataset-name ds)
"https://vega.github.io/vega-lite/examples/data/seattle-weather.csv"
Setting a dataset name (operation is immutable).
(->> "seattle-weather"
(api/set-dataset-name ds)
(api/dataset-name))
"seattle-weather"
Get columns and rows as sequences. column
, columns
and rows
treat grouped dataset as regular one. See Groups
to read more about grouped datasets.
Select column.
(ds "wind")
(api/column ds "date")
#tech.ml.dataset.column<float32>[1461]
wind
[4.700, 4.500, 2.300, 4.700, 6.100, 2.200, 2.300, 2.000, 3.400, 3.400, 5.100, 1.900, 1.300, 5.300, 3.200, 5.000, 5.600, 5.000, 1.600, 2.300, ...]
#tech.ml.dataset.column<packed-local-date>[1461]
date
[2012-01-01, 2012-01-02, 2012-01-03, 2012-01-04, 2012-01-05, 2012-01-06, 2012-01-07, 2012-01-08, 2012-01-09, 2012-01-10, 2012-01-11, 2012-01-12, 2012-01-13, 2012-01-14, 2012-01-15, 2012-01-16, 2012-01-17, 2012-01-18, 2012-01-19, 2012-01-20, ...]
Columns as sequence
(take 2 (api/columns ds))
(#tech.ml.dataset.column<packed-local-date>[1461]
date
[2012-01-01, 2012-01-02, 2012-01-03, 2012-01-04, 2012-01-05, 2012-01-06, 2012-01-07, 2012-01-08, 2012-01-09, 2012-01-10, 2012-01-11, 2012-01-12, 2012-01-13, 2012-01-14, 2012-01-15, 2012-01-16, 2012-01-17, 2012-01-18, 2012-01-19, 2012-01-20, ...] #tech.ml.dataset.column<float32>[1461]
precipitation
[0.000, 10.90, 0.8000, 20.30, 1.300, 2.500, 0.000, 0.000, 4.300, 1.000, 0.000, 0.000, 0.000, 4.100, 5.300, 2.500, 8.100, 19.80, 15.20, 13.50, ...])
Columns as map
(keys (api/columns ds :as-map))
("date" "precipitation" "temp_max" "temp_min" "wind" "weather")
Rows as sequence of sequences
(take 2 (api/rows ds))
([#object[java.time.LocalDate 0x7d7ece01 "2012-01-01"] 0.0 12.8 5.0 4.7 "drizzle"] [#object[java.time.LocalDate 0x215c5ee7 "2012-01-02"] 10.9 10.6 2.8 4.5 "rain"])
Rows as sequence of maps
(clojure.pprint/pprint (take 2 (api/rows ds :as-maps)))
({"date" #object[java.time.LocalDate 0x5d929f48 "2012-01-01"],
"precipitation" 0.0,
"temp_min" 5.0,
"weather" "drizzle",
"temp_max" 12.8,
"wind" 4.7}
{"date" #object[java.time.LocalDate 0x64ce33df "2012-01-02"],
"precipitation" 10.9,
"temp_min" 2.8,
"weather" "rain",
"temp_max" 10.6,
"wind" 4.5})
Dataset is printed using dataset->str
or print-dataset
functions. Options are the same as in tech.ml.dataset/dataset-data->str
. Most important is :print-line-policy
which can be one of the: :single
, :repl
or :markdown
.
(api/print-dataset (api/group-by DS :V1) {:print-line-policy :markdown})
_unnamed [2 3]:
| :name | :group-id | :data |
|------:|----------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 1 | 0 | Group: 1 [5 4]:<br><br>\| :V1 \| :V2 \| :V3 \| :V4 \|<br>\|----:\|----:\|----:\|-----\|<br>\| 1 \| 1 \| 0.5 \| A \|<br>\| 1 \| 3 \| 1.5 \| C \|<br>\| 1 \| 5 \| 1.0 \| B \|<br>\| 1 \| 7 \| 0.5 \| A \|<br>\| 1 \| 9 \| 1.5 \| C \| |
| 2 | 1 | Group: 2 [4 4]:<br><br>\| :V1 \| :V2 \| :V3 \| :V4 \|<br>\|----:\|----:\|----:\|-----\|<br>\| 2 \| 2 \| 1.0 \| B \|<br>\| 2 \| 4 \| 0.5 \| A \|<br>\| 2 \| 6 \| 1.5 \| C \|<br>\| 2 \| 8 \| 1.0 \| B \| |
(api/print-dataset (api/group-by DS :V1) {:print-line-policy :repl})
_unnamed [2 3]:
| :name | :group-id | :data |
|------:|----------:|--------------------------------|
| 1 | 0 | Group: 1 [5 4]: |
| | | |
| | | \| :V1 \| :V2 \| :V3 \| :V4 \| |
| | | \|----:\|----:\|----:\|-----\| |
| | | \| 1 \| 1 \| 0.5 \| A \| |
| | | \| 1 \| 3 \| 1.5 \| C \| |
| | | \| 1 \| 5 \| 1.0 \| B \| |
| | | \| 1 \| 7 \| 0.5 \| A \| |
| | | \| 1 \| 9 \| 1.5 \| C \| |
| 2 | 1 | Group: 2 [4 4]: |
| | | |
| | | \| :V1 \| :V2 \| :V3 \| :V4 \| |
| | | \|----:\|----:\|----:\|-----\| |
| | | \| 2 \| 2 \| 1.0 \| B \| |
| | | \| 2 \| 4 \| 0.5 \| A \| |
| | | \| 2 \| 6 \| 1.5 \| C \| |
| | | \| 2 \| 8 \| 1.0 \| B \| |
(api/print-dataset (api/group-by DS :V1) {:print-line-policy :single})
_unnamed [2 3]:
| :name | :group-id | :data |
|------:|----------:|-----------------|
| 1 | 0 | Group: 1 [5 4]: |
| 2 | 1 | Group: 2 [4 4]: |
Grouping by is an operation which splits dataset into subdatasets and pack it into new special type of... dataset. I distinguish two types of dataset: regular dataset and grouped dataset. The latter is the result of grouping.
Grouped dataset is annotated in by :grouped?
meta tag and consist following columns:
:name
- group name or structure:group-id
- integer assigned to the group:data
- groups as datasetsAlmost all functions recognize type of the dataset (grouped or not) and operate accordingly.
You can't apply reshaping or join/concat functions on grouped datasets.
Grouping is done by calling group-by
function with arguments:
ds
- datasetgrouping-selector
- what to use for grouping:result-type
- what to return:
:as-dataset
(default) - return grouped dataset:as-indexes
- return rows ids (row number from original dataset):as-map
- return map with group names as keys and subdataset as values:as-seq
- return sequens of subdatasets:select-keys
- list of the columns passed to a grouping selector functionAll subdatasets (groups) have set name as the group name, additionally group-id
is in meta.
Grouping can be done by:
:select-keys
)Note: currently dataset inside dataset is printed recursively so it renders poorly from markdown. So I will use :as-seq
result type to show just group names and groups.
List of columns in grouped dataset
(-> DS
(api/group-by :V1)
(api/column-names))
(:V1 :V2 :V3 :V4)
List of columns in grouped dataset treated as regular dataset
(-> DS
(api/group-by :V1)
(api/as-regular-dataset)
(api/column-names))
(:name :group-id :data)
Content of the grouped dataset
(api/columns (api/group-by DS :V1) :as-map)
{:name #tech.ml.dataset.column<int64>[2]
:name
[1, 2, ], :group-id #tech.ml.dataset.column<int64>[2]
:group-id
[0, 1, ], :data #tech.ml.dataset.column<object>[2]
:data
[Group: 1 [5 4]:
| :V1 | :V2 | :V3 | :V4 |
|----:|----:|----:|-----|
| 1 | 1 | 0.5 | A |
| 1 | 3 | 1.5 | C |
| 1 | 5 | 1.0 | B |
| 1 | 7 | 0.5 | A |
| 1 | 9 | 1.5 | C |
, Group: 2 [4 4]:
| :V1 | :V2 | :V3 | :V4 |
|----:|----:|----:|-----|
| 2 | 2 | 1.0 | B |
| 2 | 4 | 0.5 | A |
| 2 | 6 | 1.5 | C |
| 2 | 8 | 1.0 | B |
, ]}
Grouped dataset as map
(keys (api/group-by DS :V1 {:result-type :as-map}))
(1 2)
(vals (api/group-by DS :V1 {:result-type :as-map}))
(Group: 1 [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
Group: 2 [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
)
Group dataset as map of indexes (row ids)
(api/group-by DS :V1 {:result-type :as-indexes})
{1 [0 2 4 6 8], 2 [1 3 5 7]}
Grouped datasets are printed as follows by default.
(api/group-by DS :V1)
_unnamed [2 3]:
:name | :group-id | :data |
---|---|---|
1 | 0 | Group: 1 [5 4]: |
2 | 1 | Group: 2 [4 4]: |
To get groups as sequence or a map can be done from grouped dataset using groups->seq
and groups->map
functions.
Groups as seq can be obtained by just accessing :data
column.
I will use temporary dataset here.
(let [ds (-> {"a" [1 1 2 2]
"b" ["a" "b" "c" "d"]}
(api/dataset)
(api/group-by "a"))]
(seq (ds :data))) ;; seq is not necessary but Markdown treats `:data` as command here
(Group: 1 [2 2]:
a | b |
---|---|
1 | a |
1 | b |
Group: 2 [2 2]:
a | b |
---|---|
2 | c |
2 | d |
)
(-> {"a" [1 1 2 2]
"b" ["a" "b" "c" "d"]}
(api/dataset)
(api/group-by "a")
(api/groups->seq))
(Group: 1 [2 2]:
a | b |
---|---|
1 | a |
1 | b |
Group: 2 [2 2]:
a | b |
---|---|
2 | c |
2 | d |
)
Groups as map
(-> {"a" [1 1 2 2]
"b" ["a" "b" "c" "d"]}
(api/dataset)
(api/group-by "a")
(api/groups->map))
{1 Group: 1 [2 2]:
a | b |
---|---|
1 | a |
1 | b |
, 2 Group: 2 [2 2]:
a | b |
---|---|
2 | c |
2 | d |
}
Grouping by more than one column. You can see that group names are maps. When ungrouping is done these maps are used to restore column names.
(api/group-by DS [:V1 :V3] {:result-type :as-seq})
(Group: {:V3 1.0, :V1 1} [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
Group: {:V3 0.5, :V1 1} [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
Group: {:V3 0.5, :V1 2} [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
Group: {:V3 1.0, :V1 2} [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
Group: {:V3 1.5, :V1 1} [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
1 | 9 | 1.5 | C |
Group: {:V3 1.5, :V1 2} [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
)
Grouping can be done by providing just row indexes. This way you can assign the same row to more than one group.
(api/group-by DS {"group-a" [1 2 1 2]
"group-b" [5 5 5 1]} {:result-type :as-seq})
(Group: group-a [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
Group: group-b [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
2 | 6 | 1.5 | C |
2 | 6 | 1.5 | C |
2 | 2 | 1.0 | B |
)
You can group by a result of grouping function which gets row as map and should return group name. When map is used as a group name, ungrouping restore original column names.
(api/group-by DS (fn [row] (* (:V1 row)
(:V3 row))) {:result-type :as-seq})
(Group: 1.0 [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
Group: 2.0 [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
Group: 0.5 [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
Group: 3.0 [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
Group: 1.5 [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
1 | 9 | 1.5 | C |
)
You can use any predicate on column to split dataset into two groups.
(api/group-by DS (comp #(< % 1.0) :V3) {:result-type :as-seq})
(Group: false [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Group: true [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
)
juxt
is also helpful
(api/group-by DS (juxt :V1 :V3) {:result-type :as-seq})
(Group: [1 1.0] [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
Group: [1 0.5] [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
Group: [2 1.5] [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
Group: [1 1.5] [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
1 | 9 | 1.5 | C |
Group: [2 0.5] [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
Group: [2 1.0] [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
)
tech.ml.dataset
provides an option to limit columns which are passed to grouping functions. It's done for performance purposes.
(api/group-by DS identity {:result-type :as-seq
:select-keys [:V1]})
(Group: {:V1 1} [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
Group: {:V1 2} [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
)
Ungrouping simply concats all the groups into the dataset. Following options are possible
:order?
- order groups according to the group name ascending order. Default: false
:add-group-as-column
- should group name become a column? If yes column is created with provided name (or :$group-name
if argument is true
). Default: nil
.:add-group-id-as-column
- should group id become a column? If yes column is created with provided name (or :$group-id
if argument is true
). Default: nil
.:dataset-name
- to name resulting dataset. Default: nil
(_unnamed)If group name is a map, it will be splitted into separate columns. Be sure that groups (subdatasets) doesn't contain the same columns already.
If group name is a vector, it will be splitted into separate columns. If you want to name them, set vector of target column names as :add-group-as-column
argument.
After ungrouping, order of the rows is kept within the groups but groups are ordered according to the internal storage.
Grouping and ungrouping.
(-> DS
(api/group-by :V3)
(api/ungroup))
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
Groups sorted by group name and named.
(-> DS
(api/group-by :V3)
(api/ungroup {:order? true
:dataset-name "Ordered by V3"}))
Ordered by V3 [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
Groups sorted descending by group name and named.
(-> DS
(api/group-by :V3)
(api/ungroup {:order? :desc
:dataset-name "Ordered by V3 descending"}))
Ordered by V3 descending [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
Let's add group name and id as additional columns
(-> DS
(api/group-by (comp #(< % 4) :V2))
(api/ungroup {:add-group-as-column true
:add-group-id-as-column true}))
_unnamed [9 6]:
:$group-name | :$group-id | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|---|
false | 0 | 2 | 4 | 0.5 | A |
false | 0 | 1 | 5 | 1.0 | B |
false | 0 | 2 | 6 | 1.5 | C |
false | 0 | 1 | 7 | 0.5 | A |
false | 0 | 2 | 8 | 1.0 | B |
false | 0 | 1 | 9 | 1.5 | C |
true | 1 | 1 | 1 | 0.5 | A |
true | 1 | 2 | 2 | 1.0 | B |
true | 1 | 1 | 3 | 1.5 | C |
Let's assign different column names
(-> DS
(api/group-by (comp #(< % 4) :V2))
(api/ungroup {:add-group-as-column "Is V2 less than 4?"
:add-group-id-as-column "group id"}))
_unnamed [9 6]:
Is V2 less than 4? | group id | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|---|
false | 0 | 2 | 4 | 0.5 | A |
false | 0 | 1 | 5 | 1.0 | B |
false | 0 | 2 | 6 | 1.5 | C |
false | 0 | 1 | 7 | 0.5 | A |
false | 0 | 2 | 8 | 1.0 | B |
false | 0 | 1 | 9 | 1.5 | C |
true | 1 | 1 | 1 | 0.5 | A |
true | 1 | 2 | 2 | 1.0 | B |
true | 1 | 1 | 3 | 1.5 | C |
If we group by map, we can automatically create new columns out of group names.
(-> DS
(api/group-by (fn [row] {"V1 and V3 multiplied" (* (:V1 row)
(:V3 row))
"V4 as lowercase" (clojure.string/lower-case (:V4 row))}))
(api/ungroup {:add-group-as-column true}))
_unnamed [9 6]:
V1 and V3 multiplied | V4 as lowercase | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|---|
1.000 | a | 2 | 4 | 0.5 | A |
0.5000 | a | 1 | 1 | 0.5 | A |
0.5000 | a | 1 | 7 | 0.5 | A |
1.000 | b | 1 | 5 | 1.0 | B |
2.000 | b | 2 | 2 | 1.0 | B |
2.000 | b | 2 | 8 | 1.0 | B |
3.000 | c | 2 | 6 | 1.5 | C |
1.500 | c | 1 | 3 | 1.5 | C |
1.500 | c | 1 | 9 | 1.5 | C |
We can add group names without separation
(-> DS
(api/group-by (fn [row] {"V1 and V3 multiplied" (* (:V1 row)
(:V3 row))
"V4 as lowercase" (clojure.string/lower-case (:V4 row))}))
(api/ungroup {:add-group-as-column "just map"
:separate? false}))
_unnamed [9 5]:
just map | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|
{"V1 and V3 multiplied" 1.0, "V4 as lowercase" "a"} | 2 | 4 | 0.5 | A |
{"V1 and V3 multiplied" 0.5, "V4 as lowercase" "a"} | 1 | 1 | 0.5 | A |
{"V1 and V3 multiplied" 0.5, "V4 as lowercase" "a"} | 1 | 7 | 0.5 | A |
{"V1 and V3 multiplied" 1.0, "V4 as lowercase" "b"} | 1 | 5 | 1.0 | B |
{"V1 and V3 multiplied" 2.0, "V4 as lowercase" "b"} | 2 | 2 | 1.0 | B |
{"V1 and V3 multiplied" 2.0, "V4 as lowercase" "b"} | 2 | 8 | 1.0 | B |
{"V1 and V3 multiplied" 3.0, "V4 as lowercase" "c"} | 2 | 6 | 1.5 | C |
{"V1 and V3 multiplied" 1.5, "V4 as lowercase" "c"} | 1 | 3 | 1.5 | C |
{"V1 and V3 multiplied" 1.5, "V4 as lowercase" "c"} | 1 | 9 | 1.5 | C |
The same applies to group names as sequences
(-> DS
(api/group-by (juxt :V1 :V3))
(api/ungroup {:add-group-as-column "abc"}))
_unnamed [9 6]:
:abc-0 | :abc-1 | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|---|
1 | 1.000 | 1 | 5 | 1.0 | B |
1 | 0.5000 | 1 | 1 | 0.5 | A |
1 | 0.5000 | 1 | 7 | 0.5 | A |
2 | 1.500 | 2 | 6 | 1.5 | C |
1 | 1.500 | 1 | 3 | 1.5 | C |
1 | 1.500 | 1 | 9 | 1.5 | C |
2 | 0.5000 | 2 | 4 | 0.5 | A |
2 | 1.000 | 2 | 2 | 1.0 | B |
2 | 1.000 | 2 | 8 | 1.0 | B |
Let's provide column names
(-> DS
(api/group-by (juxt :V1 :V3))
(api/ungroup {:add-group-as-column ["v1" "v3"]}))
_unnamed [9 6]:
v1 | v3 | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|---|
1 | 1.000 | 1 | 5 | 1.0 | B |
1 | 0.5000 | 1 | 1 | 0.5 | A |
1 | 0.5000 | 1 | 7 | 0.5 | A |
2 | 1.500 | 2 | 6 | 1.5 | C |
1 | 1.500 | 1 | 3 | 1.5 | C |
1 | 1.500 | 1 | 9 | 1.5 | C |
2 | 0.5000 | 2 | 4 | 0.5 | A |
2 | 1.000 | 2 | 2 | 1.0 | B |
2 | 1.000 | 2 | 8 | 1.0 | B |
Also we can supress separation
(-> DS
(api/group-by (juxt :V1 :V3))
(api/ungroup {:separate? false
:add-group-as-column true}))
;; => _unnamed [9 5]:
_unnamed [9 5]:
:$group-name | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|
[1 1.0] | 1 | 5 | 1.0 | B |
[1 0.5] | 1 | 1 | 0.5 | A |
[1 0.5] | 1 | 7 | 0.5 | A |
[2 1.5] | 2 | 6 | 1.5 | C |
[1 1.5] | 1 | 3 | 1.5 | C |
[1 1.5] | 1 | 9 | 1.5 | C |
[2 0.5] | 2 | 4 | 0.5 | A |
[2 1.0] | 2 | 2 | 1.0 | B |
[2 1.0] | 2 | 8 | 1.0 | B |
To check if dataset is grouped or not just use grouped?
function.
(api/grouped? DS)
nil
(api/grouped? (api/group-by DS :V1))
true
If you want to remove grouping annotation (to make all the functions work as with regular dataset) you can use unmark-group
or as-regular-dataset
(alias) functions.
It can be important when you want to remove some groups (rows) from grouped dataset using drop-rows
or something like that.
(-> DS
(api/group-by :V1)
(api/as-regular-dataset)
(api/grouped?))
nil
This is considered internal.
If you want to implement your own mapping function on grouped dataset you can call process-group-data
and pass function operating on datasets. Result should be a dataset to have ungrouping working.
(-> DS
(api/group-by :V1)
(api/process-group-data #(str "Shape: " (vector (api/row-count %) (api/column-count %))))
(api/as-regular-dataset))
_unnamed [2 3]:
:name | :group-id | :data |
---|---|---|
1 | 0 | Shape: [5 4] |
2 | 1 | Shape: [4 4] |
Column is a special tech.ml.dataset
structure based on tech.ml.datatype
library. For our purposes we cat treat columns as typed and named sequence bound to particular dataset.
Type of the data is inferred from a sequence during column creation.
To select dataset columns or column names columns-selector
is used. columns-selector
can be one of the following:
:all
keyword - selects all columnstype
namespaced keyword for specific datatype or group of datatypesColumn name can be anything.
column-names
function returns names according to columns-selector
and optional meta-field
. meta-field
is one of the following:
:name
(default) - to operate on column names:datatype
- to operated on column types:all
- if you want to process all metadataDatatype groups are:
:type/numerical
- any numerical type:type/float
- floating point number (:float32
and :float64
):type/integer
- any integer:type/datetime
- any datetime typeIf qualified keyword starts with :!type
, complement set is used.
To select all column names you can use column-names
function.
(api/column-names DS)
(:V1 :V2 :V3 :V4)
or
(api/column-names DS :all)
(:V1 :V2 :V3 :V4)
In case you want to select column which has name :all
(or is sequence or map), put it into a vector. Below code returns empty sequence since there is no such column in the dataset.
(api/column-names DS [:all])
()
Obviously selecting single name returns it's name if available
(api/column-names DS :V1)
(api/column-names DS "no such column")
(:V1)
()
Select sequence of column names.
(api/column-names DS [:V1 "V2" :V3 :V4 :V5])
(:V1 :V3 :V4)
Select names based on regex, columns ends with 1
or 4
(api/column-names DS #".*[14]")
(:V1 :V4)
Select names based on regex operating on type of the column (to check what are the column types, call (api/info DS :columns)
. Here we want to get integer columns only.
(api/column-names DS #"^:int.*" :datatype)
(:V1 :V2)
or
(api/column-names DS :type/integer)
(:V1 :V2)
And finally we can use predicate to select names. Let's select double precision columns.
(api/column-names DS #{:float64} :datatype)
(:V3)
or
(api/column-names DS :type/float64 :datatype)
(:V3)
If you want to select all columns but given, use complement
function. Works only on a predicate.
(api/column-names DS (complement #{:V1}))
(api/column-names DS (complement #{:float64}) :datatype)
(api/column-names DS :!type/float64)
(:V2 :V3 :V4)
(:V1 :V2 :V4)
(:V1 :V2 :V4)
You can select column names based on all column metadata at once by using :all
metadata selector. Below we want to select column names ending with 1
which have long
datatype.
(api/column-names DS (fn [meta]
(and (= :int64 (:datatype meta))
(clojure.string/ends-with? (:name meta) "1"))) :all)
(:V1)
select-columns
creates dataset with columns selected by columns-selector
as described above. Function works on regular and grouped dataset.
Select only float64 columns
(api/select-columns DS #(= :float64 %) :datatype)
_unnamed [9 1]:
:V3 |
---|
0.5 |
1.0 |
1.5 |
0.5 |
1.0 |
1.5 |
0.5 |
1.0 |
1.5 |
Select all but :V1
columns
(api/select-columns DS (complement #{:V1}))
_unnamed [9 3]:
:V2 | :V3 | :V4 |
---|---|---|
1 | 0.5 | A |
2 | 1.0 | B |
3 | 1.5 | C |
4 | 0.5 | A |
5 | 1.0 | B |
6 | 1.5 | C |
7 | 0.5 | A |
8 | 1.0 | B |
9 | 1.5 | C |
If we have grouped data set, column selection is applied to every group separately.
(-> DS
(api/group-by :V1)
(api/select-columns [:V2 :V3])
(api/groups->map))
{1 Group: 1 [5 2]:
:V2 | :V3 |
---|---|
1 | 0.5 |
3 | 1.5 |
5 | 1.0 |
7 | 0.5 |
9 | 1.5 |
, 2 Group: 2 [4 2]:
:V2 | :V3 |
---|---|
2 | 1.0 |
4 | 0.5 |
6 | 1.5 |
8 | 1.0 |
}
drop-columns
creates dataset with removed columns.
Drop float64 columns
(api/drop-columns DS #(= :float64 %) :datatype)
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 1 | A |
2 | 2 | B |
1 | 3 | C |
2 | 4 | A |
1 | 5 | B |
2 | 6 | C |
1 | 7 | A |
2 | 8 | B |
1 | 9 | C |
Drop all columns but :V1
and :V2
(api/drop-columns DS (complement #{:V1 :V2}))
_unnamed [9 2]:
:V1 | :V2 |
---|---|
1 | 1 |
2 | 2 |
1 | 3 |
2 | 4 |
1 | 5 |
2 | 6 |
1 | 7 |
2 | 8 |
1 | 9 |
If we have grouped data set, column selection is applied to every group separately. Selected columns are dropped.
(-> DS
(api/group-by :V1)
(api/drop-columns [:V2 :V3])
(api/groups->map))
{1 Group: 1 [5 2]:
:V1 | :V4 |
---|---|
1 | A |
1 | C |
1 | B |
1 | A |
1 | C |
, 2 Group: 2 [4 2]:
:V1 | :V4 |
---|---|
2 | B |
2 | A |
2 | C |
2 | B |
}
If you want to rename colums use rename-columns
and pass map where keys are old names, values new ones.
You can also pass mapping function with optional columns-selector
(api/rename-columns DS {:V1 "v1"
:V2 "v2"
:V3 [1 2 3]
:V4 (Object.)})
_unnamed [9 4]:
v1 | v2 | [1 2 3] | java.lang.Object@318a4d78 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Map all names with function
(api/rename-columns DS (comp str second name))
_unnamed [9 4]:
1 | 2 | 3 | 4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Map selected names with function
(api/rename-columns DS [:V1 :V3] (comp str second name))
_unnamed [9 4]:
1 | :V2 | 3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Function works on grouped dataset
(-> DS
(api/group-by :V1)
(api/rename-columns {:V1 "v1"
:V2 "v2"
:V3 [1 2 3]
:V4 (Object.)})
(api/groups->map))
{1 Group: 1 [5 4]:
v1 | v2 | [1 2 3] | java.lang.Object@2202e027 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
, 2 Group: 2 [4 4]:
v1 | v2 | [1 2 3] | java.lang.Object@2202e027 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
}
To add (or replace existing) column call add-or-replace-column
function. Function accepts:
ds
- a datasetcolumn-name
- if it's existing column name, column will be replacedcolumn
- can be column (from other dataset), sequence, single value or function. Too big columns are always trimmed. Too small are cycled or extended with missing values (according to size-strategy
argument)size-strategy
(optional) - when new column is shorter than dataset row count, following strategies are applied:
:cycle
(default) - repeat data:na
- append missing values:strict
- throws an exception when sizes mismatchFunction works on grouped dataset.
Add single value as column
(api/add-or-replace-column DS :V5 "X")
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :V5 |
---|---|---|---|---|
1 | 1 | 0.5 | A | X |
2 | 2 | 1.0 | B | X |
1 | 3 | 1.5 | C | X |
2 | 4 | 0.5 | A | X |
1 | 5 | 1.0 | B | X |
2 | 6 | 1.5 | C | X |
1 | 7 | 0.5 | A | X |
2 | 8 | 1.0 | B | X |
1 | 9 | 1.5 | C | X |
Replace one column (column is trimmed)
(api/add-or-replace-column DS :V1 (repeatedly rand))
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
0.8269 | 1 | 0.5 | A |
0.6829 | 2 | 1.0 | B |
0.9629 | 3 | 1.5 | C |
0.3833 | 4 | 0.5 | A |
0.6851 | 5 | 1.0 | B |
0.5992 | 6 | 1.5 | C |
0.2491 | 7 | 0.5 | A |
0.1348 | 8 | 1.0 | B |
0.7648 | 9 | 1.5 | C |
Copy column
(api/add-or-replace-column DS :V5 (DS :V1))
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :V5 |
---|---|---|---|---|
1 | 1 | 0.5 | A | 1 |
2 | 2 | 1.0 | B | 2 |
1 | 3 | 1.5 | C | 1 |
2 | 4 | 0.5 | A | 2 |
1 | 5 | 1.0 | B | 1 |
2 | 6 | 1.5 | C | 2 |
1 | 7 | 0.5 | A | 1 |
2 | 8 | 1.0 | B | 2 |
1 | 9 | 1.5 | C | 1 |
When function is used, argument is whole dataset and the result should be column, sequence or single value
(api/add-or-replace-column DS :row-count api/row-count)
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :row-count |
---|---|---|---|---|
1 | 1 | 0.5 | A | 9 |
2 | 2 | 1.0 | B | 9 |
1 | 3 | 1.5 | C | 9 |
2 | 4 | 0.5 | A | 9 |
1 | 5 | 1.0 | B | 9 |
2 | 6 | 1.5 | C | 9 |
1 | 7 | 0.5 | A | 9 |
2 | 8 | 1.0 | B | 9 |
1 | 9 | 1.5 | C | 9 |
Above example run on grouped dataset, applies function on each group separately.
(-> DS
(api/group-by :V1)
(api/add-or-replace-column :row-count api/row-count)
(api/ungroup))
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :row-count |
---|---|---|---|---|
1 | 1 | 0.5 | A | 5 |
1 | 3 | 1.5 | C | 5 |
1 | 5 | 1.0 | B | 5 |
1 | 7 | 0.5 | A | 5 |
1 | 9 | 1.5 | C | 5 |
2 | 2 | 1.0 | B | 4 |
2 | 4 | 0.5 | A | 4 |
2 | 6 | 1.5 | C | 4 |
2 | 8 | 1.0 | B | 4 |
When column which is added is longer than row count in dataset, column is trimmed. When column is shorter, it's cycled or missing values are appended.
(api/add-or-replace-column DS :V5 [:r :b])
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :V5 |
---|---|---|---|---|
1 | 1 | 0.5 | A | :r |
2 | 2 | 1.0 | B | :b |
1 | 3 | 1.5 | C | :r |
2 | 4 | 0.5 | A | :b |
1 | 5 | 1.0 | B | :r |
2 | 6 | 1.5 | C | :b |
1 | 7 | 0.5 | A | :r |
2 | 8 | 1.0 | B | :b |
1 | 9 | 1.5 | C | :r |
(api/add-or-replace-column DS :V5 [:r :b] :na)
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :V5 |
---|---|---|---|---|
1 | 1 | 0.5 | A | :r |
2 | 2 | 1.0 | B | :b |
1 | 3 | 1.5 | C | |
2 | 4 | 0.5 | A | |
1 | 5 | 1.0 | B | |
2 | 6 | 1.5 | C | |
1 | 7 | 0.5 | A | |
2 | 8 | 1.0 | B | |
1 | 9 | 1.5 | C |
Exception is thrown when :strict
strategy is used and column size is not equal row count
(try
(api/add-or-replace-column DS :V5 [:r :b] :strict)
(catch Exception e (str "Exception caught: "(ex-message e))))
"Exception caught: Column size (2) should be exactly the same as dataset row count (9)"
Tha same applies for grouped dataset
(-> DS
(api/group-by :V3)
(api/add-or-replace-column :V5 [:r :b] :na)
(api/ungroup))
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :V5 |
---|---|---|---|---|
2 | 2 | 1.0 | B | :r |
1 | 5 | 1.0 | B | :b |
2 | 8 | 1.0 | B | |
1 | 1 | 0.5 | A | :r |
2 | 4 | 0.5 | A | :b |
1 | 7 | 0.5 | A | |
1 | 3 | 1.5 | C | :r |
2 | 6 | 1.5 | C | :b |
1 | 9 | 1.5 | C |
Let's use other column to fill groups
(-> DS
(api/group-by :V3)
(api/add-or-replace-column :V5 (DS :V2))
(api/ungroup))
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :V5 |
---|---|---|---|---|
2 | 2 | 1.0 | B | 1 |
1 | 5 | 1.0 | B | 2 |
2 | 8 | 1.0 | B | 3 |
1 | 1 | 0.5 | A | 1 |
2 | 4 | 0.5 | A | 2 |
1 | 7 | 0.5 | A | 3 |
1 | 3 | 1.5 | C | 1 |
2 | 6 | 1.5 | C | 2 |
1 | 9 | 1.5 | C | 3 |
In case you want to add or update several columns you can call add-or-replace-columns
and provide map where keys are column names, vals are columns.
(api/add-or-replace-columns DS {:V1 #(map inc (% :V1))
:V5 #(map (comp keyword str) (% :V4))
:V6 11})
_unnamed [9 6]:
:V1 | :V2 | :V3 | :V4 | :V5 | :V6 |
---|---|---|---|---|---|
2 | 1 | 0.5 | A | :A | 11 |
3 | 2 | 1.0 | B | :B | 11 |
2 | 3 | 1.5 | C | :C | 11 |
3 | 4 | 0.5 | A | :A | 11 |
2 | 5 | 1.0 | B | :B | 11 |
3 | 6 | 1.5 | C | :C | 11 |
2 | 7 | 0.5 | A | :A | 11 |
3 | 8 | 1.0 | B | :B | 11 |
2 | 9 | 1.5 | C | :C | 11 |
If you want to modify specific column(s) you can call update-columns
. Arguments:
columns-selector
and function (or sequence of functions)Functions accept column and have to return column or sequence
Reverse of columns
(api/update-columns DS :all reverse)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 9 | 1.500 | C |
2 | 8 | 1.000 | B |
1 | 7 | 0.5000 | A |
2 | 6 | 1.500 | C |
1 | 5 | 1.000 | B |
2 | 4 | 0.5000 | A |
1 | 3 | 1.500 | C |
2 | 2 | 1.000 | B |
1 | 1 | 0.5000 | A |
Apply dec/inc on numerical columns
(api/update-columns DS :type/numerical [(partial map dec)
(partial map inc)])
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
0 | 2 | -0.5000 | A |
1 | 3 | 0.000 | B |
0 | 4 | 0.5000 | C |
1 | 5 | -0.5000 | A |
0 | 6 | 0.000 | B |
1 | 7 | 0.5000 | C |
0 | 8 | -0.5000 | A |
1 | 9 | 0.000 | B |
0 | 10 | 0.5000 | C |
You can also assing function to a column by packing operations into the map.
(api/update-columns DS {:V1 reverse
:V2 (comp shuffle seq)})
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 0.5 | A |
2 | 7 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 8 | 0.5 | A |
1 | 1 | 1.0 | B |
2 | 4 | 1.5 | C |
1 | 2 | 0.5 | A |
2 | 6 | 1.0 | B |
1 | 9 | 1.5 | C |
The other way of creating or updating column is to map rows as regular map
function. The arity of mapping function should be the same as number of selected columns.
Arguments:
ds
- datasetcolumn-name
- target column namecolumns-selector
- columns selectedmap-fn
- mapping functionLet's add numerical columns together
(api/map-columns DS
:sum-of-numbers
(api/column-names DS #{:int64 :float64} :datatype)
(fn [& rows]
(reduce + rows)))
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :sum-of-numbers |
---|---|---|---|---|
1 | 1 | 0.5 | A | 2.5 |
2 | 2 | 1.0 | B | 5.0 |
1 | 3 | 1.5 | C | 5.5 |
2 | 4 | 0.5 | A | 6.5 |
1 | 5 | 1.0 | B | 7.0 |
2 | 6 | 1.5 | C | 9.5 |
1 | 7 | 0.5 | A | 8.5 |
2 | 8 | 1.0 | B | 11.0 |
1 | 9 | 1.5 | C | 11.5 |
The same works on grouped dataset
(-> DS
(api/group-by :V4)
(api/map-columns :sum-of-numbers
(api/column-names DS #{:int64 :float64} :datatype)
(fn [& rows]
(reduce + rows)))
(api/ungroup))
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :sum-of-numbers |
---|---|---|---|---|
1 | 1 | 0.5 | A | 2.5 |
2 | 4 | 0.5 | A | 6.5 |
1 | 7 | 0.5 | A | 8.5 |
2 | 2 | 1.0 | B | 5.0 |
1 | 5 | 1.0 | B | 7.0 |
2 | 8 | 1.0 | B | 11.0 |
1 | 3 | 1.5 | C | 5.5 |
2 | 6 | 1.5 | C | 9.5 |
1 | 9 | 1.5 | C | 11.5 |
To reorder columns use columns selectors to choose what columns go first. The unseleted columns are appended to the end.
(api/reorder-columns DS :V4 [:V3 :V2] :V1)
_unnamed [9 4]:
:V4 | :V2 | :V3 | :V1 |
---|---|---|---|
A | 1 | 0.5 | 1 |
B | 2 | 1.0 | 2 |
C | 3 | 1.5 | 1 |
A | 4 | 0.5 | 2 |
B | 5 | 1.0 | 1 |
C | 6 | 1.5 | 2 |
A | 7 | 0.5 | 1 |
B | 8 | 1.0 | 2 |
C | 9 | 1.5 | 1 |
This function doesn't let you select meta field, so you have to call column-names
in such case. Below we want to add integer columns at the end.
(api/reorder-columns DS (api/column-names DS (complement #{:int64}) :datatype))
_unnamed [9 4]:
:V3 | :V4 | :V1 | :V2 |
---|---|---|---|
0.5 | A | 1 | 1 |
1.0 | B | 2 | 2 |
1.5 | C | 1 | 3 |
0.5 | A | 2 | 4 |
1.0 | B | 1 | 5 |
1.5 | C | 2 | 6 |
0.5 | A | 1 | 7 |
1.0 | B | 2 | 8 |
1.5 | C | 1 | 9 |
To convert column into given datatype can be done using convert-types
function. Not all the types can be converted automatically also some types require slow parsing (every conversion from string). In case where conversion is not possible you can pass conversion function.
Arguments:
ds
- datasetcoltype-map
in case when you want to convert several columns, keys are column names, vals are new typescolumn-selector
and new-types
- column name and new datatype (or datatypes as sequence)new-types
can be:
:int64
or :string
or sequence of typesAfter conversion additional infomation is given on problematic values.
The other conversion is casting column into java array (->array
) of the type column or provided as argument. Grouped dataset returns sequence of arrays.
Basic conversion
(-> DS
(api/convert-types :V1 :float64)
(api/info :columns))
_unnamed :column info [4 6]:
:name | :size | :datatype | :unparsed-indexes | :unparsed-data | :categorical? |
---|---|---|---|---|---|
:V1 | 9 | :float64 | {} | [] | |
:V2 | 9 | :int64 | |||
:V3 | 9 | :float64 | |||
:V4 | 9 | :string | true |
Using custom converter. Let's treat :V4
as haxadecimal values. See that this way we can map column to any value.
(-> DS
(api/convert-types :V4 [[:int16 #(Integer/parseInt % 16)]]))
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | 10 |
2 | 2 | 1.0 | 11 |
1 | 3 | 1.5 | 12 |
2 | 4 | 0.5 | 10 |
1 | 5 | 1.0 | 11 |
2 | 6 | 1.5 | 12 |
1 | 7 | 0.5 | 10 |
2 | 8 | 1.0 | 11 |
1 | 9 | 1.5 | 12 |
You can process several columns at once
(-> DS
(api/convert-types {:V1 :float64
:V2 :object
:V3 [:boolean #(< % 1.0)]
:V4 :object})
(api/info :columns))
_unnamed :column info [4 5]:
:name | :size | :datatype | :unparsed-indexes | :unparsed-data |
---|---|---|---|---|
:V1 | 9 | :float64 | {} | [] |
:V2 | 9 | :object | {} | [] |
:V3 | 9 | :boolean | {} | [] |
:V4 | 9 | :object |
Convert one type into another
(-> DS
(api/convert-types :type/numerical :int16)
(api/info :columns))
_unnamed :column info [4 6]:
:name | :size | :datatype | :unparsed-indexes | :unparsed-data | :categorical? |
---|---|---|---|---|---|
:V1 | 9 | :int16 | {} | [] | |
:V2 | 9 | :int16 | {} | [] | |
:V3 | 9 | :int16 | {} | [] | |
:V4 | 9 | :string | true |
Function works on the grouped dataset
(-> DS
(api/group-by :V1)
(api/convert-types :V1 :float32)
(api/ungroup)
(api/info :columns))
_unnamed :column info [4 6]:
:name | :size | :datatype | :unparsed-indexes | :unparsed-data | :categorical? |
---|---|---|---|---|---|
:V1 | 9 | :float32 | {} | [] | |
:V2 | 9 | :int64 | |||
:V3 | 9 | :float64 | |||
:V4 | 9 | :string | true |
Double array conversion.
(api/->array DS :V1)
#object["[J" 0x5fa2deec "[J@5fa2deec"]
Function also works on grouped dataset
(-> DS
(api/group-by :V3)
(api/->array :V2))
(#object["[J" 0x37c4c476 "[J@37c4c476"] #object["[J" 0x137516aa "[J@137516aa"] #object["[J" 0x6270cc16 "[J@6270cc16"])
You can also cast the type to the other one (if casting is possible):
(api/->array DS :V4 :string)
(api/->array DS :V1 :float32)
#object["[Ljava.lang.String;" 0x3477b39f "[Ljava.lang.String;@3477b39f"]
#object["[F" 0x2f731acb "[F@2f731acb"]
Rows can be selected or dropped using various selectors:
0
, second 1
and so on)When predicate is used you may want to limit columns passed to the function (select-keys
option).
Additionally you may want to precalculate some values which will be visible for predicate as additional columns. It's done internally by calling add-or-replace-columns
on a dataset. :pre
is used as a column definitions.
Select fourth row
(api/select-rows DS 4)
_unnamed [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
Select 3 rows
(api/select-rows DS [1 4 5])
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
Select rows using sequence of true/false values
(api/select-rows DS [true nil nil true])
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
Select rows using predicate
(api/select-rows DS (comp #(< % 1) :V3))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
The same works on grouped dataset, let's select first row from every group.
(-> DS
(api/group-by :V1)
(api/select-rows 0)
(api/ungroup))
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
If you want to select :V2
values which are lower than or equal mean in grouped dataset you have to precalculate it using :pre
.
(-> DS
(api/group-by :V4)
(api/select-rows (fn [row] (<= (:V2 row) (:mean row)))
{:pre {:mean #(tech.v2.datatype.functional/mean (% :V2))}})
(api/ungroup))
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
drop-rows
removes rows, and accepts exactly the same parameters as select-rows
Drop values lower than or equal :V2
column mean in grouped dataset.
(-> DS
(api/group-by :V4)
(api/drop-rows (fn [row] (<= (:V2 row) (:mean row)))
{:pre {:mean #(tech.v2.datatype.functional/mean (% :V2))}})
(api/ungroup))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
There are several function to select first, last, random rows, or display head, tail of the dataset. All functions work on grouped dataset.
All random functions accept :seed
as an option if you want to fix returned result.
First row
(api/first DS)
_unnamed [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
Last row
(api/last DS)
_unnamed [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 9 | 1.5 | C |
Random row (single)
(api/rand-nth DS)
_unnamed [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
Random row (single) with seed
(api/rand-nth DS {:seed 42})
_unnamed [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
Random n
(default: row count) rows with repetition.
(api/random DS)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 2 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 2 | 1.0 | B |
1 | 7 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 6 | 1.5 | C |
2 | 2 | 1.0 | B |
Five random rows with repetition
(api/random DS 5)
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
2 | 2 | 1.0 | B |
Five random, non-repeating rows
(api/random DS 5 {:repeat? false})
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
Five random, with seed
(api/random DS 5 {:seed 42})
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 1 | 0.5 | A |
1 | 9 | 1.5 | C |
Shuffle dataset
(api/shuffle DS)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 2 | 1.0 | B |
Shuffle with seed
(api/shuffle DS {:seed 42})
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
2 | 2 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 4 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 1 | 0.5 | A |
1 | 9 | 1.5 | C |
First n
rows (default 5)
(api/head DS)
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
Last n
rows (default 5)
(api/tail DS)
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
by-rank
calculates rank on column(s). It's base on R rank() with addition of :dense
(default) tie strategy which give consecutive rank numbering.
:desc?
options (default: true
) sorts input with descending order, giving top values under 0
value.
rank
is zero based and is defined at tablecloth.api.utils
namespace.
(api/by-rank DS :V3 zero?) ;; most V3 values
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
(api/by-rank DS :V3 zero? {:desc? false}) ;; least V3 values
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
Rank also works on multiple columns
(api/by-rank DS [:V1 :V3] zero? {:desc? false})
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
Select 5 random rows from each group
(-> DS
(api/group-by :V4)
(api/random 5)
(api/ungroup))
_unnamed [15 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 1 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 2 | 1.0 | B |
2 | 2 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
1 | 9 | 1.5 | C |
1 | 3 | 1.5 | C |
Aggregating is a function which produces single row out of dataset.
Aggregator is a function or sequence or map of functions which accept dataset as an argument and result single value, sequence of values or map.
Where map is given as an input or result, keys are treated as column names.
Grouped dataset is ungrouped after aggreation. This can be turned off by setting :ungroup
to false. In case you want to pass additional ungrouping parameters add them to the options.
By default resulting column names are prefixed with summary
prefix (set it with :default-column-name-prefix
option).
Let's calculate mean of some columns
(api/aggregate DS #(reduce + (% :V2)))
_unnamed [1 1]:
:summary |
---|
45 |
Let's give resulting column a name.
(api/aggregate DS {:sum-of-V2 #(reduce + (% :V2))})
_unnamed [1 1]:
:sum-of-V2 |
---|
45 |
Sequential result is spread into separate columns
(api/aggregate DS #(take 5(% :V2)))
_unnamed [1 5]:
:summary-0 | :summary-1 | :summary-2 | :summary-3 | :summary-4 |
---|---|---|---|---|
1 | 2 | 3 | 4 | 5 |
You can combine all variants and rename default prefix
(api/aggregate DS [#(take 3 (% :V2))
(fn [ds] {:sum-v1 (reduce + (ds :V1))
:prod-v3 (reduce * (ds :V3))})] {:default-column-name-prefix "V2-value"})
_unnamed [1 5]:
:V2-value-0-0 | :V2-value-0-1 | :V2-value-0-2 | :V2-value-1-sum-v1 | :V2-value-1-prod-v3 |
---|---|---|---|---|
1 | 2 | 3 | 13 | 0.421875 |
Processing grouped dataset
(-> DS
(api/group-by [:V4])
(api/aggregate [#(take 3 (% :V2))
(fn [ds] {:sum-v1 (reduce + (ds :V1))
:prod-v3 (reduce * (ds :V3))})] {:default-column-name-prefix "V2-value"}))
_unnamed [3 6]:
:V4 | :V2-value-0-0 | :V2-value-0-1 | :V2-value-0-2 | :V2-value-1-sum-v1 | :V2-value-1-prod-v3 |
---|---|---|---|---|---|
B | 2 | 5 | 8 | 5 | 1.000 |
C | 3 | 6 | 9 | 4 | 3.375 |
A | 1 | 4 | 7 | 4 | 0.125 |
Result of aggregating is automatically ungrouped, you can skip this step by stetting :ungroup
option to false
.
(-> DS
(api/group-by [:V3])
(api/aggregate [#(take 3 (% :V2))
(fn [ds] {:sum-v1 (reduce + (ds :V1))
:prod-v3 (reduce * (ds :V3))})] {:default-column-name-prefix "V2-value"
:ungroup? false}))
_unnamed [3 3]:
:name | :group-id | :data |
---|---|---|
{:V3 1.0} | 0 | _unnamed [1 5]: |
{:V3 0.5} | 1 | _unnamed [1 5]: |
{:V3 1.5} | 2 | _unnamed [1 5]: |
You can perform columnar aggreagation also. aggregate-columns
selects columns and apply aggregating function (or sequence of functions) for each column separately.
(api/aggregate-columns DS [:V1 :V2 :V3] #(reduce + %))
_unnamed [1 3]:
:V1 | :V2 | :V3 |
---|---|---|
13 | 45 | 9.0 |
(api/aggregate-columns DS [:V1 :V2 :V3] [#(reduce + %)
#(reduce max %)
#(reduce * %)])
_unnamed [1 3]:
:V1 | :V2 | :V3 |
---|---|---|
13 | 9 | 0.421875 |
(-> DS
(api/group-by [:V4])
(api/aggregate-columns [:V1 :V2 :V3] #(reduce + %)))
_unnamed [3 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
B | 5 | 15 | 3.0 |
C | 4 | 18 | 4.5 |
A | 4 | 12 | 1.5 |
Ordering can be done by column(s) or any function operating on row. Possible order can be:
:asc
for ascending order (default):desc
for descending order:select-keys
limits row map provided to ordering functions.
Order by single column, ascending
(api/order-by DS :V1)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
2 | 6 | 1.5 | C |
2 | 4 | 0.5 | A |
2 | 8 | 1.0 | B |
2 | 2 | 1.0 | B |
Descending order
(api/order-by DS :V1 :desc)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 1 | 0.5 | A |
1 | 9 | 1.5 | C |
Order by two columns
(api/order-by DS [:V1 :V2])
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
Use different orders for columns
(api/order-by DS [:V1 :V2] [:asc :desc])
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 9 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 8 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
(api/order-by DS [:V1 :V2] [:desc :desc])
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 8 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 9 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 1 | 0.5 | A |
(api/order-by DS [:V1 :V3] [:desc :asc])
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 9 | 1.5 | C |
Custom function can be used to provied ordering key. Here order by :V4
descending, then by product of other columns ascending.
(api/order-by DS [:V4 (fn [row] (* (:V1 row)
(:V2 row)
(:V3 row)))] [:desc :asc] {:select-keys [:V1 :V2 :V3]})
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 9 | 1.5 | C |
2 | 8 | 1.0 | B |
2 | 6 | 1.5 | C |
Custom comparator also can be used in case objects are not comparable by default. Let's define artificial one: if Euclidean distance is lower than 2, compare along z
else along x
and y
. We use first three columns for that.
(defn dist
[v1 v2]
(->> v2
(map - v1)
(map #(* % %))
(reduce +)
(Math/sqrt)))
#'user/dist
(api/order-by DS [:V1 :V2 :V3] (fn [[x1 y1 z1 :as v1] [x2 y2 z2 :as v2]]
(let [d (dist v1 v2)]
(if (< d 2.0)
(compare z1 z2)
(compare [x1 y1] [x2 y2])))))
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
Remove rows which contains the same data. By default unique-by
removes duplicates from whole dataset. You can also pass list of columns or functions (similar as in group-by
) to remove duplicates limited by them. Default strategy is to keep the first row. More strategies below.
unique-by
works on groups
Remove duplicates from whole dataset
(api/unique-by DS)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Remove duplicates from each group selected by column.
(api/unique-by DS :V1)
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
Pair of columns
(api/unique-by DS [:V1 :V3])
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
Also function can be used, split dataset by modulo 3 on columns :V2
(api/unique-by DS (fn [m] (mod (:V2 m) 3)))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
The same can be achived with group-by
(-> DS
(api/group-by (fn [m] (mod (:V2 m) 3)))
(api/first)
(api/ungroup))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
Grouped dataset
(-> DS
(api/group-by :V4)
(api/unique-by :V1)
(api/ungroup))
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
There are 4 strategies defined:
:first
- select first row (default):last
- select last row:random
- select random rowLast
(api/unique-by DS :V1 {:strategy :last})
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Random
(api/unique-by DS :V1 {:strategy :random})
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
Pack columns into vector
(api/unique-by DS :V4 {:strategy vec})
_unnamed [3 3]:
:V1 | :V2 | :V3 |
---|---|---|
[2 1 2] | [2 5 8] | [1.0 1.0 1.0] |
[1 2 1] | [3 6 9] | [1.5 1.5 1.5] |
[1 2 1] | [1 4 7] | [0.5 0.5 0.5] |
Sum columns
(api/unique-by DS :V4 {:strategy (partial reduce +)})
_unnamed [3 3]:
:V1 | :V2 | :V3 |
---|---|---|
5 | 15 | 3.0 |
4 | 18 | 4.5 |
4 | 12 | 1.5 |
Group by function and apply functions
(api/unique-by DS (fn [m] (mod (:V2 m) 3)) {:strategy vec})
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
[1 2 1] | [3 6 9] | [1.5 1.5 1.5] | ["C" "C" "C"] |
[1 2 1] | [1 4 7] | [0.5 0.5 0.5] | ["A" "A" "A"] |
[2 1 2] | [2 5 8] | [1.0 1.0 1.0] | ["B" "B" "B"] |
Grouped dataset
(-> DS
(api/group-by :V1)
(api/unique-by (fn [m] (mod (:V2 m) 3)) {:strategy vec})
(api/ungroup {:add-group-as-column :from-V1}))
_unnamed [6 5]:
:from-V1 | :V1 | :V2 | :V3 | :V4 |
---|---|---|---|---|
1 | [1 1] | [3 9] | [1.5 1.5] | ["C" "C"] |
1 | [1 1] | [1 7] | [0.5 0.5] | ["A" "A"] |
1 | [1] | [5] | [1.0] | ["B"] |
2 | [2] | [6] | [1.5] | ["C"] |
2 | [2] | [4] | [0.5] | ["A"] |
2 | [2 2] | [2 8] | [1.0 1.0] | ["B" "B"] |
When dataset contains missing values you can select or drop rows with missing values or replace them using some strategy.
column-selector
can be used to limit considered columns
Let's define dataset which contains missing values
(def DSm (api/dataset {:V1 (take 9 (cycle [1 2 nil]))
:V2 (range 1 10)
:V3 (take 9 (cycle [0.5 1.0 nil 1.5]))
:V4 (take 9 (cycle ["A" "B" "C"]))}))
DSm
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
3 | C | ||
1 | 4 | 1.5 | A |
2 | 5 | 0.5 | B |
6 | 1.0 | C | |
1 | 7 | A | |
2 | 8 | 1.5 | B |
9 | 0.5 | C |
Select rows with missing values
(api/select-missing DSm)
_unnamed [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
3 | C | ||
6 | 1.0 | C | |
1 | 7 | A | |
9 | 0.5 | C |
Select rows with missing values in :V1
(api/select-missing DSm :V1)
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
3 | C | ||
6 | 1.0 | C | |
9 | 0.5 | C |
The same with grouped dataset
(-> DSm
(api/group-by :V4)
(api/select-missing :V3)
(api/ungroup))
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 7 | A | |
3 | C |
Drop rows with missing values
(api/drop-missing DSm)
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 4 | 1.5 | A |
2 | 5 | 0.5 | B |
2 | 8 | 1.5 | B |
Drop rows with missing values in :V1
(api/drop-missing DSm :V1)
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 4 | 1.5 | A |
2 | 5 | 0.5 | B |
1 | 7 | A | |
2 | 8 | 1.5 | B |
The same with grouped dataset
(-> DSm
(api/group-by :V4)
(api/drop-missing :V1)
(api/ungroup))
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 4 | 1.5 | A |
1 | 7 | A | |
2 | 2 | 1.0 | B |
2 | 5 | 0.5 | B |
2 | 8 | 1.5 | B |
Missing values can be replaced using several strategies. replace-missing
accepts:
Strategies are:
:value
- replace with given value (default):up
- copy values up:down
- copy values downLet's define special dataset here:
(def DSm2 (api/dataset {:a [nil nil nil 1.0 2 nil 4 nil 11 nil nil]
:b [2.0 2 2 nil nil 3 nil 3 4 5 5]}))
DSm2
_unnamed [11 2]:
:a | :b |
---|---|
2.0 | |
2.0 | |
2.0 | |
1.0 | |
2.0 | |
3.0 | |
4.0 | |
3.0 | |
11.0 | 4.0 |
5.0 | |
5.0 |
Replace missing with single value in whole dataset
(api/replace-missing DSm2 999)
_unnamed [11 2]:
:a | :b |
---|---|
999.0 | 2.0 |
999.0 | 2.0 |
999.0 | 2.0 |
1.0 | 999.0 |
2.0 | 999.0 |
999.0 | 3.0 |
4.0 | 999.0 |
999.0 | 3.0 |
11.0 | 4.0 |
999.0 | 5.0 |
999.0 | 5.0 |
Replace missing with single value in :a
column
(api/replace-missing DSm2 :a 999)
_unnamed [11 2]:
:a | :b |
---|---|
999.0 | 2.0 |
999.0 | 2.0 |
999.0 | 2.0 |
1.0 | |
2.0 | |
999.0 | 3.0 |
4.0 | |
999.0 | 3.0 |
11.0 | 4.0 |
999.0 | 5.0 |
999.0 | 5.0 |
Replace missing with sequence in :a
column
(api/replace-missing DSm2 :a [-999 -998 -997])
_unnamed [11 2]:
:a | :b |
---|---|
-999.0 | 2.0 |
-998.0 | 2.0 |
-997.0 | 2.0 |
1.0 | |
2.0 | |
-999.0 | 3.0 |
4.0 | |
-998.0 | 3.0 |
11.0 | 4.0 |
-997.0 | 5.0 |
-999.0 | 5.0 |
Replace missing with a function (mean)
(api/replace-missing DSm2 :a tech.v2.datatype.functional/mean)
_unnamed [11 2]:
:a | :b |
---|---|
4.5 | 2.0 |
4.5 | 2.0 |
4.5 | 2.0 |
1.0 | |
2.0 | |
4.5 | 3.0 |
4.0 | |
4.5 | 3.0 |
11.0 | 4.0 |
4.5 | 5.0 |
4.5 | 5.0 |
Using :down
strategy, fills gaps with values from above. You can see that if missings are at the beginning, they are left missing.
(api/replace-missing DSm2 [:a :b] nil :down)
_unnamed [11 2]:
:a | :b |
---|---|
2.0 | |
2.0 | |
2.0 | |
1.0 | 2.0 |
2.0 | 2.0 |
2.0 | 3.0 |
4.0 | 3.0 |
4.0 | 3.0 |
11.0 | 4.0 |
11.0 | 5.0 |
11.0 | 5.0 |
To fix above issue you can provide value
(api/replace-missing DSm2 [:a :b] 999 :down)
_unnamed [11 2]:
:a | :b |
---|---|
999.0 | 2.0 |
999.0 | 2.0 |
999.0 | 2.0 |
1.0 | 2.0 |
2.0 | 2.0 |
2.0 | 3.0 |
4.0 | 3.0 |
4.0 | 3.0 |
11.0 | 4.0 |
11.0 | 5.0 |
11.0 | 5.0 |
The same applies for :up
strategy which is opposite direction.
(api/replace-missing DSm2 [:a :b] 999 :up)
_unnamed [11 2]:
:a | :b |
---|---|
1.0 | 2.0 |
1.0 | 2.0 |
1.0 | 2.0 |
1.0 | 3.0 |
2.0 | 3.0 |
4.0 | 3.0 |
4.0 | 3.0 |
11.0 | 3.0 |
11.0 | 4.0 |
999.0 | 5.0 |
999.0 | 5.0 |
We can use a function which is applied after applying :up
or :down
(api/replace-missing DSm2 [:a :b] tech.v2.datatype.functional/mean :down)
_unnamed [11 2]:
:a | :b |
---|---|
4.5 | 2.0 |
4.5 | 2.0 |
4.5 | 2.0 |
1.0 | 2.0 |
2.0 | 2.0 |
2.0 | 3.0 |
4.0 | 3.0 |
4.0 | 3.0 |
11.0 | 4.0 |
11.0 | 5.0 |
11.0 | 5.0 |
Joining or separating columns are operations which can help to tidy messy dataset.
join-columns
joins content of the columns (as string concatenation or other structure) and stores it in new columnseparate-column
splits content of the columns into set of new columnsjoin-columns
accepts:
select-columns
):separator
(default "-"
):drop-columns?
- whether to drop source columns or not (default true
):result-type
:map
- packs data into map:seq
- packs data into sequence:string
- join strings with separator (default):missing-subst
- substitution for missing valueDefault usage. Create :joined
column out of other columns.
(api/join-columns DSm :joined [:V1 :V2 :V4])
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | 1-1-A |
1.0 | 2-2-B |
3-C | |
1.5 | 1-4-A |
0.5 | 2-5-B |
1.0 | 6-C |
1-7-A | |
1.5 | 2-8-B |
0.5 | 9-C |
Without dropping source columns.
(api/join-columns DSm :joined [:V1 :V2 :V4] {:drop-columns? false})
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :joined |
---|---|---|---|---|
1 | 1 | 0.5 | A | 1-1-A |
2 | 2 | 1.0 | B | 2-2-B |
3 | C | 3-C | ||
1 | 4 | 1.5 | A | 1-4-A |
2 | 5 | 0.5 | B | 2-5-B |
6 | 1.0 | C | 6-C | |
1 | 7 | A | 1-7-A | |
2 | 8 | 1.5 | B | 2-8-B |
9 | 0.5 | C | 9-C |
Let's replace missing value with "NA" string.
(api/join-columns DSm :joined [:V1 :V2 :V4] {:missing-subst "NA"})
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | 1-1-A |
1.0 | 2-2-B |
NA-3-C | |
1.5 | 1-4-A |
0.5 | 2-5-B |
1.0 | NA-6-C |
1-7-A | |
1.5 | 2-8-B |
0.5 | NA-9-C |
We can use custom separator.
(api/join-columns DSm :joined [:V1 :V2 :V4] {:separator "/"
:missing-subst "."})
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | 1/1/A |
1.0 | 2/2/B |
./3/C | |
1.5 | 1/4/A |
0.5 | 2/5/B |
1.0 | ./6/C |
1/7/A | |
1.5 | 2/8/B |
0.5 | ./9/C |
Or even sequence of separators.
(api/join-columns DSm :joined [:V1 :V2 :V4] {:separator ["-" "/"]
:missing-subst "."})
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | 1-1/A |
1.0 | 2-2/B |
.-3/C | |
1.5 | 1-4/A |
0.5 | 2-5/B |
1.0 | .-6/C |
1-7/A | |
1.5 | 2-8/B |
0.5 | .-9/C |
The other types of results, map:
(api/join-columns DSm :joined [:V1 :V2 :V4] {:result-type :map})
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | {:V1 1, :V2 1, :V4 "A"} |
1.0 | {:V1 2, :V2 2, :V4 "B"} |
{:V1 nil, :V2 3, :V4 "C"} | |
1.5 | {:V1 1, :V2 4, :V4 "A"} |
0.5 | {:V1 2, :V2 5, :V4 "B"} |
1.0 | {:V1 nil, :V2 6, :V4 "C"} |
{:V1 1, :V2 7, :V4 "A"} | |
1.5 | {:V1 2, :V2 8, :V4 "B"} |
0.5 | {:V1 nil, :V2 9, :V4 "C"} |
Sequence
(api/join-columns DSm :joined [:V1 :V2 :V4] {:result-type :seq})
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | (1 1 "A") |
1.0 | (2 2 "B") |
(nil 3 "C") | |
1.5 | (1 4 "A") |
0.5 | (2 5 "B") |
1.0 | (nil 6 "C") |
(1 7 "A") | |
1.5 | (2 8 "B") |
0.5 | (nil 9 "C") |
Custom function, calculate hash
(api/join-columns DSm :joined [:V1 :V2 :V4] {:result-type hash})
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | 535226087 |
1.0 | 1128801549 |
-1842240303 | |
1.5 | 2022347171 |
0.5 | 1884312041 |
1.0 | -1555412370 |
1640237355 | |
1.5 | -967279152 |
0.5 | 1128367958 |
Grouped dataset
(-> DSm
(api/group-by :V4)
(api/join-columns :joined [:V1 :V2 :V4])
(api/ungroup))
_unnamed [9 2]:
:V3 | :joined |
---|---|
0.5 | 1-1-A |
1.5 | 1-4-A |
1-7-A | |
1.0 | 2-2-B |
0.5 | 2-5-B |
1.5 | 2-8-B |
3-C | |
1.0 | 6-C |
0.5 | 9-C |
(def df (api/dataset {:x ["a" "a" nil nil]
:y ["b" nil "b" nil]}))
#'user/df
df
_unnamed [4 2]:
:x | :y |
---|---|
a | b |
a | |
b | |
(api/join-columns df "z" [:x :y] {:drop-columns? false
:missing-subst "NA"
:separator "_"})
_unnamed [4 3]:
:x | :y | z |
---|---|---|
a | b | a_b |
a | a_NA | |
b | NA_b | |
NA_NA |
(api/join-columns df "z" [:x :y] {:drop-columns? false
:separator "_"})
_unnamed [4 3]:
:x | :y | z |
---|---|---|
a | b | a_b |
a | a | |
b | b | |
Column can be also separated into several other columns using string as separator, regex or custom function. Arguments:
clojure.string/split
function:drop-columns?
- whether drop source column or not (default: true
):missing-subst
- values which should be treated as missing, can be set, sequence, value or function (default: ""
)Custom function (as separator) should return seqence of values for given value.
Separate float into integer and factional values
(api/separate-column DS :V3 [:int-part :frac-part] (fn [^double v]
[(int (quot v 1.0))
(mod v 1.0)]))
_unnamed [9 5]:
:V1 | :V2 | :int-part | :frac-part | :V4 |
---|---|---|---|---|
1 | 1 | 0 | 0.5 | A |
2 | 2 | 1 | 0.0 | B |
1 | 3 | 1 | 0.5 | C |
2 | 4 | 0 | 0.5 | A |
1 | 5 | 1 | 0.0 | B |
2 | 6 | 1 | 0.5 | C |
1 | 7 | 0 | 0.5 | A |
2 | 8 | 1 | 0.0 | B |
1 | 9 | 1 | 0.5 | C |
Source column can be kept
(api/separate-column DS :V3 [:int-part :frac-part] (fn [^double v]
[(int (quot v 1.0))
(mod v 1.0)]) {:drop-column? false})
_unnamed [9 6]:
:V1 | :V2 | :V3 | :int-part | :frac-part | :V4 |
---|---|---|---|---|---|
1 | 1 | 0.5 | 0 | 0.5 | A |
2 | 2 | 1.0 | 1 | 0.0 | B |
1 | 3 | 1.5 | 1 | 0.5 | C |
2 | 4 | 0.5 | 0 | 0.5 | A |
1 | 5 | 1.0 | 1 | 0.0 | B |
2 | 6 | 1.5 | 1 | 0.5 | C |
1 | 7 | 0.5 | 0 | 0.5 | A |
2 | 8 | 1.0 | 1 | 0.0 | B |
1 | 9 | 1.5 | 1 | 0.5 | C |
We can treat 0
or 0.0
as missing value
(api/separate-column DS :V3 [:int-part :frac-part] (fn [^double v]
[(int (quot v 1.0))
(mod v 1.0)]) {:missing-subst [0 0.0]})
_unnamed [9 5]:
:V1 | :V2 | :int-part | :frac-part | :V4 |
---|---|---|---|---|
1 | 1 | 0.5 | A | |
2 | 2 | 1 | B | |
1 | 3 | 1 | 0.5 | C |
2 | 4 | 0.5 | A | |
1 | 5 | 1 | B | |
2 | 6 | 1 | 0.5 | C |
1 | 7 | 0.5 | A | |
2 | 8 | 1 | B | |
1 | 9 | 1 | 0.5 | C |
Works on grouped dataset
(-> DS
(api/group-by :V4)
(api/separate-column :V3 [:int-part :fract-part] (fn [^double v]
[(int (quot v 1.0))
(mod v 1.0)]))
(api/ungroup))
_unnamed [9 5]:
:V1 | :V2 | :int-part | :fract-part | :V4 |
---|---|---|---|---|
1 | 1 | 0 | 0.5 | A |
2 | 4 | 0 | 0.5 | A |
1 | 7 | 0 | 0.5 | A |
2 | 2 | 1 | 0.0 | B |
1 | 5 | 1 | 0.0 | B |
2 | 8 | 1 | 0.0 | B |
1 | 3 | 1 | 0.5 | C |
2 | 6 | 1 | 0.5 | C |
1 | 9 | 1 | 0.5 | C |
Join and separate together.
(-> DSm
(api/join-columns :joined [:V1 :V2 :V4] {:result-type :map})
(api/separate-column :joined [:v1 :v2 :v4] (juxt :V1 :V2 :V4)))
_unnamed [9 4]:
:V3 | :v1 | :v2 | :v4 |
---|---|---|---|
0.5 | 1 | 1 | A |
1.0 | 2 | 2 | B |
3 | C | ||
1.5 | 1 | 4 | A |
0.5 | 2 | 5 | B |
1.0 | 6 | C | |
1 | 7 | A | |
1.5 | 2 | 8 | B |
0.5 | 9 | C |
(-> DSm
(api/join-columns :joined [:V1 :V2 :V4] {:result-type :seq})
(api/separate-column :joined [:v1 :v2 :v4] identity))
_unnamed [9 4]:
:V3 | :v1 | :v2 | :v4 |
---|---|---|---|
0.5 | 1 | 1 | A |
1.0 | 2 | 2 | B |
3 | C | ||
1.5 | 1 | 4 | A |
0.5 | 2 | 5 | B |
1.0 | 6 | C | |
1 | 7 | A | |
1.5 | 2 | 8 | B |
0.5 | 9 | C |
separate source extract source
(def df-separate (api/dataset {:x [nil "a.b" "a.d" "b.c"]}))
(def df-separate2 (api/dataset {:x ["a" "a b" nil "a b c"]}))
(def df-separate3 (api/dataset {:x ["a?b" nil "a.b" "b:c"]}))
(def df-extract (api/dataset {:x [nil "a-b" "a-d" "b-c" "d-e"]}))
#'user/df-separate
#'user/df-separate2
#'user/df-separate3
#'user/df-extract
df-separate
_unnamed [4 1]:
:x |
---|
a.b |
a.d |
b.c |
df-separate2
_unnamed [4 1]:
:x |
---|
a |
a b |
a b c |
df-separate3
_unnamed [4 1]:
:x |
---|
a?b |
a.b |
b:c |
df-extract
_unnamed [5 1]:
:x |
---|
a-b |
a-d |
b-c |
d-e |
(api/separate-column df-separate :x [:A :B] "\\.")
_unnamed [4 2]:
:A | :B |
---|---|
a | b |
a | d |
b | c |
You can drop columns after separation by setting nil
as a name. We need second value here.
(api/separate-column df-separate :x [nil :B] "\\.")
_unnamed [4 1]:
:B |
---|
b |
d |
c |
Extra data is dropped
(api/separate-column df-separate2 :x ["a" "b"] " ")
_unnamed [4 2]:
a | b |
---|---|
a | |
a | b |
a | b |
Split with regular expression
(api/separate-column df-separate3 :x ["a" "b"] "[?\\.:]")
_unnamed [4 2]:
a | b |
---|---|
a | b |
a | b |
b | c |
Or just regular expression to extract values
(api/separate-column df-separate3 :x ["a" "b"] #"(.).(.)")
_unnamed [4 2]:
a | b |
---|---|
a | b |
a | b |
b | c |
Extract first value only
(api/separate-column df-extract :x ["A"] "-")
_unnamed [5 1]:
A |
---|
a |
a |
b |
d |
Split with regex
(api/separate-column df-extract :x ["A" "B"] #"(\p{Alnum})-(\p{Alnum})")
_unnamed [5 2]:
A | B |
---|---|
a | b |
a | d |
b | c |
d | e |
Only a,b,c,d
strings
(api/separate-column df-extract :x ["A" "B"] #"([a-d]+)-([a-d]+)")
_unnamed [5 2]:
A | B |
---|---|
a | b |
a | d |
b | c |
To pack or unpack the data into single value you can use fold-by
and unroll
functions.
fold-by
groups dataset and packs columns data from each group separately into desired datastructure (like vector or sequence). unroll
does the opposite.
Group-by and pack columns into vector
(api/fold-by DS [:V3 :V4 :V1])
_unnamed [6 4]:
:V4 | :V3 | :V1 | :V2 |
---|---|---|---|
B | 1.000 | 1 | [5] |
C | 1.500 | 2 | [6] |
C | 1.500 | 1 | [3 9] |
A | 0.5000 | 1 | [1 7] |
B | 1.000 | 2 | [2 8] |
A | 0.5000 | 2 | [4] |
You can pack several columns at once.
(api/fold-by DS [:V4])
_unnamed [3 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
B | [2 1 2] | [2 5 8] | [1.0 1.0 1.0] |
C | [1 2 1] | [3 6 9] | [1.5 1.5 1.5] |
A | [1 2 1] | [1 4 7] | [0.5 0.5 0.5] |
You can use custom packing function
(api/fold-by DS [:V4] seq)
_unnamed [3 4]:
or
(api/fold-by DS [:V4] set)
_unnamed [3 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
B | #{1 2} | #{2 5 8} | #{1.0} |
C | #{1 2} | #{6 3 9} | #{1.5} |
A | #{1 2} | #{7 1 4} | #{0.5} |
This works also on grouped dataset
(-> DS
(api/group-by :V1)
(api/fold-by :V4)
(api/ungroup))
_unnamed [6 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
B | [1] | [5] | [1.0] |
C | [1 1] | [3 9] | [1.5 1.5] |
A | [1 1] | [1 7] | [0.5 0.5] |
B | [2 2] | [2 8] | [1.0 1.0] |
C | [2] | [6] | [1.5] |
A | [2] | [4] | [0.5] |
unroll
unfolds sequences stored in data, multiplying other ones when necessary. You can unroll more than one column at once (folded data should have the same size!).
Options:
:indexes?
if true (or column name), information about index of unrolled sequence is added.:datatypes
list of datatypes which should be applied to restored columns, a mapUnroll one column
(api/unroll (api/fold-by DS [:V4]) [:V1])
_unnamed [9 4]:
:V4 | :V2 | :V3 | :V1 |
---|---|---|---|
B | [2 5 8] | [1.0 1.0 1.0] | 2 |
B | [2 5 8] | [1.0 1.0 1.0] | 1 |
B | [2 5 8] | [1.0 1.0 1.0] | 2 |
C | [3 6 9] | [1.5 1.5 1.5] | 1 |
C | [3 6 9] | [1.5 1.5 1.5] | 2 |
C | [3 6 9] | [1.5 1.5 1.5] | 1 |
A | [1 4 7] | [0.5 0.5 0.5] | 1 |
A | [1 4 7] | [0.5 0.5 0.5] | 2 |
A | [1 4 7] | [0.5 0.5 0.5] | 1 |
Unroll all folded columns
(api/unroll (api/fold-by DS [:V4]) [:V1 :V2 :V3])
_unnamed [9 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
B | 2 | 2 | 1.000 |
B | 1 | 5 | 1.000 |
B | 2 | 8 | 1.000 |
C | 1 | 3 | 1.500 |
C | 2 | 6 | 1.500 |
C | 1 | 9 | 1.500 |
A | 1 | 1 | 0.5000 |
A | 2 | 4 | 0.5000 |
A | 1 | 7 | 0.5000 |
Unroll one by one leads to cartesian product
(-> DS
(api/fold-by [:V4 :V1])
(api/unroll [:V2])
(api/unroll [:V3]))
_unnamed [15 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
C | 2 | 6 | 1.500 |
A | 1 | 1 | 0.5000 |
A | 1 | 1 | 0.5000 |
A | 1 | 7 | 0.5000 |
A | 1 | 7 | 0.5000 |
B | 1 | 5 | 1.000 |
C | 1 | 3 | 1.500 |
C | 1 | 3 | 1.500 |
C | 1 | 9 | 1.500 |
C | 1 | 9 | 1.500 |
A | 2 | 4 | 0.5000 |
B | 2 | 2 | 1.000 |
B | 2 | 2 | 1.000 |
B | 2 | 8 | 1.000 |
B | 2 | 8 | 1.000 |
You can add indexes
(api/unroll (api/fold-by DS [:V1]) [:V4 :V2 :V3] {:indexes? true})
_unnamed [9 5]:
:V1 | :indexes | :V2 | :V3 | :V4 |
---|---|---|---|---|
1 | 0 | 1 | 0.5000 | A |
1 | 1 | 3 | 1.500 | C |
1 | 2 | 5 | 1.000 | B |
1 | 3 | 7 | 0.5000 | A |
1 | 4 | 9 | 1.500 | C |
2 | 0 | 2 | 1.000 | B |
2 | 1 | 4 | 0.5000 | A |
2 | 2 | 6 | 1.500 | C |
2 | 3 | 8 | 1.000 | B |
(api/unroll (api/fold-by DS [:V1]) [:V4 :V2 :V3] {:indexes? "vector idx"})
_unnamed [9 5]:
:V1 | vector idx | :V2 | :V3 | :V4 |
---|---|---|---|---|
1 | 0 | 1 | 0.5000 | A |
1 | 1 | 3 | 1.500 | C |
1 | 2 | 5 | 1.000 | B |
1 | 3 | 7 | 0.5000 | A |
1 | 4 | 9 | 1.500 | C |
2 | 0 | 2 | 1.000 | B |
2 | 1 | 4 | 0.5000 | A |
2 | 2 | 6 | 1.500 | C |
2 | 3 | 8 | 1.000 | B |
You can also force datatypes
(-> DS
(api/fold-by [:V1])
(api/unroll [:V4 :V2 :V3] {:datatypes {:V4 :string
:V2 :int16
:V3 :float32}})
(api/info :columns))
_unnamed :column info [4 4]:
:name | :size | :datatype | :categorical? |
---|---|---|---|
:V1 | 9 | :object | |
:V2 | 9 | :int16 | |
:V3 | 9 | :float32 | |
:V4 | 9 | :string | true |
This works also on grouped dataset
(-> DS
(api/group-by :V1)
(api/fold-by [:V1 :V4])
(api/unroll :V3 {:indexes? true})
(api/ungroup))
_unnamed [9 5]:
:V4 | :V1 | :V2 | :indexes | :V3 |
---|---|---|---|---|
A | 1 | [1 7] | 0 | 0.5000 |
A | 1 | [1 7] | 1 | 0.5000 |
B | 1 | [5] | 0 | 1.000 |
C | 1 | [3 9] | 0 | 1.500 |
C | 1 | [3 9] | 1 | 1.500 |
C | 2 | [6] | 0 | 1.500 |
A | 2 | [4] | 0 | 0.5000 |
B | 2 | [2 8] | 0 | 1.000 |
B | 2 | [2 8] | 1 | 1.000 |
Reshaping data provides two types of operations:
pivot->longer
- converting columns to rowspivot->wider
- converting rows to columnsBoth functions are inspired on tidyr R package and provide almost the same functionality.
All examples are taken from mentioned above documentation.
Both functions work only on regular dataset.
pivot->longer
converts columns to rows. Column names are treated as data.
Arguments:
:target-columns
- names of the columns created or columns pattern (see below) (default: :$column
):value-column-name
- name of the column for values (default: :$value
):splitter
- string, regular expression or function which splits source column names into data:drop-missing?
- remove rows with missing? (default: :true
):datatypes
- map of target columns data types:target-columns
- can be:
:target-columns
as datanil
. nil
is replaced by a name taken from splitter and such column is used for values.Create rows from all columns but "religion"
.
(def relig-income (api/dataset "data/relig_income.csv"))
relig-income
data/relig_income.csv [18 11]:
religion | <$10k | $10-20k | $20-30k | $30-40k | $40-50k | $50-75k | $75-100k | $100-150k | >150k | Don't know/refused |
---|---|---|---|---|---|---|---|---|---|---|
Agnostic | 27 | 34 | 60 | 81 | 76 | 137 | 122 | 109 | 84 | 96 |
Atheist | 12 | 27 | 37 | 52 | 35 | 70 | 73 | 59 | 74 | 76 |
Buddhist | 27 | 21 | 30 | 34 | 33 | 58 | 62 | 39 | 53 | 54 |
Catholic | 418 | 617 | 732 | 670 | 638 | 1116 | 949 | 792 | 633 | 1489 |
Don’t know/refused | 15 | 14 | 15 | 11 | 10 | 35 | 21 | 17 | 18 | 116 |
Evangelical Prot | 575 | 869 | 1064 | 982 | 881 | 1486 | 949 | 723 | 414 | 1529 |
Hindu | 1 | 9 | 7 | 9 | 11 | 34 | 47 | 48 | 54 | 37 |
Historically Black Prot | 228 | 244 | 236 | 238 | 197 | 223 | 131 | 81 | 78 | 339 |
Jehovah's Witness | 20 | 27 | 24 | 24 | 21 | 30 | 15 | 11 | 6 | 37 |
Jewish | 19 | 19 | 25 | 25 | 30 | 95 | 69 | 87 | 151 | 162 |
Mainline Prot | 289 | 495 | 619 | 655 | 651 | 1107 | 939 | 753 | 634 | 1328 |
Mormon | 29 | 40 | 48 | 51 | 56 | 112 | 85 | 49 | 42 | 69 |
Muslim | 6 | 7 | 9 | 10 | 9 | 23 | 16 | 8 | 6 | 22 |
Orthodox | 13 | 17 | 23 | 32 | 32 | 47 | 38 | 42 | 46 | 73 |
Other Christian | 9 | 7 | 11 | 13 | 13 | 14 | 18 | 14 | 12 | 18 |
Other Faiths | 20 | 33 | 40 | 46 | 49 | 63 | 46 | 40 | 41 | 71 |
Other World Religions | 5 | 2 | 3 | 4 | 2 | 7 | 3 | 4 | 4 | 8 |
Unaffiliated | 217 | 299 | 374 | 365 | 341 | 528 | 407 | 321 | 258 | 597 |
(api/pivot->longer relig-income (complement #{"religion"}))
data/relig_income.csv [180 3]:
religion | :$column | :$value |
---|---|---|
Agnostic | <$10k | 27 |
Atheist | <$10k | 12 |
Buddhist | <$10k | 27 |
Catholic | <$10k | 418 |
Don’t know/refused | <$10k | 15 |
Evangelical Prot | <$10k | 575 |
Hindu | <$10k | 1 |
Historically Black Prot | <$10k | 228 |
Jehovah's Witness | <$10k | 20 |
Jewish | <$10k | 19 |
Mainline Prot | <$10k | 289 |
Mormon | <$10k | 29 |
Muslim | <$10k | 6 |
Orthodox | <$10k | 13 |
Other Christian | <$10k | 9 |
Other Faiths | <$10k | 20 |
Other World Religions | <$10k | 5 |
Unaffiliated | <$10k | 217 |
Agnostic | Don't know/refused | 96 |
Atheist | Don't know/refused | 76 |
Buddhist | Don't know/refused | 54 |
Catholic | Don't know/refused | 1489 |
Don’t know/refused | Don't know/refused | 116 |
Evangelical Prot | Don't know/refused | 1529 |
Hindu | Don't know/refused | 37 |
Convert only columns starting with "wk"
and pack them into :week
column, values go to :rank
column
(def bilboard (-> (api/dataset "data/billboard.csv.gz")
(api/drop-columns :type/boolean))) ;; drop some boolean columns, tidyr just skips them
(->> bilboard
(api/column-names)
(take 13)
(api/select-columns bilboard))
data/billboard.csv.gz [317 13]:
artist | track | date.entered | wk1 | wk2 | wk3 | wk4 | wk5 | wk6 | wk7 | wk8 | wk9 | wk10 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2 Pac | Baby Don't Cry (Keep... | 2000-02-26 | 87 | 82 | 72 | 77 | 87 | 94 | 99 | |||
2Ge+her | The Hardest Part Of ... | 2000-09-02 | 91 | 87 | 92 | |||||||
3 Doors Down | Kryptonite | 2000-04-08 | 81 | 70 | 68 | 67 | 66 | 57 | 54 | 53 | 51 | 51 |
3 Doors Down | Loser | 2000-10-21 | 76 | 76 | 72 | 69 | 67 | 65 | 55 | 59 | 62 | 61 |
504 Boyz | Wobble Wobble | 2000-04-15 | 57 | 34 | 25 | 17 | 17 | 31 | 36 | 49 | 53 | 57 |
98^0 | Give Me Just One Nig... | 2000-08-19 | 51 | 39 | 34 | 26 | 26 | 19 | 2 | 2 | 3 | 6 |
A*Teens | Dancing Queen | 2000-07-08 | 97 | 97 | 96 | 95 | 100 | |||||
Aaliyah | I Don't Wanna | 2000-01-29 | 84 | 62 | 51 | 41 | 38 | 35 | 35 | 38 | 38 | 36 |
Aaliyah | Try Again | 2000-03-18 | 59 | 53 | 38 | 28 | 21 | 18 | 16 | 14 | 12 | 10 |
Adams, Yolanda | Open My Heart | 2000-08-26 | 76 | 76 | 74 | 69 | 68 | 67 | 61 | 58 | 57 | 59 |
Adkins, Trace | More | 2000-04-29 | 84 | 84 | 75 | 73 | 73 | 69 | 68 | 65 | 73 | 83 |
Aguilera, Christina | Come On Over Baby (A... | 2000-08-05 | 57 | 47 | 45 | 29 | 23 | 18 | 11 | 9 | 9 | 11 |
Aguilera, Christina | I Turn To You | 2000-04-15 | 50 | 39 | 30 | 28 | 21 | 19 | 20 | 17 | 17 | 17 |
Aguilera, Christina | What A Girl Wants | 1999-11-27 | 71 | 51 | 28 | 18 | 13 | 13 | 11 | 1 | 1 | 2 |
Alice Deejay | Better Off Alone | 2000-04-08 | 79 | 65 | 53 | 48 | 45 | 36 | 34 | 29 | 27 | 30 |
Allan, Gary | Smoke Rings In The D... | 2000-01-22 | 80 | 78 | 76 | 77 | 92 | |||||
Amber | Sexual | 1999-07-17 | 99 | 99 | 96 | 96 | 100 | 93 | 93 | 96 | ||
Anastacia | I'm Outta Love | 2000-04-01 | 92 | 95 | ||||||||
Anthony, Marc | My Baby You | 2000-09-16 | 82 | 76 | 76 | 70 | 82 | 81 | 74 | 80 | 76 | 76 |
Anthony, Marc | You Sang To Me | 2000-02-26 | 77 | 54 | 50 | 43 | 30 | 27 | 21 | 18 | 15 | 13 |
Avant | My First Love | 2000-11-04 | 70 | 62 | 56 | 43 | 39 | 33 | 26 | 26 | 26 | 31 |
Avant | Separated | 2000-04-29 | 62 | 32 | 30 | 23 | 26 | 30 | 35 | 32 | 32 | 25 |
BBMak | Back Here | 2000-04-29 | 99 | 86 | 60 | 52 | 38 | 34 | 28 | 21 | 18 | 18 |
Backstreet Boys, The | Shape Of My Heart | 2000-10-14 | 39 | 25 | 24 | 15 | 12 | 12 | 10 | 9 | 10 | 12 |
Backstreet Boys, The | Show Me The Meaning ... | 2000-01-01 | 74 | 62 | 55 | 25 | 16 | 14 | 12 | 10 | 12 | 9 |
(api/pivot->longer bilboard #(clojure.string/starts-with? % "wk") {:target-columns :week
:value-column-name :rank})
data/billboard.csv.gz [5307 5]:
artist | track | date.entered | :week | :rank |
---|---|---|---|---|
3 Doors Down | Kryptonite | 2000-04-08 | wk35 | 4 |
Braxton, Toni | He Wasn't Man Enough | 2000-03-18 | wk35 | 34 |
Creed | Higher | 1999-09-11 | wk35 | 22 |
Creed | With Arms Wide Open | 2000-05-13 | wk35 | 5 |
Hill, Faith | Breathe | 1999-11-06 | wk35 | 8 |
Joe | I Wanna Know | 2000-01-01 | wk35 | 5 |
Lonestar | Amazed | 1999-06-05 | wk35 | 14 |
Vertical Horizon | Everything You Want | 2000-01-22 | wk35 | 27 |
matchbox twenty | Bent | 2000-04-29 | wk35 | 33 |
Creed | Higher | 1999-09-11 | wk55 | 21 |
Lonestar | Amazed | 1999-06-05 | wk55 | 22 |
3 Doors Down | Kryptonite | 2000-04-08 | wk19 | 18 |
3 Doors Down | Loser | 2000-10-21 | wk19 | 73 |
98^0 | Give Me Just One Nig... | 2000-08-19 | wk19 | 93 |
Aaliyah | I Don't Wanna | 2000-01-29 | wk19 | 83 |
Aaliyah | Try Again | 2000-03-18 | wk19 | 3 |
Adams, Yolanda | Open My Heart | 2000-08-26 | wk19 | 79 |
Aguilera, Christina | Come On Over Baby (A... | 2000-08-05 | wk19 | 23 |
Aguilera, Christina | I Turn To You | 2000-04-15 | wk19 | 29 |
Aguilera, Christina | What A Girl Wants | 1999-11-27 | wk19 | 18 |
Alice Deejay | Better Off Alone | 2000-04-08 | wk19 | 79 |
Amber | Sexual | 1999-07-17 | wk19 | 95 |
Anthony, Marc | My Baby You | 2000-09-16 | wk19 | 91 |
Anthony, Marc | You Sang To Me | 2000-02-26 | wk19 | 9 |
Avant | My First Love | 2000-11-04 | wk19 | 81 |
We can create numerical column out of column names
(api/pivot->longer bilboard #(clojure.string/starts-with? % "wk") {:target-columns :week
:value-column-name :rank
:splitter #"wk(.*)"
:datatypes {:week :int16}})
data/billboard.csv.gz [5307 5]:
artist | track | date.entered | :week | :rank |
---|---|---|---|---|
3 Doors Down | Kryptonite | 2000-04-08 | 46 | 21 |
Creed | Higher | 1999-09-11 | 46 | 7 |
Creed | With Arms Wide Open | 2000-05-13 | 46 | 37 |
Hill, Faith | Breathe | 1999-11-06 | 46 | 31 |
Lonestar | Amazed | 1999-06-05 | 46 | 5 |
3 Doors Down | Kryptonite | 2000-04-08 | 51 | 42 |
Creed | Higher | 1999-09-11 | 51 | 14 |
Hill, Faith | Breathe | 1999-11-06 | 51 | 49 |
Lonestar | Amazed | 1999-06-05 | 51 | 12 |
2 Pac | Baby Don't Cry (Keep... | 2000-02-26 | 6 | 94 |
3 Doors Down | Kryptonite | 2000-04-08 | 6 | 57 |
3 Doors Down | Loser | 2000-10-21 | 6 | 65 |
504 Boyz | Wobble Wobble | 2000-04-15 | 6 | 31 |
98^0 | Give Me Just One Nig... | 2000-08-19 | 6 | 19 |
Aaliyah | I Don't Wanna | 2000-01-29 | 6 | 35 |
Aaliyah | Try Again | 2000-03-18 | 6 | 18 |
Adams, Yolanda | Open My Heart | 2000-08-26 | 6 | 67 |
Adkins, Trace | More | 2000-04-29 | 6 | 69 |
Aguilera, Christina | Come On Over Baby (A... | 2000-08-05 | 6 | 18 |
Aguilera, Christina | I Turn To You | 2000-04-15 | 6 | 19 |
Aguilera, Christina | What A Girl Wants | 1999-11-27 | 6 | 13 |
Alice Deejay | Better Off Alone | 2000-04-08 | 6 | 36 |
Amber | Sexual | 1999-07-17 | 6 | 93 |
Anthony, Marc | My Baby You | 2000-09-16 | 6 | 81 |
Anthony, Marc | You Sang To Me | 2000-02-26 | 6 | 27 |
When column names contain observation data, such column names can be splitted and data can be restored into separate columns.
(def who (api/dataset "data/who.csv.gz"))
(->> who
(api/column-names)
(take 10)
(api/select-columns who))
data/who.csv.gz [7240 10]:
country | iso2 | iso3 | year | new_sp_m014 | new_sp_m1524 | new_sp_m2534 | new_sp_m3544 | new_sp_m4554 | new_sp_m5564 |
---|---|---|---|---|---|---|---|---|---|
Afghanistan | AF | AFG | 1980 | ||||||
Afghanistan | AF | AFG | 1981 | ||||||
Afghanistan | AF | AFG | 1982 | ||||||
Afghanistan | AF | AFG | 1983 | ||||||
Afghanistan | AF | AFG | 1984 | ||||||
Afghanistan | AF | AFG | 1985 | ||||||
Afghanistan | AF | AFG | 1986 | ||||||
Afghanistan | AF | AFG | 1987 | ||||||
Afghanistan | AF | AFG | 1988 | ||||||
Afghanistan | AF | AFG | 1989 | ||||||
Afghanistan | AF | AFG | 1990 | ||||||
Afghanistan | AF | AFG | 1991 | ||||||
Afghanistan | AF | AFG | 1992 | ||||||
Afghanistan | AF | AFG | 1993 | ||||||
Afghanistan | AF | AFG | 1994 | ||||||
Afghanistan | AF | AFG | 1995 | ||||||
Afghanistan | AF | AFG | 1996 | ||||||
Afghanistan | AF | AFG | 1997 | 0 | 10 | 6 | 3 | 5 | 2 |
Afghanistan | AF | AFG | 1998 | 30 | 129 | 128 | 90 | 89 | 64 |
Afghanistan | AF | AFG | 1999 | 8 | 55 | 55 | 47 | 34 | 21 |
Afghanistan | AF | AFG | 2000 | 52 | 228 | 183 | 149 | 129 | 94 |
Afghanistan | AF | AFG | 2001 | 129 | 379 | 349 | 274 | 204 | 139 |
Afghanistan | AF | AFG | 2002 | 90 | 476 | 481 | 368 | 246 | 241 |
Afghanistan | AF | AFG | 2003 | 127 | 511 | 436 | 284 | 256 | 288 |
Afghanistan | AF | AFG | 2004 | 139 | 537 | 568 | 360 | 358 | 386 |
(api/pivot->longer who #(clojure.string/starts-with? % "new") {:target-columns [:diagnosis :gender :age]
:splitter #"new_?(.*)_(.)(.*)"
:value-column-name :count})
data/who.csv.gz [76046 8]:
country | iso2 | iso3 | year | :diagnosis | :gender | :age | :count |
---|---|---|---|---|---|---|---|
Albania | AL | ALB | 2013 | rel | m | 1524 | 60 |
Algeria | DZ | DZA | 2013 | rel | m | 1524 | 1021 |
Andorra | AD | AND | 2013 | rel | m | 1524 | 0 |
Angola | AO | AGO | 2013 | rel | m | 1524 | 2992 |
Anguilla | AI | AIA | 2013 | rel | m | 1524 | 0 |
Antigua and Barbuda | AG | ATG | 2013 | rel | m | 1524 | 1 |
Argentina | AR | ARG | 2013 | rel | m | 1524 | 1124 |
Armenia | AM | ARM | 2013 | rel | m | 1524 | 116 |
Australia | AU | AUS | 2013 | rel | m | 1524 | 105 |
Austria | AT | AUT | 2013 | rel | m | 1524 | 44 |
Azerbaijan | AZ | AZE | 2013 | rel | m | 1524 | 958 |
Bahamas | BS | BHS | 2013 | rel | m | 1524 | 2 |
Bahrain | BH | BHR | 2013 | rel | m | 1524 | 13 |
Bangladesh | BD | BGD | 2013 | rel | m | 1524 | 14705 |
Barbados | BB | BRB | 2013 | rel | m | 1524 | 0 |
Belarus | BY | BLR | 2013 | rel | m | 1524 | 162 |
Belgium | BE | BEL | 2013 | rel | m | 1524 | 63 |
Belize | BZ | BLZ | 2013 | rel | m | 1524 | 8 |
Benin | BJ | BEN | 2013 | rel | m | 1524 | 301 |
Bermuda | BM | BMU | 2013 | rel | m | 1524 | 0 |
Bhutan | BT | BTN | 2013 | rel | m | 1524 | 180 |
Bolivia (Plurinational State of) | BO | BOL | 2013 | rel | m | 1524 | 1470 |
Bonaire, Saint Eustatius and Saba | BQ | BES | 2013 | rel | m | 1524 | 0 |
Bosnia and Herzegovina | BA | BIH | 2013 | rel | m | 1524 | 57 |
Botswana | BW | BWA | 2013 | rel | m | 1524 | 423 |
When data contains multiple observations per row, we can use splitter and pattern for target columns to create new columns and put values there. In following dataset we have two obseravations dob
and gender
for two childs. We want to put child infomation into the column and leave dob and gender for values.
(def family (api/dataset "data/family.csv"))
family
data/family.csv [5 5]:
family | dob_child1 | dob_child2 | gender_child1 | gender_child2 |
---|---|---|---|---|
1 | 1998-11-26 | 2000-01-29 | 1 | 2 |
2 | 1996-06-22 | 2 | ||
3 | 2002-07-11 | 2004-04-05 | 2 | 2 |
4 | 2004-10-10 | 2009-08-27 | 1 | 1 |
5 | 2000-12-05 | 2005-02-28 | 2 | 1 |
(api/pivot->longer family (complement #{"family"}) {:target-columns [nil :child]
:splitter "_"
:datatypes {"gender" :int16}})
data/family.csv [9 4]:
family | :child | dob | gender |
---|---|---|---|
1 | child1 | 1998-11-26 | 1 |
2 | child1 | 1996-06-22 | 2 |
3 | child1 | 2002-07-11 | 2 |
4 | child1 | 2004-10-10 | 1 |
5 | child1 | 2000-12-05 | 2 |
1 | child2 | 2000-01-29 | 2 |
3 | child2 | 2004-04-05 | 2 |
4 | child2 | 2009-08-27 | 1 |
5 | child2 | 2005-02-28 | 1 |
Similar here, we have two observations: x
and y
in four groups.
(def anscombe (api/dataset "data/anscombe.csv"))
anscombe
data/anscombe.csv [11 8]:
x1 | x2 | x3 | x4 | y1 | y2 | y3 | y4 |
---|---|---|---|---|---|---|---|
10 | 10 | 10 | 8 | 8.04 | 9.14 | 7.46 | 6.58 |
8 | 8 | 8 | 8 | 6.95 | 8.14 | 6.77 | 5.76 |
13 | 13 | 13 | 8 | 7.58 | 8.74 | 12.74 | 7.71 |
9 | 9 | 9 | 8 | 8.81 | 8.77 | 7.11 | 8.84 |
11 | 11 | 11 | 8 | 8.33 | 9.26 | 7.81 | 8.47 |
14 | 14 | 14 | 8 | 9.96 | 8.10 | 8.84 | 7.04 |
6 | 6 | 6 | 8 | 7.24 | 6.13 | 6.08 | 5.25 |
4 | 4 | 4 | 19 | 4.26 | 3.10 | 5.39 | 12.50 |
12 | 12 | 12 | 8 | 10.84 | 9.13 | 8.15 | 5.56 |
7 | 7 | 7 | 8 | 4.82 | 7.26 | 6.42 | 7.91 |
5 | 5 | 5 | 8 | 5.68 | 4.74 | 5.73 | 6.89 |
(api/pivot->longer anscombe :all {:splitter #"(.)(.)"
:target-columns [nil :set]})
data/anscombe.csv [44 3]:
:set | x | y |
---|---|---|
1 | 10 | 8.04 |
1 | 8 | 6.95 |
1 | 13 | 7.58 |
1 | 9 | 8.81 |
1 | 11 | 8.33 |
1 | 14 | 9.96 |
1 | 6 | 7.24 |
1 | 4 | 4.26 |
1 | 12 | 10.84 |
1 | 7 | 4.82 |
1 | 5 | 5.68 |
2 | 10 | 9.14 |
2 | 8 | 8.14 |
2 | 13 | 8.74 |
2 | 9 | 8.77 |
2 | 11 | 9.26 |
2 | 14 | 8.10 |
2 | 6 | 6.13 |
2 | 4 | 3.10 |
2 | 12 | 9.13 |
2 | 7 | 7.26 |
2 | 5 | 4.74 |
3 | 10 | 7.46 |
3 | 8 | 6.77 |
3 | 13 | 12.74 |
(def pnl (api/dataset {:x [1 2 3 4]
:a [1 1 0 0]
:b [0 1 1 1]
:y1 (repeatedly 4 rand)
:y2 (repeatedly 4 rand)
:z1 [3 3 3 3]
:z2 [-2 -2 -2 -2]}))
pnl
_unnamed [4 7]:
:x | :a | :b | :y1 | :y2 | :z1 | :z2 |
---|---|---|---|---|---|---|
1 | 1 | 0 | 0.47646252 | 0.61226742 | 3 | -2 |
2 | 1 | 1 | 0.48952945 | 0.19903664 | 3 | -2 |
3 | 0 | 1 | 0.77183684 | 0.53168083 | 3 | -2 |
4 | 0 | 1 | 0.22986878 | 0.52098381 | 3 | -2 |
(api/pivot->longer pnl [:y1 :y2 :z1 :z2] {:target-columns [nil :times]
:splitter #":(.)(.)"})
_unnamed [8 6]:
:x | :a | :b | :times | y | z |
---|---|---|---|---|---|
1 | 1 | 0 | 1 | 0.47646252 | 3 |
2 | 1 | 1 | 1 | 0.48952945 | 3 |
3 | 0 | 1 | 1 | 0.77183684 | 3 |
4 | 0 | 1 | 1 | 0.22986878 | 3 |
1 | 1 | 0 | 2 | 0.61226742 | -2 |
2 | 1 | 1 | 2 | 0.19903664 | -2 |
3 | 0 | 1 | 2 | 0.53168083 | -2 |
4 | 0 | 1 | 2 | 0.52098381 | -2 |
pivot->wider
converts rows to columns.
Arguments:
columns-selector
- values from selected columns are converted to new columnsvalue-columns
- what are valuesWhen multiple columns are used as columns selector, names are joined using :concat-columns-with
option. :concat-columns-with
can be a string or function (default: "_"). Function accepts sequence of names.
When columns-selector
creates non unique set of values, they are folded using :fold-fn
(default: vec
) option.
When value-columns
is a sequence, multiple observations as columns are created appending value column names into new columns. Column names are joined using :concat-value-with
option. :concat-value-with
can be a string or function (default: "-"). Function accepts current column name and value.
Use station
as a name source for columns and seen
for values
(def fish (api/dataset "data/fish_encounters.csv"))
fish
data/fish_encounters.csv [114 3]:
fish | station | seen |
---|---|---|
4842 | Release | 1 |
4842 | I80_1 | 1 |
4842 | Lisbon | 1 |
4842 | Rstr | 1 |
4842 | Base_TD | 1 |
4842 | BCE | 1 |
4842 | BCW | 1 |
4842 | BCE2 | 1 |
4842 | BCW2 | 1 |
4842 | MAE | 1 |
4842 | MAW | 1 |
4843 | Release | 1 |
4843 | I80_1 | 1 |
4843 | Lisbon | 1 |
4843 | Rstr | 1 |
4843 | Base_TD | 1 |
4843 | BCE | 1 |
4843 | BCW | 1 |
4843 | BCE2 | 1 |
4843 | BCW2 | 1 |
4843 | MAE | 1 |
4843 | MAW | 1 |
4844 | Release | 1 |
4844 | I80_1 | 1 |
4844 | Lisbon | 1 |
(api/pivot->wider fish "station" "seen" {:drop-missing? false})
data/fish_encounters.csv [19 12]:
fish | Rstr | Base_TD | I80_1 | Release | MAE | BCE2 | MAW | BCW2 | BCE | Lisbon | BCW |
---|---|---|---|---|---|---|---|---|---|---|---|
4842 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
4843 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
4844 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
4850 | 1 | 1 | 1 | 1 | 1 | 1 | |||||
4857 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | ||
4858 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
4861 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
4862 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | ||
4864 | 1 | 1 | |||||||||
4865 | 1 | 1 | 1 | ||||||||
4845 | 1 | 1 | 1 | 1 | 1 | ||||||
4847 | 1 | 1 | 1 | ||||||||
4848 | 1 | 1 | 1 | 1 | |||||||
4849 | 1 | 1 | |||||||||
4851 | 1 | 1 | |||||||||
4854 | 1 | 1 | |||||||||
4855 | 1 | 1 | 1 | 1 | 1 | ||||||
4859 | 1 | 1 | 1 | 1 | 1 | ||||||
4863 | 1 | 1 |
If selected columns contain multiple values, such values should be folded.
(def warpbreaks (api/dataset "data/warpbreaks.csv"))
warpbreaks
data/warpbreaks.csv [54 3]:
breaks | wool | tension |
---|---|---|
26 | A | L |
30 | A | L |
54 | A | L |
25 | A | L |
70 | A | L |
52 | A | L |
51 | A | L |
26 | A | L |
67 | A | L |
18 | A | M |
21 | A | M |
29 | A | M |
17 | A | M |
12 | A | M |
18 | A | M |
35 | A | M |
30 | A | M |
36 | A | M |
36 | A | H |
21 | A | H |
24 | A | H |
18 | A | H |
10 | A | H |
43 | A | H |
28 | A | H |
Let's see how many values are for each type of wool
and tension
groups
(-> warpbreaks
(api/group-by ["wool" "tension"])
(api/aggregate {:n api/row-count}))
_unnamed [6 3]:
wool | tension | :n |
---|---|---|
A | H | 9 |
B | H | 9 |
A | L | 9 |
A | M | 9 |
B | L | 9 |
B | M | 9 |
(-> warpbreaks
(api/reorder-columns ["wool" "tension" "breaks"])
(api/pivot->wider "wool" "breaks" {:fold-fn vec}))
data/warpbreaks.csv [3 3]:
tension | B | A |
---|---|---|
M | [42 26 19 16 39 28 21 39 29] | [18 21 29 17 12 18 35 30 36] |
H | [20 21 24 17 13 15 15 16 28] | [36 21 24 18 10 43 28 15 26] |
L | [27 14 29 19 29 31 41 20 44] | [26 30 54 25 70 52 51 26 67] |
We can also calculate mean (aggreate values)
(-> warpbreaks
(api/reorder-columns ["wool" "tension" "breaks"])
(api/pivot->wider "wool" "breaks" {:fold-fn tech.v2.datatype.functional/mean}))
data/warpbreaks.csv [3 3]:
tension | B | A |
---|---|---|
H | 18.78 | 24.55555556 |
M | 28.78 | 24.00000000 |
L | 28.22 | 44.55555556 |
Multiple source columns, joined with default separator.
(def production (api/dataset "data/production.csv"))
production
data/production.csv [45 4]:
product | country | year | production |
---|---|---|---|
A | AI | 2000 | 1.63727150 |
A | AI | 2001 | 0.15870784 |
A | AI | 2002 | -1.56797743 |
A | AI | 2003 | -0.44455510 |
A | AI | 2004 | -0.07133701 |
A | AI | 2005 | 1.61183100 |
A | AI | 2006 | -0.70434684 |
A | AI | 2007 | -1.53550541 |
A | AI | 2008 | 0.83907160 |
A | AI | 2009 | -0.37424111 |
A | AI | 2010 | -0.71158928 |
A | AI | 2011 | 1.12805630 |
A | AI | 2012 | 1.45718240 |
A | AI | 2013 | -1.55934095 |
A | AI | 2014 | -0.11695838 |
B | AI | 2000 | -0.02617661 |
B | AI | 2001 | -0.68863577 |
B | AI | 2002 | 0.06248741 |
B | AI | 2003 | -0.72339684 |
B | AI | 2004 | 0.47248950 |
B | AI | 2005 | -0.94173861 |
B | AI | 2006 | -0.34782109 |
B | AI | 2007 | 0.52425283 |
B | AI | 2008 | 1.83230940 |
B | AI | 2009 | 0.10706490 |
(api/pivot->wider production ["product" "country"] "production")
data/production.csv [15 4]:
year | A_AI | B_EI | B_AI |
---|---|---|---|
2000 | 1.63727150 | 1.40470850 | -0.02617661 |
2001 | 0.15870784 | -0.59618372 | -0.68863577 |
2002 | -1.56797743 | -0.26568580 | 0.06248741 |
2003 | -0.44455510 | 0.65257806 | -0.72339684 |
2004 | -0.07133701 | 0.62565000 | 0.47248950 |
2005 | 1.61183100 | -1.34530294 | -0.94173861 |
2006 | -0.70434684 | -0.97184974 | -0.34782109 |
2007 | -1.53550541 | -1.69715822 | 0.52425283 |
2008 | 0.83907160 | 0.04556128 | 1.83230940 |
2009 | -0.37424111 | 1.19315040 | 0.10706490 |
2010 | -0.71158928 | -1.60557508 | -0.32903662 |
2011 | 1.12805630 | -0.77235496 | -1.78319120 |
2012 | 1.45718240 | -2.50262737 | 0.61125800 |
2013 | -1.55934095 | -1.62753773 | -0.78526092 |
2014 | -0.11695838 | 0.03329644 | 0.97843635 |
Joined with custom function
(api/pivot->wider production ["product" "country"] "production" {:concat-columns-with vec})
data/production.csv [15 4]:
year | ["A" "AI"] | ["B" "EI"] | ["B" "AI"] |
---|---|---|---|
2000 | 1.63727150 | 1.40470850 | -0.02617661 |
2001 | 0.15870784 | -0.59618372 | -0.68863577 |
2002 | -1.56797743 | -0.26568580 | 0.06248741 |
2003 | -0.44455510 | 0.65257806 | -0.72339684 |
2004 | -0.07133701 | 0.62565000 | 0.47248950 |
2005 | 1.61183100 | -1.34530294 | -0.94173861 |
2006 | -0.70434684 | -0.97184974 | -0.34782109 |
2007 | -1.53550541 | -1.69715822 | 0.52425283 |
2008 | 0.83907160 | 0.04556128 | 1.83230940 |
2009 | -0.37424111 | 1.19315040 | 0.10706490 |
2010 | -0.71158928 | -1.60557508 | -0.32903662 |
2011 | 1.12805630 | -0.77235496 | -1.78319120 |
2012 | 1.45718240 | -2.50262737 | 0.61125800 |
2013 | -1.55934095 | -1.62753773 | -0.78526092 |
2014 | -0.11695838 | 0.03329644 | 0.97843635 |
Multiple value columns
(def income (api/dataset "data/us_rent_income.csv"))
income
data/us_rent_income.csv [104 5]:
GEOID | NAME | variable | estimate | moe |
---|---|---|---|---|
1 | Alabama | income | 24476 | 136 |
1 | Alabama | rent | 747 | 3 |
2 | Alaska | income | 32940 | 508 |
2 | Alaska | rent | 1200 | 13 |
4 | Arizona | income | 27517 | 148 |
4 | Arizona | rent | 972 | 4 |
5 | Arkansas | income | 23789 | 165 |
5 | Arkansas | rent | 709 | 5 |
6 | California | income | 29454 | 109 |
6 | California | rent | 1358 | 3 |
8 | Colorado | income | 32401 | 109 |
8 | Colorado | rent | 1125 | 5 |
9 | Connecticut | income | 35326 | 195 |
9 | Connecticut | rent | 1123 | 5 |
10 | Delaware | income | 31560 | 247 |
10 | Delaware | rent | 1076 | 10 |
11 | District of Columbia | income | 43198 | 681 |
11 | District of Columbia | rent | 1424 | 17 |
12 | Florida | income | 25952 | 70 |
12 | Florida | rent | 1077 | 3 |
13 | Georgia | income | 27024 | 106 |
13 | Georgia | rent | 927 | 3 |
15 | Hawaii | income | 32453 | 218 |
15 | Hawaii | rent | 1507 | 18 |
16 | Idaho | income | 25298 | 208 |
(api/pivot->wider income "variable" ["estimate" "moe"] {:drop-missing? false})
data/us_rent_income.csv [52 6]:
GEOID | NAME | rent-estimate | rent-moe | income-estimate | income-moe |
---|---|---|---|---|---|
1 | Alabama | 747 | 3 | 24476 | 136 |
2 | Alaska | 1200 | 13 | 32940 | 508 |
4 | Arizona | 972 | 4 | 27517 | 148 |
5 | Arkansas | 709 | 5 | 23789 | 165 |
6 | California | 1358 | 3 | 29454 | 109 |
8 | Colorado | 1125 | 5 | 32401 | 109 |
9 | Connecticut | 1123 | 5 | 35326 | 195 |
10 | Delaware | 1076 | 10 | 31560 | 247 |
11 | District of Columbia | 1424 | 17 | 43198 | 681 |
12 | Florida | 1077 | 3 | 25952 | 70 |
13 | Georgia | 927 | 3 | 27024 | 106 |
15 | Hawaii | 1507 | 18 | 32453 | 218 |
16 | Idaho | 792 | 7 | 25298 | 208 |
17 | Illinois | 952 | 3 | 30684 | 83 |
18 | Indiana | 782 | 3 | 27247 | 117 |
19 | Iowa | 740 | 4 | 30002 | 143 |
20 | Kansas | 801 | 5 | 29126 | 208 |
21 | Kentucky | 713 | 4 | 24702 | 159 |
22 | Louisiana | 825 | 4 | 25086 | 155 |
23 | Maine | 808 | 7 | 26841 | 187 |
24 | Maryland | 1311 | 5 | 37147 | 152 |
25 | Massachusetts | 1173 | 5 | 34498 | 199 |
26 | Michigan | 824 | 3 | 26987 | 82 |
27 | Minnesota | 906 | 4 | 32734 | 189 |
28 | Mississippi | 740 | 5 | 22766 | 194 |
Value concatenated by custom function
(api/pivot->wider income "variable" ["estimate" "moe"] {:concat-columns-with vec
:concat-value-with vector
:drop-missing? false})
data/us_rent_income.csv [52 6]:
GEOID | NAME | ["rent" "estimate"] | ["rent" "moe"] | ["income" "estimate"] | ["income" "moe"] |
---|---|---|---|---|---|
1 | Alabama | 747 | 3 | 24476 | 136 |
2 | Alaska | 1200 | 13 | 32940 | 508 |
4 | Arizona | 972 | 4 | 27517 | 148 |
5 | Arkansas | 709 | 5 | 23789 | 165 |
6 | California | 1358 | 3 | 29454 | 109 |
8 | Colorado | 1125 | 5 | 32401 | 109 |
9 | Connecticut | 1123 | 5 | 35326 | 195 |
10 | Delaware | 1076 | 10 | 31560 | 247 |
11 | District of Columbia | 1424 | 17 | 43198 | 681 |
12 | Florida | 1077 | 3 | 25952 | 70 |
13 | Georgia | 927 | 3 | 27024 | 106 |
15 | Hawaii | 1507 | 18 | 32453 | 218 |
16 | Idaho | 792 | 7 | 25298 | 208 |
17 | Illinois | 952 | 3 | 30684 | 83 |
18 | Indiana | 782 | 3 | 27247 | 117 |
19 | Iowa | 740 | 4 | 30002 | 143 |
20 | Kansas | 801 | 5 | 29126 | 208 |
21 | Kentucky | 713 | 4 | 24702 | 159 |
22 | Louisiana | 825 | 4 | 25086 | 155 |
23 | Maine | 808 | 7 | 26841 | 187 |
24 | Maryland | 1311 | 5 | 37147 | 152 |
25 | Massachusetts | 1173 | 5 | 34498 | 199 |
26 | Michigan | 824 | 3 | 26987 | 82 |
27 | Minnesota | 906 | 4 | 32734 | 189 |
28 | Mississippi | 740 | 5 | 22766 | 194 |
Reshape contact data
(def contacts (api/dataset "data/contacts.csv"))
contacts
data/contacts.csv [6 3]:
field | value | person_id |
---|---|---|
name | Jiena McLellan | 1 |
company | Toyota | 1 |
name | John Smith | 2 |
company | 2 | |
john@google.com | 2 | |
name | Huxley Ratcliffe | 3 |
(api/pivot->wider contacts "field" "value" {:drop-missing? false})
data/contacts.csv [3 4]:
person_id | name | company | |
---|---|---|---|
1 | Jiena McLellan | Toyota | |
2 | john@google.com | John Smith | |
3 | Huxley Ratcliffe |
A couple of tidyr
examples of more complex reshaping.
(def world-bank-pop (api/dataset "data/world_bank_pop.csv.gz"))
(->> world-bank-pop
(api/column-names)
(take 8)
(api/select-columns world-bank-pop))
data/world_bank_pop.csv.gz [1056 8]:
country | indicator | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 |
---|---|---|---|---|---|---|---|
ABW | SP.URB.TOTL | 4.24440000E+04 | 4.30480000E+04 | 4.36700000E+04 | 4.42460000E+04 | 4.46690000E+04 | 4.48890000E+04 |
ABW | SP.URB.GROW | 1.18263230E+00 | 1.41302120E+00 | 1.43455960E+00 | 1.31036040E+00 | 9.51477700E-01 | 4.91302730E-01 |
ABW | SP.POP.TOTL | 9.08530000E+04 | 9.28980000E+04 | 9.49920000E+04 | 9.70170000E+04 | 9.87370000E+04 | 1.00031000E+05 |
ABW | SP.POP.GROW | 2.05502680E+00 | 2.22593020E+00 | 2.22905610E+00 | 2.10935430E+00 | 1.75735280E+00 | 1.30203880E+00 |
AFG | SP.URB.TOTL | 4.43629900E+06 | 4.64805500E+06 | 4.89295100E+06 | 5.15568600E+06 | 5.42677000E+06 | 5.69182300E+06 |
AFG | SP.URB.GROW | 3.91222830E+00 | 4.66283850E+00 | 5.13467450E+00 | 5.23045870E+00 | 5.12439300E+00 | 4.76864700E+00 |
AFG | SP.POP.TOTL | 2.00937560E+07 | 2.09664640E+07 | 2.19799240E+07 | 2.30648520E+07 | 2.41189800E+07 | 2.50707980E+07 |
AFG | SP.POP.GROW | 3.49465870E+00 | 4.25150400E+00 | 4.72052860E+00 | 4.81804130E+00 | 4.46891830E+00 | 3.87047000E+00 |
AGO | SP.URB.TOTL | 8.23476600E+06 | 8.70800000E+06 | 9.21878700E+06 | 9.76519700E+06 | 1.03435060E+07 | 1.09494240E+07 |
AGO | SP.URB.GROW | 5.43749430E+00 | 5.58771940E+00 | 5.70013240E+00 | 5.75812700E+00 | 5.75341460E+00 | 5.69279670E+00 |
AGO | SP.POP.TOTL | 1.64409240E+07 | 1.69832660E+07 | 1.75726480E+07 | 1.82033680E+07 | 1.88657160E+07 | 1.95525420E+07 |
AGO | SP.POP.GROW | 3.03294350E+00 | 3.24549150E+00 | 3.41151520E+00 | 3.52630280E+00 | 3.57396200E+00 | 3.57589960E+00 |
ALB | SP.URB.TOTL | 1.28939100E+06 | 1.29858400E+06 | 1.32722000E+06 | 1.35484800E+06 | 1.38182800E+06 | 1.40729800E+06 |
ALB | SP.URB.GROW | 7.42478600E-01 | 7.10442600E-01 | 2.18120880E+00 | 2.06027410E+00 | 1.97179890E+00 | 1.82642940E+00 |
ALB | SP.POP.TOTL | 3.08902700E+06 | 3.06017300E+06 | 3.05101000E+06 | 3.03961600E+06 | 3.02693900E+06 | 3.01148700E+06 |
ALB | SP.POP.GROW | -6.37356818E-01 | -9.38470423E-01 | -2.99876690E-01 | -3.74149173E-01 | -4.17931378E-01 | -5.11790097E-01 |
AND | SP.URB.TOTL | 6.04170000E+04 | 6.19910000E+04 | 6.41940000E+04 | 6.67470000E+04 | 6.91920000E+04 | 7.12050000E+04 |
AND | SP.URB.GROW | 1.27931380E+00 | 2.57186910E+00 | 3.49205350E+00 | 3.89996050E+00 | 3.59758970E+00 | 2.86777930E+00 |
AND | SP.POP.TOTL | 6.53900000E+04 | 6.73410000E+04 | 7.00490000E+04 | 7.31820000E+04 | 7.62440000E+04 | 7.88670000E+04 |
AND | SP.POP.GROW | 1.57216560E+00 | 2.93999220E+00 | 3.94257330E+00 | 4.37544900E+00 | 4.09892370E+00 | 3.38241650E+00 |
ARB | SP.URB.TOTL | 1.49981216E+08 | 1.53924352E+08 | 1.57985744E+08 | 1.62267760E+08 | 1.66820464E+08 | 1.71813696E+08 |
ARB | SP.URB.GROW | 2.59956300E+00 | 2.62908100E+00 | 2.63856050E+00 | 2.71038130E+00 | 2.80567460E+00 | 2.99318150E+00 |
ARB | SP.POP.TOTL | 2.83832000E+08 | 2.89850368E+08 | 2.96026560E+08 | 3.02434528E+08 | 3.09162016E+08 | 3.16264736E+08 |
ARB | SP.POP.GROW | 2.11148600E+00 | 2.12038830E+00 | 2.13082980E+00 | 2.16465160E+00 | 2.22445180E+00 | 2.29740330E+00 |
ARE | SP.URB.TOTL | 2.53138600E+06 | 2.68261100E+06 | 2.84320800E+06 | 3.04862700E+06 | 3.34683000E+06 | 3.76723900E+06 |
Step 1 - convert years column into values
(def pop2 (api/pivot->longer world-bank-pop (map str (range 2000 2018)) {:drop-missing? false
:target-columns ["year"]
:value-column-name "value"}))
pop2
data/world_bank_pop.csv.gz [19008 4]:
country | indicator | year | value |
---|---|---|---|
ABW | SP.URB.TOTL | 2013 | 4.43600000E+04 |
ABW | SP.URB.GROW | 2013 | 6.69504000E-01 |
ABW | SP.POP.TOTL | 2013 | 1.03187000E+05 |
ABW | SP.POP.GROW | 2013 | 5.92914000E-01 |
AFG | SP.URB.TOTL | 2013 | 7.73396400E+06 |
AFG | SP.URB.GROW | 2013 | 4.19298000E+00 |
AFG | SP.POP.TOTL | 2013 | 3.17316880E+07 |
AFG | SP.POP.GROW | 2013 | 3.31522420E+00 |
AGO | SP.URB.TOTL | 2013 | 1.61194910E+07 |
AGO | SP.URB.GROW | 2013 | 4.72272250E+00 |
AGO | SP.POP.TOTL | 2013 | 2.59983400E+07 |
AGO | SP.POP.GROW | 2013 | 3.53182400E+00 |
ALB | SP.URB.TOTL | 2013 | 1.60350500E+06 |
ALB | SP.URB.GROW | 2013 | 1.74363930E+00 |
ALB | SP.POP.TOTL | 2013 | 2.89509200E+06 |
ALB | SP.POP.GROW | 2013 | -1.83211386E-01 |
AND | SP.URB.TOTL | 2013 | 7.15270000E+04 |
AND | SP.URB.GROW | 2013 | -2.11923337E+00 |
AND | SP.POP.TOTL | 2013 | 8.07880000E+04 |
AND | SP.POP.GROW | 2013 | -2.01331401E+00 |
ARB | SP.URB.TOTL | 2013 | 2.18605120E+08 |
ARB | SP.URB.GROW | 2013 | 2.78289400E+00 |
ARB | SP.POP.TOTL | 2013 | 3.81702080E+08 |
ARB | SP.POP.GROW | 2013 | 2.24884440E+00 |
ARE | SP.URB.TOTL | 2013 | 7.66126800E+06 |
Step 2 - separate "indicate"
column
(def pop3 (api/separate-column pop2
"indicator" ["area" "variable"]
#(rest (clojure.string/split % #"\."))))
pop3
data/world_bank_pop.csv.gz [19008 5]:
country | area | variable | year | value |
---|---|---|---|---|
ABW | URB | TOTL | 2013 | 4.43600000E+04 |
ABW | URB | GROW | 2013 | 6.69504000E-01 |
ABW | POP | TOTL | 2013 | 1.03187000E+05 |
ABW | POP | GROW | 2013 | 5.92914000E-01 |
AFG | URB | TOTL | 2013 | 7.73396400E+06 |
AFG | URB | GROW | 2013 | 4.19298000E+00 |
AFG | POP | TOTL | 2013 | 3.17316880E+07 |
AFG | POP | GROW | 2013 | 3.31522420E+00 |
AGO | URB | TOTL | 2013 | 1.61194910E+07 |
AGO | URB | GROW | 2013 | 4.72272250E+00 |
AGO | POP | TOTL | 2013 | 2.59983400E+07 |
AGO | POP | GROW | 2013 | 3.53182400E+00 |
ALB | URB | TOTL | 2013 | 1.60350500E+06 |
ALB | URB | GROW | 2013 | 1.74363930E+00 |
ALB | POP | TOTL | 2013 | 2.89509200E+06 |
ALB | POP | GROW | 2013 | -1.83211386E-01 |
AND | URB | TOTL | 2013 | 7.15270000E+04 |
AND | URB | GROW | 2013 | -2.11923337E+00 |
AND | POP | TOTL | 2013 | 8.07880000E+04 |
AND | POP | GROW | 2013 | -2.01331401E+00 |
ARB | URB | TOTL | 2013 | 2.18605120E+08 |
ARB | URB | GROW | 2013 | 2.78289400E+00 |
ARB | POP | TOTL | 2013 | 3.81702080E+08 |
ARB | POP | GROW | 2013 | 2.24884440E+00 |
ARE | URB | TOTL | 2013 | 7.66126800E+06 |
Step 3 - Make columns based on "variable"
values.
(api/pivot->wider pop3 "variable" "value" {:drop-missing? false})
data/world_bank_pop.csv.gz [9504 5]:
country | area | year | GROW | TOTL |
---|---|---|---|---|
ABW | URB | 2013 | 0.66950400 | 4.43600000E+04 |
ABW | POP | 2013 | 0.59291400 | 1.03187000E+05 |
AFG | URB | 2013 | 4.19298000 | 7.73396400E+06 |
AFG | POP | 2013 | 3.31522420 | 3.17316880E+07 |
AGO | URB | 2013 | 4.72272250 | 1.61194910E+07 |
AGO | POP | 2013 | 3.53182400 | 2.59983400E+07 |
ALB | URB | 2013 | 1.74363930 | 1.60350500E+06 |
ALB | POP | 2013 | -0.18321139 | 2.89509200E+06 |
AND | URB | 2013 | -2.11923337 | 7.15270000E+04 |
AND | POP | 2013 | -2.01331401 | 8.07880000E+04 |
ARB | URB | 2013 | 2.78289400 | 2.18605120E+08 |
ARB | POP | 2013 | 2.24884440 | 3.81702080E+08 |
ARE | URB | 2013 | 1.55515590 | 7.66126800E+06 |
ARE | POP | 2013 | 1.18180500 | 9.00626300E+06 |
ARG | URB | 2013 | 1.18764910 | 3.88172560E+07 |
ARG | POP | 2013 | 1.04727670 | 4.25399240E+07 |
ARM | URB | 2013 | 0.28102720 | 1.82765600E+06 |
ARM | POP | 2013 | 0.40125197 | 2.89350900E+06 |
ASM | URB | 2013 | 0.05797582 | 4.83100000E+04 |
ASM | POP | 2013 | 0.13931988 | 5.53070000E+04 |
ATG | URB | 2013 | 0.38383110 | 2.47980000E+04 |
ATG | POP | 2013 | 1.07605830 | 9.78240000E+04 |
AUS | URB | 2013 | 1.87536410 | 1.97902080E+07 |
AUS | POP | 2013 | 1.75833810 | 2.31459000E+07 |
AUT | URB | 2013 | 0.91956020 | 4.86199100E+06 |
(def multi (api/dataset {:id [1 2 3 4]
:choice1 ["A" "C" "D" "B"]
:choice2 ["B" "B" nil "D"]
:choice3 ["C" nil nil nil]}))
multi
_unnamed [4 4]:
:id | :choice1 | :choice2 | :choice3 |
---|---|---|---|
1 | A | B | C |
2 | C | B | |
3 | D | ||
4 | B | D |
Step 1 - convert all choices into rows and add artificial column to all values which are not missing.
(def multi2 (-> multi
(api/pivot->longer (complement #{:id}))
(api/add-or-replace-column :checked true)))
multi2
_unnamed [8 4]:
:id | :$column | :$value | :checked |
---|---|---|---|
1 | :choice1 | A | true |
2 | :choice1 | C | true |
3 | :choice1 | D | true |
4 | :choice1 | B | true |
1 | :choice2 | B | true |
2 | :choice2 | B | true |
4 | :choice2 | D | true |
1 | :choice3 | C | true |
Step 2 - Convert back to wide form with actual choices as columns
(-> multi2
(api/drop-columns :$column)
(api/pivot->wider :$value :checked {:drop-missing? false})
(api/order-by :id))
_unnamed [4 5]:
:id | A | B | C | D |
---|---|---|---|---|
1 | true | true | true | |
2 | true | true | ||
3 | true | |||
4 | true | true |
(def construction (api/dataset "data/construction.csv"))
(def construction-unit-map {"1 unit" "1"
"2 to 4 units" "2-4"
"5 units or more" "5+"})
construction
data/construction.csv [9 9]:
Year | Month | 1 unit | 2 to 4 units | 5 units or more | Northeast | Midwest | South | West |
---|---|---|---|---|---|---|---|---|
2018 | January | 859 | 348 | 114 | 169 | 596 | 339 | |
2018 | February | 882 | 400 | 138 | 160 | 655 | 336 | |
2018 | March | 862 | 356 | 150 | 154 | 595 | 330 | |
2018 | April | 797 | 447 | 144 | 196 | 613 | 304 | |
2018 | May | 875 | 364 | 90 | 169 | 673 | 319 | |
2018 | June | 867 | 342 | 76 | 170 | 610 | 360 | |
2018 | July | 829 | 360 | 108 | 183 | 594 | 310 | |
2018 | August | 939 | 286 | 90 | 205 | 649 | 286 | |
2018 | September | 835 | 304 | 117 | 175 | 560 | 296 |
Conversion 1 - Group two column types
(-> construction
(api/pivot->longer #"^[125NWS].*|Midwest" {:target-columns [:units :region]
:splitter (fn [col-name]
(if (re-matches #"^[125].*" col-name)
[(construction-unit-map col-name) nil]
[nil col-name]))
:value-column-name :n
:drop-missing? false}))
data/construction.csv [63 5]:
Year | Month | :units | :region | :n |
---|---|---|---|---|
2018 | January | 1 | 859 | |
2018 | February | 1 | 882 | |
2018 | March | 1 | 862 | |
2018 | April | 1 | 797 | |
2018 | May | 1 | 875 | |
2018 | June | 1 | 867 | |
2018 | July | 1 | 829 | |
2018 | August | 1 | 939 | |
2018 | September | 1 | 835 | |
2018 | January | 2-4 | ||
2018 | February | 2-4 | ||
2018 | March | 2-4 | ||
2018 | April | 2-4 | ||
2018 | May | 2-4 | ||
2018 | June | 2-4 | ||
2018 | July | 2-4 | ||
2018 | August | 2-4 | ||
2018 | September | 2-4 | ||
2018 | January | 5+ | 348 | |
2018 | February | 5+ | 400 | |
2018 | March | 5+ | 356 | |
2018 | April | 5+ | 447 | |
2018 | May | 5+ | 364 | |
2018 | June | 5+ | 342 | |
2018 | July | 5+ | 360 |
Conversion 2 - Convert to longer form and back and rename columns
(-> construction
(api/pivot->longer #"^[125NWS].*|Midwest" {:target-columns [:units :region]
:splitter (fn [col-name]
(if (re-matches #"^[125].*" col-name)
[(construction-unit-map col-name) nil]
[nil col-name]))
:value-column-name :n
:drop-missing? false})
(api/pivot->wider [:units :region] :n {:drop-missing? false})
(api/rename-columns (zipmap (vals construction-unit-map)
(keys construction-unit-map))))
data/construction.csv [9 9]:
Year | Month | Midwest | 5 units or more | 2 to 4 units | Northeast | South | 1 unit | West |
---|---|---|---|---|---|---|---|---|
2018 | January | 169 | 348 | 114 | 596 | 859 | 339 | |
2018 | February | 160 | 400 | 138 | 655 | 882 | 336 | |
2018 | March | 154 | 356 | 150 | 595 | 862 | 330 | |
2018 | April | 196 | 447 | 144 | 613 | 797 | 304 | |
2018 | May | 169 | 364 | 90 | 673 | 875 | 319 | |
2018 | June | 170 | 342 | 76 | 610 | 867 | 360 | |
2018 | July | 183 | 360 | 108 | 594 | 829 | 310 | |
2018 | August | 205 | 286 | 90 | 649 | 939 | 286 | |
2018 | September | 175 | 304 | 117 | 560 | 835 | 296 |
Various operations on stocks, examples taken from gather and spread manuals.
(def stocks-tidyr (api/dataset "data/stockstidyr.csv"))
stocks-tidyr
data/stockstidyr.csv [10 4]:
time | X | Y | Z |
---|---|---|---|
2009-01-01 | 1.30989800 | -1.89040196 | -1.7794688 |
2009-01-02 | -0.29993805 | -1.82473087 | 2.3989250 |
2009-01-03 | 0.53647500 | -1.03606856 | -3.9869797 |
2009-01-04 | -1.88390803 | -0.52178389 | -2.8306549 |
2009-01-05 | -0.96052361 | -2.21683359 | 1.4371517 |
2009-01-06 | -1.18528962 | -2.89350915 | 3.3978415 |
2009-01-07 | -0.85207057 | -2.16794825 | -1.2010826 |
2009-01-08 | 0.25234172 | -0.32854116 | -1.5316048 |
2009-01-09 | 0.40257135 | 1.96407900 | -6.8087883 |
2009-01-10 | -0.64383501 | 2.68618400 | -2.5590932 |
Convert to longer form
(def stocks-long (api/pivot->longer stocks-tidyr ["X" "Y" "Z"] {:value-column-name :price
:target-columns :stocks}))
stocks-long
data/stockstidyr.csv [30 3]:
time | :stocks | :price |
---|---|---|
2009-01-01 | X | 1.30989800 |
2009-01-02 | X | -0.29993805 |
2009-01-03 | X | 0.53647500 |
2009-01-04 | X | -1.88390803 |
2009-01-05 | X | -0.96052361 |
2009-01-06 | X | -1.18528962 |
2009-01-07 | X | -0.85207057 |
2009-01-08 | X | 0.25234172 |
2009-01-09 | X | 0.40257135 |
2009-01-10 | X | -0.64383501 |
2009-01-01 | Y | -1.89040196 |
2009-01-02 | Y | -1.82473087 |
2009-01-03 | Y | -1.03606856 |
2009-01-04 | Y | -0.52178389 |
2009-01-05 | Y | -2.21683359 |
2009-01-06 | Y | -2.89350915 |
2009-01-07 | Y | -2.16794825 |
2009-01-08 | Y | -0.32854116 |
2009-01-09 | Y | 1.96407900 |
2009-01-10 | Y | 2.68618400 |
2009-01-01 | Z | -1.77946877 |
2009-01-02 | Z | 2.39892500 |
2009-01-03 | Z | -3.98697972 |
2009-01-04 | Z | -2.83065486 |
2009-01-05 | Z | 1.43715170 |
Convert back to wide form
(api/pivot->wider stocks-long :stocks :price)
data/stockstidyr.csv [10 4]:
time | Z | X | Y |
---|---|---|---|
2009-01-01 | -1.7794688 | 1.30989800 | -1.89040196 |
2009-01-02 | 2.3989250 | -0.29993805 | -1.82473087 |
2009-01-03 | -3.9869797 | 0.53647500 | -1.03606856 |
2009-01-04 | -2.8306549 | -1.88390803 | -0.52178389 |
2009-01-05 | 1.4371517 | -0.96052361 | -2.21683359 |
2009-01-06 | 3.3978415 | -1.18528962 | -2.89350915 |
2009-01-07 | -1.2010826 | -0.85207057 | -2.16794825 |
2009-01-08 | -1.5316048 | 0.25234172 | -0.32854116 |
2009-01-09 | -6.8087883 | 0.40257135 | 1.96407900 |
2009-01-10 | -2.5590932 | -0.64383501 | 2.68618400 |
Convert to wide form on time column (let's limit values to a couple of rows)
(-> stocks-long
(api/select-rows (range 0 30 4))
(api/pivot->wider "time" :price {:drop-missing? false}))
data/stockstidyr.csv [3 6]:
:stocks | 2009-01-05 | 2009-01-07 | 2009-01-01 | 2009-01-03 | 2009-01-09 |
---|---|---|---|---|---|
X | -0.9605236 | 1.3098980 | 0.40257135 | ||
Z | 1.4371517 | -1.7794688 | -6.80878830 | ||
Y | -2.1679482 | -1.0360686 |
Dataset join and concatenation functions.
Joins accept left-side and right-side datasets and columns selector. Options are the same as in tech.ml.dataset
functions.
The difference between tech.ml.dataset
join functions are: arguments order (first datasets) and possibility to join on multiple columns.
Additionally set operations are defined: intersect
and difference
.
To concat two datasets rowwise you can choose:
concat
- concats rows for matching columns, the number of columns should be equal.union
- like concat but returns unique valuesbind
- concats rows add missing, empty columnsTo add two datasets columnwise use bind
. The number of rows should be equal.
Datasets used in examples:
(def ds1 (api/dataset {:a [1 2 1 2 3 4 nil nil 4]
:b (range 101 110)
:c (map str "abs tract")}))
(def ds2 (api/dataset {:a [nil 1 2 5 4 3 2 1 nil]
:b (range 110 101 -1)
:c (map str "datatable")
:d (symbol "X")}))
ds1
ds2
_unnamed [9 3]:
:a | :b | :c |
---|---|---|
1 | 101 | a |
2 | 102 | b |
1 | 103 | s |
2 | 104 | |
3 | 105 | t |
4 | 106 | r |
107 | a | |
108 | c | |
4 | 109 | t |
_unnamed [9 4]:
:a | :b | :c | :d |
---|---|---|---|
110 | d | X | |
1 | 109 | a | X |
2 | 108 | t | X |
5 | 107 | a | X |
4 | 106 | t | X |
3 | 105 | a | X |
2 | 104 | b | X |
1 | 103 | l | X |
102 | e | X |
(api/left-join ds1 ds2 :b)
left-outer-join [9 7]:
:b | :a | :c | :right.b | :right.a | :right.c | :d |
---|---|---|---|---|---|---|
109 | 4 | t | 109 | 1 | a | X |
108 | c | 108 | 2 | t | X | |
107 | a | 107 | 5 | a | X | |
106 | 4 | r | 106 | 4 | t | X |
105 | 3 | t | 105 | 3 | a | X |
104 | 2 | 104 | 2 | b | X | |
103 | 1 | s | 103 | 1 | l | X |
102 | 2 | b | 102 | e | X | |
101 | 1 | a |
(api/left-join ds2 ds1 :b)
left-outer-join [9 7]:
:b | :a | :c | :d | :right.b | :right.a | :right.c |
---|---|---|---|---|---|---|
102 | e | X | 102 | 2 | b | |
103 | 1 | l | X | 103 | 1 | s |
104 | 2 | b | X | 104 | 2 | |
105 | 3 | a | X | 105 | 3 | t |
106 | 4 | t | X | 106 | 4 | r |
107 | 5 | a | X | 107 | a | |
108 | 2 | t | X | 108 | c | |
109 | 1 | a | X | 109 | 4 | t |
110 | d | X |
(api/left-join ds1 ds2 [:a :b])
left-outer-join [9 7]:
:a | :b | :c | :right.a | :right.b | :right.c | :d |
---|---|---|---|---|---|---|
4 | 106 | r | 4 | 106 | t | X |
3 | 105 | t | 3 | 105 | a | X |
2 | 104 | 2 | 104 | b | X | |
1 | 103 | s | 1 | 103 | l | X |
2 | 102 | b | ||||
108 | c | |||||
107 | a | |||||
1 | 101 | a | ||||
4 | 109 | t |
(api/left-join ds2 ds1 [:a :b])
left-outer-join [9 7]:
:a | :b | :c | :d | :right.a | :right.b | :right.c |
---|---|---|---|---|---|---|
1 | 103 | l | X | 1 | 103 | s |
2 | 104 | b | X | 2 | 104 | |
3 | 105 | a | X | 3 | 105 | t |
4 | 106 | t | X | 4 | 106 | r |
2 | 108 | t | X | |||
1 | 109 | a | X | |||
5 | 107 | a | X | |||
110 | d | X | ||||
102 | e | X |
(api/right-join ds1 ds2 :b)
right-outer-join [9 7]:
:b | :a | :c | :right.b | :right.a | :right.c | :d |
---|---|---|---|---|---|---|
109 | 4 | t | 109 | 1 | a | X |
108 | c | 108 | 2 | t | X | |
107 | a | 107 | 5 | a | X | |
106 | 4 | r | 106 | 4 | t | X |
105 | 3 | t | 105 | 3 | a | X |
104 | 2 | 104 | 2 | b | X | |
103 | 1 | s | 103 | 1 | l | X |
102 | 2 | b | 102 | e | X | |
110 | d | X |
(api/right-join ds2 ds1 :b)
right-outer-join [9 7]:
:b | :a | :c | :d | :right.b | :right.a | :right.c |
---|---|---|---|---|---|---|
102 | e | X | 102 | 2 | b | |
103 | 1 | l | X | 103 | 1 | s |
104 | 2 | b | X | 104 | 2 | |
105 | 3 | a | X | 105 | 3 | t |
106 | 4 | t | X | 106 | 4 | r |
107 | 5 | a | X | 107 | a | |
108 | 2 | t | X | 108 | c | |
109 | 1 | a | X | 109 | 4 | t |
101 | 1 | a |
(api/right-join ds1 ds2 [:a :b])
right-outer-join [9 7]:
:a | :b | :c | :right.a | :right.b | :right.c | :d |
---|---|---|---|---|---|---|
4 | 106 | r | 4 | 106 | t | X |
3 | 105 | t | 3 | 105 | a | X |
2 | 104 | 2 | 104 | b | X | |
1 | 103 | s | 1 | 103 | l | X |
110 | d | X | ||||
1 | 109 | a | X | |||
2 | 108 | t | X | |||
5 | 107 | a | X | |||
102 | e | X |
(api/right-join ds2 ds1 [:a :b])
right-outer-join [9 7]:
:a | :b | :c | :d | :right.a | :right.b | :right.c |
---|---|---|---|---|---|---|
1 | 103 | l | X | 1 | 103 | s |
2 | 104 | b | X | 2 | 104 | |
3 | 105 | a | X | 3 | 105 | t |
4 | 106 | t | X | 4 | 106 | r |
1 | 101 | a | ||||
2 | 102 | b | ||||
107 | a | |||||
108 | c | |||||
4 | 109 | t |
(api/inner-join ds1 ds2 :b)
inner-join [8 6]:
:b | :a | :c | :right.a | :right.c | :d |
---|---|---|---|---|---|
109 | 4 | t | 1 | a | X |
108 | c | 2 | t | X | |
107 | a | 5 | a | X | |
106 | 4 | r | 4 | t | X |
105 | 3 | t | 3 | a | X |
104 | 2 | 2 | b | X | |
103 | 1 | s | 1 | l | X |
102 | 2 | b | e | X |
(api/inner-join ds2 ds1 :b)
inner-join [8 6]:
:b | :a | :c | :d | :right.a | :right.c |
---|---|---|---|---|---|
102 | e | X | 2 | b | |
103 | 1 | l | X | 1 | s |
104 | 2 | b | X | 2 | |
105 | 3 | a | X | 3 | t |
106 | 4 | t | X | 4 | r |
107 | 5 | a | X | a | |
108 | 2 | t | X | c | |
109 | 1 | a | X | 4 | t |
(api/inner-join ds1 ds2 [:a :b])
inner-join [4 7]:
:a | :b | :c | :right.a | :right.b | :right.c | :d |
---|---|---|---|---|---|---|
4 | 106 | r | 4 | 106 | t | X |
3 | 105 | t | 3 | 105 | a | X |
2 | 104 | 2 | 104 | b | X | |
1 | 103 | s | 1 | 103 | l | X |
(api/inner-join ds2 ds1 [:a :b])
inner-join [4 7]:
:a | :b | :c | :d | :right.a | :right.b | :right.c |
---|---|---|---|---|---|---|
1 | 103 | l | X | 1 | 103 | s |
2 | 104 | b | X | 2 | 104 | |
3 | 105 | a | X | 3 | 105 | t |
4 | 106 | t | X | 4 | 106 | r |
Join keeping all rows
(api/full-join ds1 ds2 :b)
full-join [10 7]:
:b | :a | :c | :right.b | :right.a | :right.c | :d |
---|---|---|---|---|---|---|
109 | 4 | t | 109 | 1 | a | X |
108 | c | 108 | 2 | t | X | |
107 | a | 107 | 5 | a | X | |
106 | 4 | r | 106 | 4 | t | X |
105 | 3 | t | 105 | 3 | a | X |
104 | 2 | 104 | 2 | b | X | |
103 | 1 | s | 103 | 1 | l | X |
102 | 2 | b | 102 | e | X | |
101 | 1 | a | ||||
110 | d | X |
(api/full-join ds2 ds1 :b)
full-join [10 7]:
:b | :a | :c | :d | :right.b | :right.a | :right.c |
---|---|---|---|---|---|---|
102 | e | X | 102 | 2 | b | |
103 | 1 | l | X | 103 | 1 | s |
104 | 2 | b | X | 104 | 2 | |
105 | 3 | a | X | 105 | 3 | t |
106 | 4 | t | X | 106 | 4 | r |
107 | 5 | a | X | 107 | a | |
108 | 2 | t | X | 108 | c | |
109 | 1 | a | X | 109 | 4 | t |
110 | d | X | ||||
101 | 1 | a |
(api/full-join ds1 ds2 [:a :b])
full-join [14 7]:
:a | :b | :c | :right.a | :right.b | :right.c | :d |
---|---|---|---|---|---|---|
4 | 106 | r | 4 | 106 | t | X |
3 | 105 | t | 3 | 105 | a | X |
2 | 104 | 2 | 104 | b | X | |
1 | 103 | s | 1 | 103 | l | X |
2 | 102 | b | ||||
108 | c | |||||
107 | a | |||||
1 | 101 | a | ||||
4 | 109 | t | ||||
110 | d | X | ||||
1 | 109 | a | X | |||
2 | 108 | t | X | |||
5 | 107 | a | X | |||
102 | e | X |
(api/full-join ds2 ds1 [:a :b])
full-join [14 7]:
:a | :b | :c | :d | :right.a | :right.b | :right.c |
---|---|---|---|---|---|---|
1 | 103 | l | X | 1 | 103 | s |
2 | 104 | b | X | 2 | 104 | |
3 | 105 | a | X | 3 | 105 | t |
4 | 106 | t | X | 4 | 106 | r |
2 | 108 | t | X | |||
1 | 109 | a | X | |||
5 | 107 | a | X | |||
110 | d | X | ||||
102 | e | X | ||||
1 | 101 | a | ||||
2 | 102 | b | ||||
107 | a | |||||
108 | c | |||||
4 | 109 | t |
Return rows from ds1 matching ds2
(api/semi-join ds1 ds2 :b)
semi-join [5 3]:
:b | :a | :c |
---|---|---|
109 | 4 | t |
106 | 4 | r |
105 | 3 | t |
104 | 2 | |
103 | 1 | s |
(api/semi-join ds2 ds1 :b)
semi-join [5 4]:
:b | :a | :c | :d |
---|---|---|---|
103 | 1 | l | X |
104 | 2 | b | X |
105 | 3 | a | X |
106 | 4 | t | X |
109 | 1 | a | X |
(api/semi-join ds1 ds2 [:a :b])
semi-join [4 3]:
:a | :b | :c |
---|---|---|
4 | 106 | r |
3 | 105 | t |
2 | 104 | |
1 | 103 | s |
(api/semi-join ds2 ds1 [:a :b])
semi-join [4 4]:
:a | :b | :c | :d |
---|---|---|---|
1 | 103 | l | X |
2 | 104 | b | X |
3 | 105 | a | X |
4 | 106 | t | X |
Return rows from ds1 not matching ds2
(api/anti-join ds1 ds2 :b)
anti-join [4 3]:
:b | :a | :c |
---|---|---|
108 | c | |
107 | a | |
102 | 2 | b |
101 | 1 | a |
(api/anti-join ds2 ds1 :b)
anti-join [4 4]:
:b | :a | :c | :d |
---|---|---|---|
102 | e | X | |
107 | 5 | a | X |
108 | 2 | t | X |
110 | d | X |
(api/anti-join ds1 ds2 [:a :b])
anti-join [5 3]:
:a | :b | :c |
---|---|---|
2 | 102 | b |
108 | c | |
107 | a | |
1 | 101 | a |
4 | 109 | t |
(api/anti-join ds2 ds1 [:a :b])
anti-join [5 4]:
:a | :b | :c | :d |
---|---|---|---|
2 | 108 | t | X |
1 | 109 | a | X |
5 | 107 | a | X |
110 | d | X | |
102 | e | X |
contact
joins rows from other datasets
(api/concat ds1)
null [9 3]:
:a | :b | :c |
---|---|---|
1 | 101 | a |
2 | 102 | b |
1 | 103 | s |
2 | 104 | |
3 | 105 | t |
4 | 106 | r |
107 | a | |
108 | c | |
4 | 109 | t |
(api/concat ds1 (api/drop-columns ds2 :d))
null [18 3]:
:a | :b | :c |
---|---|---|
1 | 101 | a |
2 | 102 | b |
1 | 103 | s |
2 | 104 | |
3 | 105 | t |
4 | 106 | r |
107 | a | |
108 | c | |
4 | 109 | t |
110 | d | |
1 | 109 | a |
2 | 108 | t |
5 | 107 | a |
4 | 106 | t |
3 | 105 | a |
2 | 104 | b |
1 | 103 | l |
102 | e |
(apply api/concat (repeatedly 3 #(api/random DS)))
null [27 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
1 | 3 | 1.5 | C |
1 | 5 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
1 | 3 | 1.5 | C |
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 9 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 5 | 1.0 | B |
1 | 7 | 0.5 | A |
2 | 6 | 1.5 | C |
The same as concat
but returns unique rows
(apply api/union (api/drop-columns ds2 :d) (repeat 10 ds1))
union [18 3]:
:a | :b | :c |
---|---|---|
110 | d | |
1 | 109 | a |
2 | 108 | t |
5 | 107 | a |
4 | 106 | t |
3 | 105 | a |
2 | 104 | b |
1 | 103 | l |
102 | e | |
1 | 101 | a |
2 | 102 | b |
1 | 103 | s |
2 | 104 | |
3 | 105 | t |
4 | 106 | r |
107 | a | |
108 | c | |
4 | 109 | t |
(apply api/union (repeatedly 10 #(api/random DS)))
union [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
2 | 8 | 1.0 | B |
1 | 5 | 1.0 | B |
1 | 9 | 1.5 | C |
2 | 6 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 2 | 1.0 | B |
bind
adds empty columns during concat
(api/bind ds1 ds2)
null [18 4]:
:a | :b | :c | :d |
---|---|---|---|
1 | 101 | a | |
2 | 102 | b | |
1 | 103 | s | |
2 | 104 | ||
3 | 105 | t | |
4 | 106 | r | |
107 | a | ||
108 | c | ||
4 | 109 | t | |
110 | d | X | |
1 | 109 | a | X |
2 | 108 | t | X |
5 | 107 | a | X |
4 | 106 | t | X |
3 | 105 | a | X |
2 | 104 | b | X |
1 | 103 | l | X |
102 | e | X |
(api/bind ds2 ds1)
null [18 4]:
:a | :b | :c | :d |
---|---|---|---|
110 | d | X | |
1 | 109 | a | X |
2 | 108 | t | X |
5 | 107 | a | X |
4 | 106 | t | X |
3 | 105 | a | X |
2 | 104 | b | X |
1 | 103 | l | X |
102 | e | X | |
1 | 101 | a | |
2 | 102 | b | |
1 | 103 | s | |
2 | 104 | ||
3 | 105 | t | |
4 | 106 | r | |
107 | a | ||
108 | c | ||
4 | 109 | t |
append
concats columns
(api/append ds1 ds2)
_unnamed [9 7]:
:a | :b | :c | :a | :b | :c | :d |
---|---|---|---|---|---|---|
1 | 101 | a | 110 | d | X | |
2 | 102 | b | 1 | 109 | a | X |
1 | 103 | s | 2 | 108 | t | X |
2 | 104 | 5 | 107 | a | X | |
3 | 105 | t | 4 | 106 | t | X |
4 | 106 | r | 3 | 105 | a | X |
107 | a | 2 | 104 | b | X | |
108 | c | 1 | 103 | l | X | |
4 | 109 | t | 102 | e | X |
(api/intersect (api/select-columns ds1 :b)
(api/select-columns ds2 :b))
intersection [8 1]:
:b |
---|
109 |
108 |
107 |
106 |
105 |
104 |
103 |
102 |
(api/difference (api/select-columns ds1 :b)
(api/select-columns ds2 :b))
difference [1 1]:
:b |
---|
101 |
(api/difference (api/select-columns ds2 :b)
(api/select-columns ds1 :b))
difference [1 1]:
:b |
---|
110 |
This API doesn't provide any statistical, numerical or date/time functions. Use below namespaces:
Namespace | functions |
---|---|
tech.v2.datatype.functional | primitive oprations, reducers, statistics |
tech.v2.datatype.datetime | date/time converters |
tech.v2.datatype.datetime.operations | date/time functions |
tech.ml.dataset.pipeline | pipeline operations |
(defonce stocks (api/dataset "https://raw.githubusercontent.com/techascent/tech.ml.dataset/master/test/data/stocks.csv" {:key-fn keyword}))
stocks
https://raw.githubusercontent.com/techascent/tech.ml.dataset/master/test/data/stocks.csv [560 3]:
:symbol | :date | :price |
---|---|---|
MSFT | 2000-01-01 | 39.81 |
MSFT | 2000-02-01 | 36.35 |
MSFT | 2000-03-01 | 43.22 |
MSFT | 2000-04-01 | 28.37 |
MSFT | 2000-05-01 | 25.45 |
MSFT | 2000-06-01 | 32.54 |
MSFT | 2000-07-01 | 28.40 |
MSFT | 2000-08-01 | 28.40 |
MSFT | 2000-09-01 | 24.53 |
MSFT | 2000-10-01 | 28.02 |
MSFT | 2000-11-01 | 23.34 |
MSFT | 2000-12-01 | 17.65 |
MSFT | 2001-01-01 | 24.84 |
MSFT | 2001-02-01 | 24.00 |
MSFT | 2001-03-01 | 22.25 |
MSFT | 2001-04-01 | 27.56 |
MSFT | 2001-05-01 | 28.14 |
MSFT | 2001-06-01 | 29.70 |
MSFT | 2001-07-01 | 26.93 |
MSFT | 2001-08-01 | 23.21 |
MSFT | 2001-09-01 | 20.82 |
MSFT | 2001-10-01 | 23.65 |
MSFT | 2001-11-01 | 26.12 |
MSFT | 2001-12-01 | 26.95 |
MSFT | 2002-01-01 | 25.92 |
(-> stocks
(api/group-by (fn [row]
{:symbol (:symbol row)
:year (tech.v2.datatype.datetime.operations/get-years (:date row))}))
(api/aggregate #(tech.v2.datatype.functional/mean (% :price)))
(api/order-by [:symbol :year]))
_unnamed [51 3]:
:symbol | :year | :summary |
---|---|---|
AAPL | 2000 | 21.74833341 |
AAPL | 2001 | 10.17583323 |
AAPL | 2002 | 9.40833330 |
AAPL | 2003 | 9.34749989 |
AAPL | 2004 | 18.72333336 |
AAPL | 2005 | 48.17166678 |
AAPL | 2006 | 72.04333369 |
AAPL | 2007 | 133.35333379 |
AAPL | 2008 | 138.48083242 |
AAPL | 2009 | 150.39333344 |
AAPL | 2010 | 206.56666565 |
AMZN | 2000 | 43.93083342 |
AMZN | 2001 | 11.73916642 |
AMZN | 2002 | 16.72333336 |
AMZN | 2003 | 39.01666673 |
AMZN | 2004 | 43.26749992 |
AMZN | 2005 | 40.18750032 |
AMZN | 2006 | 36.25166623 |
AMZN | 2007 | 69.95250066 |
AMZN | 2008 | 69.01500003 |
AMZN | 2009 | 90.73083433 |
AMZN | 2010 | 124.21000417 |
GOOG | 2004 | 159.47599945 |
GOOG | 2005 | 286.47249858 |
GOOG | 2006 | 415.25666809 |
(-> stocks
(api/group-by (juxt :symbol #(tech.v2.datatype.datetime.operations/get-years (% :date))))
(api/aggregate #(tech.v2.datatype.functional/mean (% :price)))
(api/rename-columns {:$group-name-0 :symbol
:$group-name-1 :year}))
_unnamed [51 3]:
:symbol | :year | :summary |
---|---|---|
AMZN | 2007 | 69.95250066 |
AMZN | 2008 | 69.01500003 |
AMZN | 2009 | 90.73083433 |
AMZN | 2010 | 124.21000417 |
AMZN | 2000 | 43.93083342 |
AMZN | 2001 | 11.73916642 |
AMZN | 2002 | 16.72333336 |
AMZN | 2003 | 39.01666673 |
AMZN | 2004 | 43.26749992 |
AMZN | 2005 | 40.18750032 |
AMZN | 2006 | 36.25166623 |
IBM | 2001 | 96.96833356 |
IBM | 2002 | 75.12500032 |
IBM | 2000 | 96.91416677 |
MSFT | 2006 | 24.75833321 |
MSFT | 2005 | 23.84583330 |
MSFT | 2004 | 22.67416684 |
MSFT | 2003 | 20.93416675 |
AAPL | 2001 | 10.17583323 |
MSFT | 2010 | 28.50666618 |
AAPL | 2002 | 9.40833330 |
MSFT | 2009 | 22.87250002 |
MSFT | 2008 | 25.20833317 |
AAPL | 2000 | 21.74833341 |
MSFT | 2007 | 29.28416665 |
Below you can find comparizon between functionality of data.table
and Clojure dataset API. I leave it without comments, please refer original document explaining details:
R
library(data.table)
library(knitr)
flights <- fread("https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv")
kable(head(flights))
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | 14 | 13 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | -3 | 13 | AA | JFK | LAX | 363 | 2475 | 11 |
2014 | 1 | 1 | 2 | 9 | AA | JFK | LAX | 351 | 2475 | 19 |
2014 | 1 | 1 | -8 | -26 | AA | LGA | PBI | 157 | 1035 | 7 |
2014 | 1 | 1 | 2 | 1 | AA | JFK | LAX | 350 | 2475 | 13 |
2014 | 1 | 1 | 4 | 0 | AA | EWR | LAX | 339 | 2454 | 18 |
Clojure
(require '[tech.v2.datatype.functional :as dfn]
'[tech.v2.datatype :as dtype])
(defonce flights (api/dataset "https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv"))
(api/head flights 6)
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 11]:
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | 14 | 13 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | -3 | 13 | AA | JFK | LAX | 363 | 2475 | 11 |
2014 | 1 | 1 | 2 | 9 | AA | JFK | LAX | 351 | 2475 | 19 |
2014 | 1 | 1 | -8 | -26 | AA | LGA | PBI | 157 | 1035 | 7 |
2014 | 1 | 1 | 2 | 1 | AA | JFK | LAX | 350 | 2475 | 13 |
2014 | 1 | 1 | 4 | 0 | AA | EWR | LAX | 339 | 2454 | 18 |
R
dim(flights)
[1] 253316 11
Clojure
(api/shape flights)
[253316 11]
data.table
?R
DT = data.table(
ID = c("b","b","b","a","a","c"),
a = 1:6,
b = 7:12,
c = 13:18
)
kable(DT)
ID | a | b | c |
---|---|---|---|
b | 1 | 7 | 13 |
b | 2 | 8 | 14 |
b | 3 | 9 | 15 |
a | 4 | 10 | 16 |
a | 5 | 11 | 17 |
c | 6 | 12 | 18 |
class(DT$ID)
[1] "character"
Clojure
(def DT (api/dataset {:ID ["b" "b" "b" "a" "a" "c"]
:a (range 1 7)
:b (range 7 13)
:c (range 13 19)}))
DT
_unnamed [6 4]:
:ID | :a | :b | :c |
---|---|---|---|
b | 1 | 7 | 13 |
b | 2 | 8 | 14 |
b | 3 | 9 | 15 |
a | 4 | 10 | 16 |
a | 5 | 11 | 17 |
c | 6 | 12 | 18 |
(-> :ID DT meta :datatype)
:string
R
ans <- flights[origin == "JFK" & month == 6L]
kable(head(ans))
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 6 | 1 | -9 | -5 | AA | JFK | LAX | 324 | 2475 | 8 |
2014 | 6 | 1 | -10 | -13 | AA | JFK | LAX | 329 | 2475 | 12 |
2014 | 6 | 1 | 18 | -1 | AA | JFK | LAX | 326 | 2475 | 7 |
2014 | 6 | 1 | -6 | -16 | AA | JFK | LAX | 320 | 2475 | 10 |
2014 | 6 | 1 | -4 | -45 | AA | JFK | LAX | 326 | 2475 | 18 |
2014 | 6 | 1 | -6 | -23 | AA | JFK | LAX | 329 | 2475 | 14 |
Clojure
(-> flights
(api/select-rows (fn [row] (and (= (get row "origin") "JFK")
(= (get row "month") 6))))
(api/head 6))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 11]:
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 6 | 1 | -9 | -5 | AA | JFK | LAX | 324 | 2475 | 8 |
2014 | 6 | 1 | -10 | -13 | AA | JFK | LAX | 329 | 2475 | 12 |
2014 | 6 | 1 | 18 | -1 | AA | JFK | LAX | 326 | 2475 | 7 |
2014 | 6 | 1 | -6 | -16 | AA | JFK | LAX | 320 | 2475 | 10 |
2014 | 6 | 1 | -4 | -45 | AA | JFK | LAX | 326 | 2475 | 18 |
2014 | 6 | 1 | -6 | -23 | AA | JFK | LAX | 329 | 2475 | 14 |
flights
.R
ans <- flights[1:2]
kable(ans)
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | 14 | 13 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | -3 | 13 | AA | JFK | LAX | 363 | 2475 | 11 |
Clojure
(api/select-rows flights (range 2))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [2 11]:
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | 14 | 13 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | -3 | 13 | AA | JFK | LAX | 363 | 2475 | 11 |
flights
first by column origin
in ascending order, and then by dest
in descending orderR
ans <- flights[order(origin, -dest)]
kable(head(ans))
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 1 | 5 | 6 | 49 | EV | EWR | XNA | 195 | 1131 | 8 |
2014 | 1 | 6 | 7 | 13 | EV | EWR | XNA | 190 | 1131 | 8 |
2014 | 1 | 7 | -6 | -13 | EV | EWR | XNA | 179 | 1131 | 8 |
2014 | 1 | 8 | -7 | -12 | EV | EWR | XNA | 184 | 1131 | 8 |
2014 | 1 | 9 | 16 | 7 | EV | EWR | XNA | 181 | 1131 | 8 |
2014 | 1 | 13 | 66 | 66 | EV | EWR | XNA | 188 | 1131 | 9 |
Clojure
(-> flights
(api/order-by ["origin" "dest"] [:asc :desc])
(api/head 6))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 11]:
year | month | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
2014 | 6 | 3 | -6 | -38 | EV | EWR | XNA | 154 | 1131 | 6 |
2014 | 1 | 20 | -9 | -17 | EV | EWR | XNA | 177 | 1131 | 8 |
2014 | 3 | 19 | -6 | 10 | EV | EWR | XNA | 201 | 1131 | 6 |
2014 | 2 | 3 | 231 | 268 | EV | EWR | XNA | 184 | 1131 | 12 |
2014 | 4 | 25 | -8 | -32 | EV | EWR | XNA | 159 | 1131 | 6 |
2014 | 2 | 19 | 21 | 10 | EV | EWR | XNA | 176 | 1131 | 8 |
arr_delay
column, but return it as a vectorR
ans <- flights[, arr_delay]
head(ans)
[1] 13 13 9 -26 1 0
Clojure
(take 6 (flights "arr_delay"))
(13 13 9 -26 1 0)
arr_delay
column, but return as a data.table insteadR
ans <- flights[, list(arr_delay)]
kable(head(ans))
arr_delay |
---|
13 |
13 |
9 |
-26 |
1 |
0 |
Clojure
(-> flights
(api/select-columns "arr_delay")
(api/head 6))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 1]:
arr_delay |
---|
13 |
13 |
9 |
-26 |
1 |
0 |
arr_delay
and dep_delay
columnsR
ans <- flights[, .(arr_delay, dep_delay)]
kable(head(ans))
arr_delay | dep_delay |
---|---|
13 | 14 |
13 | -3 |
9 | 2 |
-26 | -8 |
1 | 2 |
0 | 4 |
Clojure
(-> flights
(api/select-columns ["arr_delay" "dep_delay"])
(api/head 6))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 2]:
dep_delay | arr_delay |
---|---|
14 | 13 |
-3 | 13 |
2 | 9 |
-8 | -26 |
2 | 1 |
4 | 0 |
arr_delay
and dep_delay
columns and rename them to delay_arr
and delay_dep
R
ans <- flights[, .(delay_arr = arr_delay, delay_dep = dep_delay)]
kable(head(ans))
delay_arr | delay_dep |
---|---|
13 | 14 |
13 | -3 |
9 | 2 |
-26 | -8 |
1 | 2 |
0 | 4 |
Clojure
(-> flights
(api/select-columns {"arr_delay" "delay_arr"
"dep_delay" "delay_arr"})
(api/head 6))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 2]:
delay_arr | delay_arr |
---|---|
14 | 13 |
-3 | 13 |
2 | 9 |
-8 | -26 |
2 | 1 |
4 | 0 |
R
ans <- flights[, sum( (arr_delay + dep_delay) < 0 )]
ans
[1] 141814
Clojure
(->> (dfn/+ (flights "arr_delay") (flights "dep_delay"))
(dfn/argfilter #(< % 0.0))
(dtype/ecount))
141814
or pure Clojure functions (much, much slower)
(->> (map + (flights "arr_delay") (flights "dep_delay"))
(filter neg?)
(count))
141814
R
ans <- flights[origin == "JFK" & month == 6L,
.(m_arr = mean(arr_delay), m_dep = mean(dep_delay))]
kable(ans)
m_arr | m_dep |
---|---|
5.839349 | 9.807884 |
Clojure
(-> flights
(api/select-rows (fn [row] (and (= (get row "origin") "JFK")
(= (get row "month") 6))))
(api/aggregate {:m_arr #(dfn/mean (% "arr_delay"))
:m_dep #(dfn/mean (% "dep_delay"))}))
_unnamed [1 2]:
:m_arr | :m_dep |
---|---|
5.83934932 | 9.80788411 |
R
ans <- flights[origin == "JFK" & month == 6L, length(dest)]
ans
[1] 8422
or
ans <- flights[origin == "JFK" & month == 6L, .N]
ans
[1] 8422
Clojure
(-> flights
(api/select-rows (fn [row] (and (= (get row "origin") "JFK")
(= (get row "month") 6))))
(api/row-count))
8422
R
ans <- flights[, !c("arr_delay", "dep_delay")]
kable(head(ans))
year | month | day | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | AA | JFK | LAX | 363 | 2475 | 11 |
2014 | 1 | 1 | AA | JFK | LAX | 351 | 2475 | 19 |
2014 | 1 | 1 | AA | LGA | PBI | 157 | 1035 | 7 |
2014 | 1 | 1 | AA | JFK | LAX | 350 | 2475 | 13 |
2014 | 1 | 1 | AA | EWR | LAX | 339 | 2454 | 18 |
or
ans <- flights[, -c("arr_delay", "dep_delay")]
kable(head(ans))
year | month | day | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | AA | JFK | LAX | 363 | 2475 | 11 |
2014 | 1 | 1 | AA | JFK | LAX | 351 | 2475 | 19 |
2014 | 1 | 1 | AA | LGA | PBI | 157 | 1035 | 7 |
2014 | 1 | 1 | AA | JFK | LAX | 350 | 2475 | 13 |
2014 | 1 | 1 | AA | EWR | LAX | 339 | 2454 | 18 |
Clojure
(-> flights
(api/select-columns (complement #{"arr_delay" "dep_delay"}))
(api/head 6))
https://raw.githubusercontent.com/Rdatatable/data.table/master/vignettes/flights14.csv [6 9]:
year | month | day | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|
2014 | 1 | 1 | AA | JFK | LAX | 359 | 2475 | 9 |
2014 | 1 | 1 | AA | JFK | LAX | 363 | 2475 | 11 |
2014 | 1 | 1 | AA | JFK | LAX | 351 | 2475 | 19 |
2014 | 1 | 1 | AA | LGA | PBI | 157 | 1035 | 7 |
2014 | 1 | 1 | AA | JFK | LAX | 350 | 2475 | 13 |
2014 | 1 | 1 | AA | EWR | LAX | 339 | 2454 | 18 |
R
ans <- flights[, .(.N), by = .(origin)]
kable(ans)
origin | N |
---|---|
JFK | 81483 |
LGA | 84433 |
EWR | 87400 |
Clojure
(-> flights
(api/group-by ["origin"])
(api/aggregate {:N api/row-count}))
_unnamed [3 2]:
origin | :N |
---|---|
LGA | 84433 |
EWR | 87400 |
JFK | 81483 |
R
ans <- flights[carrier == "AA", .N, by = origin]
kable(ans)
origin | N |
---|---|
JFK | 11923 |
LGA | 11730 |
EWR | 2649 |
Clojure
(-> flights
(api/select-rows #(= (get % "carrier") "AA"))
(api/group-by ["origin"])
(api/aggregate {:N api/row-count}))
_unnamed [3 2]:
origin | :N |
---|---|
LGA | 11730 |
EWR | 2649 |
JFK | 11923 |
origin
, dest
pair for carrier code "AA"?R
ans <- flights[carrier == "AA", .N, by = .(origin, dest)]
kable(head(ans))
origin | dest | N |
---|---|---|
JFK | LAX | 3387 |
LGA | PBI | 245 |
EWR | LAX | 62 |
JFK | MIA | 1876 |
JFK | SEA | 298 |
EWR | MIA | 848 |
Clojure
(-> flights
(api/select-rows #(= (get % "carrier") "AA"))
(api/group-by ["origin" "dest"])
(api/aggregate {:N api/row-count})
(api/head 6))
_unnamed [6 3]:
origin | dest | :N |
---|---|---|
JFK | MIA | 1876 |
LGA | PBI | 245 |
JFK | SEA | 298 |
LGA | DFW | 3785 |
JFK | AUS | 297 |
JFK | STT | 229 |
orig
,dest
pair for each month for carrier code "AA"?R
ans <- flights[carrier == "AA",
.(mean(arr_delay), mean(dep_delay)),
by = .(origin, dest, month)]
kable(head(ans,10))
origin | dest | month | V1 | V2 |
---|---|---|---|---|
JFK | LAX | 1 | 6.590361 | 14.2289157 |
LGA | PBI | 1 | -7.758621 | 0.3103448 |
EWR | LAX | 1 | 1.366667 | 7.5000000 |
JFK | MIA | 1 | 15.720670 | 18.7430168 |
JFK | SEA | 1 | 14.357143 | 30.7500000 |
EWR | MIA | 1 | 11.011236 | 12.1235955 |
JFK | SFO | 1 | 19.252252 | 28.6396396 |
JFK | BOS | 1 | 12.919643 | 15.2142857 |
JFK | ORD | 1 | 31.586207 | 40.1724138 |
JFK | IAH | 1 | 28.857143 | 14.2857143 |
Clojure
(-> flights
(api/select-rows #(= (get % "carrier") "AA"))
(api/group-by ["origin" "dest" "month"])
(api/aggregate [#(dfn/mean (% "arr_delay"))
#(dfn/mean (% "dep_delay"))])
(api/head 10))
_unnamed [10 5]:
month | origin | dest | :summary-0 | :summary-1 |
---|---|---|---|---|
9 | LGA | DFW | -8.78772379 | -0.25575448 |
10 | LGA | DFW | 3.50000000 | 4.55276382 |
1 | JFK | AUS | 25.20000000 | 27.60000000 |
4 | JFK | AUS | 4.36666667 | -0.13333333 |
5 | JFK | AUS | 6.76666667 | 14.73333333 |
2 | JFK | AUS | 26.26923077 | 21.50000000 |
3 | JFK | AUS | 8.19354839 | 2.70967742 |
8 | JFK | AUS | 20.41935484 | 20.77419355 |
1 | EWR | LAX | 1.36666667 | 7.50000000 |
9 | JFK | AUS | 16.26666667 | 14.36666667 |
R
ans <- flights[carrier == "AA",
.(mean(arr_delay), mean(dep_delay)),
keyby = .(origin, dest, month)]
kable(head(ans,10))
origin | dest | month | V1 | V2 |
---|---|---|---|---|
EWR | DFW | 1 | 6.427673 | 10.012579 |
EWR | DFW | 2 | 10.536765 | 11.345588 |
EWR | DFW | 3 | 12.865031 | 8.079755 |
EWR | DFW | 4 | 17.792683 | 12.920732 |
EWR | DFW | 5 | 18.487805 | 18.682927 |
EWR | DFW | 6 | 37.005952 | 38.744048 |
EWR | DFW | 7 | 20.250000 | 21.154762 |
EWR | DFW | 8 | 16.936046 | 22.069767 |
EWR | DFW | 9 | 5.865031 | 13.055215 |
EWR | DFW | 10 | 18.813665 | 18.894410 |
Clojure
(-> flights
(api/select-rows #(= (get % "carrier") "AA"))
(api/group-by ["origin" "dest" "month"])
(api/aggregate [#(dfn/mean (% "arr_delay"))
#(dfn/mean (% "dep_delay"))])
(api/order-by ["origin" "dest" "month"])
(api/head 10))
_unnamed [10 5]:
month | origin | dest | :summary-0 | :summary-1 |
---|---|---|---|---|
1 | EWR | DFW | 6.42767296 | 10.01257862 |
2 | EWR | DFW | 10.53676471 | 11.34558824 |
3 | EWR | DFW | 12.86503067 | 8.07975460 |
4 | EWR | DFW | 17.79268293 | 12.92073171 |
5 | EWR | DFW | 18.48780488 | 18.68292683 |
6 | EWR | DFW | 37.00595238 | 38.74404762 |
7 | EWR | DFW | 20.25000000 | 21.15476190 |
8 | EWR | DFW | 16.93604651 | 22.06976744 |
9 | EWR | DFW | 5.86503067 | 13.05521472 |
10 | EWR | DFW | 18.81366460 | 18.89440994 |
by
accept expressions as well or does it just take columns?R
ans <- flights[, .N, .(dep_delay>0, arr_delay>0)]
kable(ans)
dep_delay | arr_delay | N |
---|---|---|
TRUE | TRUE | 72836 |
FALSE | TRUE | 34583 |
FALSE | FALSE | 119304 |
TRUE | FALSE | 26593 |
Clojure
(-> flights
(api/group-by (fn [row]
{:dep_delay (pos? (get row "dep_delay"))
:arr_delay (pos? (get row "arr_delay"))}))
(api/aggregate {:N api/row-count}))
_unnamed [4 3]:
:dep_delay | :arr_delay | :N |
---|---|---|
true | false | 26593 |
false | true | 34583 |
false | false | 119304 |
true | true | 72836 |
mean()
for each column individually?R
kable(DT)
ID | a | b | c |
---|---|---|---|
b | 1 | 7 | 13 |
b | 2 | 8 | 14 |
b | 3 | 9 | 15 |
a | 4 | 10 | 16 |
a | 5 | 11 | 17 |
c | 6 | 12 | 18 |
DT[, print(.SD), by = ID]
a b c
1: 1 7 13
2: 2 8 14
3: 3 9 15
a b c
1: 4 10 16
2: 5 11 17
a b c
1: 6 12 18
Empty data.table (0 rows and 1 cols): ID
kable(DT[, lapply(.SD, mean), by = ID])
ID | a | b | c |
---|---|---|---|
b | 2.0 | 8.0 | 14.0 |
a | 4.5 | 10.5 | 16.5 |
c | 6.0 | 12.0 | 18.0 |
Clojure
DT
(api/group-by DT :ID {:result-type :as-map})
_unnamed [6 4]:
:ID | :a | :b | :c |
---|---|---|---|
b | 1 | 7 | 13 |
b | 2 | 8 | 14 |
b | 3 | 9 | 15 |
a | 4 | 10 | 16 |
a | 5 | 11 | 17 |
c | 6 | 12 | 18 |
{"a" Group: a [2 4]:
:ID | :a | :b | :c |
---|---|---|---|
a | 4 | 10 | 16 |
a | 5 | 11 | 17 |
, "b" Group: b [3 4]:
:ID | :a | :b | :c |
---|---|---|---|
b | 1 | 7 | 13 |
b | 2 | 8 | 14 |
b | 3 | 9 | 15 |
, "c" Group: c [1 4]:
:ID | :a | :b | :c |
---|---|---|---|
c | 6 | 12 | 18 |
}
(-> DT
(api/group-by [:ID])
(api/aggregate-columns (complement #{:ID}) dfn/mean))
_unnamed [3 4]:
:ID | :a | :b | :c |
---|---|---|---|
a | 4.5 | 10.5 | 16.5 |
b | 2.0 | 8.0 | 14.0 |
c | 6.0 | 12.0 | 18.0 |
mean()
on?R
kable(head(flights[carrier == "AA", ## Only on trips with carrier "AA"
lapply(.SD, mean), ## compute the mean
by = .(origin, dest, month), ## for every 'origin,dest,month'
.SDcols = c("arr_delay", "dep_delay")])) ## for just those specified in .SDcols
origin | dest | month | arr_delay | dep_delay |
---|---|---|---|---|
JFK | LAX | 1 | 6.590361 | 14.2289157 |
LGA | PBI | 1 | -7.758621 | 0.3103448 |
EWR | LAX | 1 | 1.366667 | 7.5000000 |
JFK | MIA | 1 | 15.720670 | 18.7430168 |
JFK | SEA | 1 | 14.357143 | 30.7500000 |
EWR | MIA | 1 | 11.011236 | 12.1235955 |
Clojure
(-> flights
(api/select-rows #(= (get % "carrier") "AA"))
(api/group-by ["origin" "dest" "month"])
(api/aggregate-columns ["arr_delay" "dep_delay"] dfn/mean)
(api/head 6))
_unnamed [6 5]:
month | origin | dest | dep_delay | arr_delay |
---|---|---|---|---|
9 | LGA | DFW | -0.25575448 | -8.78772379 |
10 | LGA | DFW | 4.55276382 | 3.50000000 |
1 | JFK | AUS | 27.60000000 | 25.20000000 |
4 | JFK | AUS | -0.13333333 | 4.36666667 |
5 | JFK | AUS | 14.73333333 | 6.76666667 |
2 | JFK | AUS | 21.50000000 | 26.26923077 |
R
ans <- flights[, head(.SD, 2), by = month]
kable(head(ans))
month | year | day | dep_delay | arr_delay | carrier | origin | dest | air_time | distance | hour |
---|---|---|---|---|---|---|---|---|---|---|
1 | 2014 | 1 | 14 | 13 | AA | JFK | LAX | 359 | 2475 | 9 |
1 | 2014 | 1 | -3 | 13 | AA | JFK | LAX | 363 | 2475 | 11 |
2 | 2014 | 1 | -1 | 1 | AA | JFK | LAX | 358 | 2475 | 8 |
2 | 2014 | 1 | -5 | 3 | AA | JFK | LAX | 358 | 2475 | 11 |
3 | 2014 | 1 | -11 | 36 | AA | JFK | LAX | 375 | 2475 | 8 |
3 | 2014 | 1 | -3 | 14 | AA | JFK | LAX | 368 | 2475 | 11 |
Clojure
(-> flights
(api/group-by ["month"])
(api/head 2) ;; head applied on each group
(api/ungroup)
(api/head 6))
_unnamed [6 11]:
dep_delay | origin | air_time | hour | arr_delay | dest | distance | year | month | day | carrier |
---|---|---|---|---|---|---|---|---|---|---|
-8 | LGA | 113 | 18 | -23 | BNA | 764 | 2014 | 4 | 1 | MQ |
-8 | LGA | 71 | 18 | -11 | RDU | 431 | 2014 | 4 | 1 | MQ |
43 | JFK | 288 | 17 | 5 | LAS | 2248 | 2014 | 5 | 1 | AA |
-1 | JFK | 330 | 7 | -38 | SFO | 2586 | 2014 | 5 | 1 | AA |
-9 | JFK | 324 | 8 | -5 | LAX | 2475 | 2014 | 6 | 1 | AA |
-10 | JFK | 329 | 12 | -13 | LAX | 2475 | 2014 | 6 | 1 | AA |
R
kable(DT[, .(val = c(a,b)), by = ID])
ID | val |
---|---|
b | 1 |
b | 2 |
b | 3 |
b | 7 |
b | 8 |
b | 9 |
a | 4 |
a | 5 |
a | 10 |
a | 11 |
c | 6 |
c | 12 |
Clojure
(-> DT
(api/pivot->longer [:a :b] {:value-column-name :val})
(api/drop-columns [:$column :c]))
_unnamed [12 2]:
:ID | :val |
---|---|
b | 1 |
b | 2 |
b | 3 |
a | 4 |
a | 5 |
c | 6 |
b | 7 |
b | 8 |
b | 9 |
a | 10 |
a | 11 |
c | 12 |
a
and b
concatenated, but returned as a list column?R
kable(DT[, .(val = list(c(a,b))), by = ID])
ID | val |
---|---|
b | c(1, 2, 3, 7, 8, 9) |
a | c(4, 5, 10, 11) |
c | c(6, 12) |
Clojure
(-> DT
(api/pivot->longer [:a :b] {:value-column-name :val})
(api/drop-columns [:$column :c])
(api/fold-by :ID))
_unnamed [3 2]:
:ID | :val |
---|---|
a | [4 5 10 11] |
b | [1 2 3 7 8 9] |
c | [6 12] |
Below snippets are taken from A data.table and dplyr tour written by Atrebas (permission granted).
I keep structure and subtitles but I skip data.table
and dplyr
examples.
Example data
(def DS (api/dataset {:V1 (take 9 (cycle [1 2]))
:V2 (range 1 10)
:V3 (take 9 (cycle [0.5 1.0 1.5]))
:V4 (take 9 (cycle ["A" "B" "C"]))}))
(api/dataset? DS)
(class DS)
true
tech.ml.dataset.impl.dataset.Dataset
DS
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Filter rows using indices
(api/select-rows DS [2 3])
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
Discard rows using negative indices
In Clojure API we have separate function for that: drop-rows
.
(api/drop-rows DS (range 2 7))
_unnamed [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Filter rows using a logical expression
(api/select-rows DS (comp #(> % 5) :V2))
_unnamed [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
(api/select-rows DS (comp #{"A" "C"} :V4))
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 9 | 1.5 | C |
Filter rows using multiple conditions
(api/select-rows DS #(and (= (:V1 %) 1)
(= (:V4 %) "A")))
_unnamed [2 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
1 | 7 | 0.5 | A |
Filter unique rows
(api/unique-by DS)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
(api/unique-by DS [:V1 :V4])
_unnamed [6 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
Discard rows with missing values
(api/drop-missing DS)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
Other filters
(api/random DS 3) ;; 3 random rows
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 9 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
(api/random DS (/ (api/row-count DS) 2)) ;; fraction of random rows
_unnamed [5 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 6 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 5 | 1.0 | B |
1 | 5 | 1.0 | B |
1 | 5 | 1.0 | B |
(api/by-rank DS :V1 zero?) ;; take top n entries
_unnamed [4 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
2 | 4 | 0.5 | A |
2 | 6 | 1.5 | C |
2 | 8 | 1.0 | B |
Convenience functions
(api/select-rows DS (comp (partial re-matches #"^B") str :V4))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 8 | 1.0 | B |
(api/select-rows DS (comp #(<= 3 % 5) :V2))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
(api/select-rows DS (comp #(< 3 % 5) :V2))
_unnamed [1 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
2 | 4 | 0.5 | A |
(api/select-rows DS (comp #(<= 3 % 5) :V2))
_unnamed [3 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
Last example skipped.
Sort rows by column
(api/order-by DS :V3)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 7 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 5 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
Sort rows in decreasing order
(api/order-by DS :V3 :desc)
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 3 | 1.5 | C |
2 | 6 | 1.5 | C |
1 | 9 | 1.5 | C |
1 | 5 | 1.0 | B |
2 | 2 | 1.0 | B |
2 | 8 | 1.0 | B |
1 | 7 | 0.5 | A |
2 | 4 | 0.5 | A |
1 | 1 | 0.5 | A |
Sort rows based on several columns
(api/order-by DS [:V1 :V2] [:asc :desc])
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 9 | 1.5 | C |
1 | 7 | 0.5 | A |
1 | 5 | 1.0 | B |
1 | 3 | 1.5 | C |
1 | 1 | 0.5 | A |
2 | 8 | 1.0 | B |
2 | 6 | 1.5 | C |
2 | 4 | 0.5 | A |
2 | 2 | 1.0 | B |
Select one column using an index (not recommended)
(nth (api/columns DS :as-seq) 2) ;; as column (iterable)
#tech.ml.dataset.column<float64>[9]
:V3
[0.5000, 1.000, 1.500, 0.5000, 1.000, 1.500, 0.5000, 1.000, 1.500, ]
(api/dataset [(nth (api/columns DS :as-seq) 2)])
_unnamed [9 1]:
:V3 |
---|
0.5 |
1.0 |
1.5 |
0.5 |
1.0 |
1.5 |
0.5 |
1.0 |
1.5 |
Select one column using column name
(api/select-columns DS :V2) ;; as dataset
_unnamed [9 1]:
:V2 |
---|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
(api/select-columns DS [:V2]) ;; as dataset
_unnamed [9 1]:
:V2 |
---|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
(DS :V2) ;; as column (iterable)
#tech.ml.dataset.column<int64>[9]
:V2
[1, 2, 3, 4, 5, 6, 7, 8, 9, ]
Select several columns
(api/select-columns DS [:V2 :V3 :V4])
_unnamed [9 3]:
:V2 | :V3 | :V4 |
---|---|---|
1 | 0.5 | A |
2 | 1.0 | B |
3 | 1.5 | C |
4 | 0.5 | A |
5 | 1.0 | B |
6 | 1.5 | C |
7 | 0.5 | A |
8 | 1.0 | B |
9 | 1.5 | C |
Exclude columns
(api/select-columns DS (complement #{:V2 :V3 :V4}))
_unnamed [9 1]:
:V1 |
---|
1 |
2 |
1 |
2 |
1 |
2 |
1 |
2 |
1 |
(api/drop-columns DS [:V2 :V3 :V4])
_unnamed [9 1]:
:V1 |
---|
1 |
2 |
1 |
2 |
1 |
2 |
1 |
2 |
1 |
Other seletions
(->> (range 1 3)
(map (comp keyword (partial format "V%d")))
(api/select-columns DS))
_unnamed [9 2]:
:V1 | :V2 |
---|---|
1 | 1 |
2 | 2 |
1 | 3 |
2 | 4 |
1 | 5 |
2 | 6 |
1 | 7 |
2 | 8 |
1 | 9 |
(api/reorder-columns DS :V4)
_unnamed [9 4]:
:V4 | :V1 | :V2 | :V3 |
---|---|---|---|
A | 1 | 1 | 0.5 |
B | 2 | 2 | 1.0 |
C | 1 | 3 | 1.5 |
A | 2 | 4 | 0.5 |
B | 1 | 5 | 1.0 |
C | 2 | 6 | 1.5 |
A | 1 | 7 | 0.5 |
B | 2 | 8 | 1.0 |
C | 1 | 9 | 1.5 |
(api/select-columns DS #(clojure.string/starts-with? (name %) "V"))
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
2 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
2 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
2 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
2 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
(api/select-columns DS #(clojure.string/ends-with? (name %) "3"))
_unnamed [9 1]:
:V3 |
---|
0.5 |
1.0 |
1.5 |
0.5 |
1.0 |
1.5 |
0.5 |
1.0 |
1.5 |
(api/select-columns DS #"..2") ;; regex converts to string using `str` function
_unnamed [9 1]:
:V2 |
---|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
(api/select-columns DS #{:V1 "X"})
_unnamed [9 1]:
:V1 |
---|
1 |
2 |
1 |
2 |
1 |
2 |
1 |
2 |
1 |
(api/select-columns DS #(not (clojure.string/starts-with? (name %) "V2")))
_unnamed [9 3]:
:V1 | :V3 | :V4 |
---|---|---|
1 | 0.5 | A |
2 | 1.0 | B |
1 | 1.5 | C |
2 | 0.5 | A |
1 | 1.0 | B |
2 | 1.5 | C |
1 | 0.5 | A |
2 | 1.0 | B |
1 | 1.5 | C |
Summarise one column
(reduce + (DS :V1)) ;; using pure Clojure, as value
13
(api/aggregate-columns DS :V1 dfn/sum) ;; as dataset
_unnamed [1 1]:
:V1 |
---|
13.0 |
(api/aggregate DS {:sumV1 #(dfn/sum (% :V1))})
_unnamed [1 1]:
:sumV1 |
---|
13.0 |
Summarize several columns
(api/aggregate DS [#(dfn/sum (% :V1))
#(dfn/standard-deviation (% :V3))])
_unnamed [1 2]:
:summary-0 | :summary-1 |
---|---|
13.0 | 0.4330127 |
(api/aggregate-columns DS [:V1 :V3] [dfn/sum
dfn/standard-deviation])
_unnamed [1 2]:
:V1 | :V3 |
---|---|
13.0 | 0.4330127 |
Summarise several columns and assign column names
(api/aggregate DS {:sumv1 #(dfn/sum (% :V1))
:sdv3 #(dfn/standard-deviation (% :V3))})
_unnamed [1 2]:
:sumv1 | :sdv3 |
---|---|
13.0 | 0.4330127 |
Summarise a subset of rows
(-> DS
(api/select-rows (range 4))
(api/aggregate-columns :V1 dfn/sum))
_unnamed [1 1]:
:V1 |
---|
6.0 |
(-> DS
(api/first)
(api/select-columns :V3)) ;; select first row from `:V3` column
_unnamed [1 1]:
:V3 |
---|
0.5 |
(-> DS
(api/last)
(api/select-columns :V3)) ;; select last row from `:V3` column
_unnamed [1 1]:
:V3 |
---|
1.5 |
(-> DS
(api/select-rows 4)
(api/select-columns :V3)) ;; select forth row from `:V3` column
_unnamed [1 1]:
:V3 |
---|
1.0 |
(-> DS
(api/select :V3 4)) ;; select forth row from `:V3` column
_unnamed [1 1]:
:V3 |
---|
1.0 |
(-> DS
(api/unique-by :V4)
(api/aggregate api/row-count)) ;; number of unique rows in `:V4` column, as dataset
_unnamed [1 1]:
:summary |
---|
3 |
(-> DS
(api/unique-by :V4)
(api/row-count)) ;; number of unique rows in `:V4` column, as value
3
(-> DS
(api/unique-by)
(api/row-count)) ;; number of unique rows in dataset, as value
9
Modify a column
(api/map-columns DS :V1 [:V1] #(dfn/pow % 2))
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1 | 1 | 0.5 | A |
4 | 2 | 1.0 | B |
1 | 3 | 1.5 | C |
4 | 4 | 0.5 | A |
1 | 5 | 1.0 | B |
4 | 6 | 1.5 | C |
1 | 7 | 0.5 | A |
4 | 8 | 1.0 | B |
1 | 9 | 1.5 | C |
(def DS (api/add-or-replace-column DS :V1 (dfn/pow (DS :V1) 2)))
DS
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1.0 | 1 | 0.5 | A |
4.0 | 2 | 1.0 | B |
1.0 | 3 | 1.5 | C |
4.0 | 4 | 0.5 | A |
1.0 | 5 | 1.0 | B |
4.0 | 6 | 1.5 | C |
1.0 | 7 | 0.5 | A |
4.0 | 8 | 1.0 | B |
1.0 | 9 | 1.5 | C |
Add one column
(api/map-columns DS :v5 [:V1] dfn/log)
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :v5 |
---|---|---|---|---|
1.0 | 1 | 0.5 | A | 0.00000000 |
4.0 | 2 | 1.0 | B | 1.38629436 |
1.0 | 3 | 1.5 | C | 0.00000000 |
4.0 | 4 | 0.5 | A | 1.38629436 |
1.0 | 5 | 1.0 | B | 0.00000000 |
4.0 | 6 | 1.5 | C | 1.38629436 |
1.0 | 7 | 0.5 | A | 0.00000000 |
4.0 | 8 | 1.0 | B | 1.38629436 |
1.0 | 9 | 1.5 | C | 0.00000000 |
(def DS (api/add-or-replace-column DS :v5 (dfn/log (DS :V1))))
DS
_unnamed [9 5]:
:V1 | :V2 | :V3 | :V4 | :v5 |
---|---|---|---|---|
1.0 | 1 | 0.5 | A | 0.00000000 |
4.0 | 2 | 1.0 | B | 1.38629436 |
1.0 | 3 | 1.5 | C | 0.00000000 |
4.0 | 4 | 0.5 | A | 1.38629436 |
1.0 | 5 | 1.0 | B | 0.00000000 |
4.0 | 6 | 1.5 | C | 1.38629436 |
1.0 | 7 | 0.5 | A | 0.00000000 |
4.0 | 8 | 1.0 | B | 1.38629436 |
1.0 | 9 | 1.5 | C | 0.00000000 |
Add several columns
(def DS (api/add-or-replace-columns DS {:v6 (dfn/sqrt (DS :V1))
:v7 "X"}))
DS
_unnamed [9 7]:
:V1 | :V2 | :V3 | :V4 | :v5 | :v6 | :v7 |
---|---|---|---|---|---|---|
1.0 | 1 | 0.5 | A | 0.00000000 | 1.0 | X |
4.0 | 2 | 1.0 | B | 1.38629436 | 2.0 | X |
1.0 | 3 | 1.5 | C | 0.00000000 | 1.0 | X |
4.0 | 4 | 0.5 | A | 1.38629436 | 2.0 | X |
1.0 | 5 | 1.0 | B | 0.00000000 | 1.0 | X |
4.0 | 6 | 1.5 | C | 1.38629436 | 2.0 | X |
1.0 | 7 | 0.5 | A | 0.00000000 | 1.0 | X |
4.0 | 8 | 1.0 | B | 1.38629436 | 2.0 | X |
1.0 | 9 | 1.5 | C | 0.00000000 | 1.0 | X |
Create one column and remove the others
(api/dataset {:v8 (dfn/+ (DS :V3) 1)})
_unnamed [9 1]:
:v8 |
---|
1.5 |
2.0 |
2.5 |
1.5 |
2.0 |
2.5 |
1.5 |
2.0 |
2.5 |
Remove one column
(def DS (api/drop-columns DS :v5))
DS
_unnamed [9 6]:
:V1 | :V2 | :V3 | :V4 | :v6 | :v7 |
---|---|---|---|---|---|
1.0 | 1 | 0.5 | A | 1.0 | X |
4.0 | 2 | 1.0 | B | 2.0 | X |
1.0 | 3 | 1.5 | C | 1.0 | X |
4.0 | 4 | 0.5 | A | 2.0 | X |
1.0 | 5 | 1.0 | B | 1.0 | X |
4.0 | 6 | 1.5 | C | 2.0 | X |
1.0 | 7 | 0.5 | A | 1.0 | X |
4.0 | 8 | 1.0 | B | 2.0 | X |
1.0 | 9 | 1.5 | C | 1.0 | X |
Remove several columns
(def DS (api/drop-columns DS [:v6 :v7]))
DS
_unnamed [9 4]:
:V1 | :V2 | :V3 | :V4 |
---|---|---|---|
1.0 | 1 | 0.5 | A |
4.0 | 2 | 1.0 | B |
1.0 | 3 | 1.5 | C |
4.0 | 4 | 0.5 | A |
1.0 | 5 | 1.0 | B |
4.0 | 6 | 1.5 | C |
1.0 | 7 | 0.5 | A |
4.0 | 8 | 1.0 | B |
1.0 | 9 | 1.5 | C |
Remove columns using a vector of colnames
We use set here.
(def DS (api/select-columns DS (complement #{:V3})))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1.0 | 1 | A |
4.0 | 2 | B |
1.0 | 3 | C |
4.0 | 4 | A |
1.0 | 5 | B |
4.0 | 6 | C |
1.0 | 7 | A |
4.0 | 8 | B |
1.0 | 9 | C |
Replace values for rows matching a condition
(def DS (api/map-columns DS :V2 [:V2] #(if (< % 4.0) 0.0 %)))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1.0 | 0 | A |
4.0 | 0 | B |
1.0 | 0 | C |
4.0 | 4 | A |
1.0 | 5 | B |
4.0 | 6 | C |
1.0 | 7 | A |
4.0 | 8 | B |
1.0 | 9 | C |
By group
(-> DS
(api/group-by [:V4])
(api/aggregate {:sumV2 #(dfn/sum (% :V2))}))
_unnamed [3 2]:
:V4 | :sumV2 |
---|---|
B | 13.0 |
C | 15.0 |
A | 11.0 |
By several groups
(-> DS
(api/group-by [:V4 :V1])
(api/aggregate {:sumV2 #(dfn/sum (% :V2))}))
_unnamed [6 3]:
:V4 | :V1 | :sumV2 |
---|---|---|
A | 4.000 | 4.0 |
A | 1.000 | 7.0 |
B | 1.000 | 5.0 |
B | 4.000 | 8.0 |
C | 4.000 | 6.0 |
C | 1.000 | 9.0 |
Calling function in by
(-> DS
(api/group-by (fn [row]
(clojure.string/lower-case (:V4 row))))
(api/aggregate {:sumV1 #(dfn/sum (% :V1))}))
_unnamed [3 2]:
:$group-name | :sumV1 |
---|---|
a | 6.0 |
b | 9.0 |
c | 6.0 |
Assigning column name in by
(-> DS
(api/group-by (fn [row]
{:abc (clojure.string/lower-case (:V4 row))}))
(api/aggregate {:sumV1 #(dfn/sum (% :V1))}))
_unnamed [3 2]:
:abc | :sumV1 |
---|---|
a | 6.0 |
b | 9.0 |
c | 6.0 |
(-> DS
(api/group-by (fn [row]
(clojure.string/lower-case (:V4 row))))
(api/aggregate {:sumV1 #(dfn/sum (% :V1))} {:add-group-as-column :abc}))
_unnamed [3 2]:
:abc | :sumV1 |
---|---|
a | 6.0 |
b | 9.0 |
c | 6.0 |
Using a condition in by
(-> DS
(api/group-by #(= (:V4 %) "A"))
(api/aggregate #(dfn/sum (% :V1))))
_unnamed [2 2]:
:$group-name | :summary |
---|---|
false | 15.0 |
true | 6.0 |
By on a subset of rows
(-> DS
(api/select-rows (range 5))
(api/group-by :V4)
(api/aggregate {:sumV1 #(dfn/sum (% :V1))}))
_unnamed [3 2]:
:$group-name | :sumV1 |
---|---|
A | 5.0 |
B | 5.0 |
C | 1.0 |
Count number of observations for each group
(-> DS
(api/group-by :V4)
(api/aggregate api/row-count))
_unnamed [3 2]:
:$group-name | :summary |
---|---|
A | 3 |
B | 3 |
C | 3 |
Add a column with number of observations for each group
(-> DS
(api/group-by [:V1])
(api/add-or-replace-column :n api/row-count)
(api/ungroup))
_unnamed [9 4]:
:V1 | :V2 | :V4 | :n |
---|---|---|---|
4.0 | 0 | B | 4 |
4.0 | 4 | A | 4 |
4.0 | 6 | C | 4 |
4.0 | 8 | B | 4 |
1.0 | 0 | A | 5 |
1.0 | 0 | C | 5 |
1.0 | 5 | B | 5 |
1.0 | 7 | A | 5 |
1.0 | 9 | C | 5 |
Retrieve the first/last/nth observation for each group
(-> DS
(api/group-by [:V4])
(api/aggregate-columns :V2 first))
_unnamed [3 2]:
:V4 | :V2 |
---|---|
B | 0 |
C | 0 |
A | 0 |
(-> DS
(api/group-by [:V4])
(api/aggregate-columns :V2 last))
_unnamed [3 2]:
:V4 | :V2 |
---|---|
B | 8 |
C | 9 |
A | 7 |
(-> DS
(api/group-by [:V4])
(api/aggregate-columns :V2 #(nth % 1)))
_unnamed [3 2]:
:V4 | :V2 |
---|---|
B | 5 |
C | 6 |
A | 4 |
Summarise all the columns
;; custom max function which works on every type
(api/aggregate-columns DS :all (fn [col] (first (sort #(compare %2 %1) col))))
_unnamed [1 3]:
:V1 | :V2 | :V4 |
---|---|---|
4.0 | 9 | C |
Summarise several columns
(api/aggregate-columns DS [:V1 :V2] dfn/mean)
_unnamed [1 2]:
:V1 | :V2 |
---|---|
2.33333333 | 4.33333333 |
Summarise several columns by group
(-> DS
(api/group-by [:V4])
(api/aggregate-columns [:V1 :V2] dfn/mean))
_unnamed [3 3]:
:V4 | :V1 | :V2 |
---|---|---|
B | 3.0 | 4.33333333 |
C | 2.0 | 5.00000000 |
A | 2.0 | 3.66666667 |
Summarise with more than one function by group
(-> DS
(api/group-by [:V4])
(api/aggregate-columns [:V1 :V2] (fn [col]
{:sum (dfn/sum col)
:mean (dfn/mean col)})))
_unnamed [3 5]:
:V4 | :V1-sum | :V1-mean | :V2-sum | :V2-mean |
---|---|---|---|---|
B | 9.0 | 3.0 | 13.0 | 4.33333333 |
C | 6.0 | 2.0 | 15.0 | 5.00000000 |
A | 6.0 | 2.0 | 11.0 | 3.66666667 |
Summarise using a condition
(-> DS
(api/select-columns :type/numerical)
(api/aggregate-columns :all dfn/mean))
_unnamed [1 2]:
:V1 | :V2 |
---|---|
2.33333333 | 4.33333333 |
Modify all the columns
(api/update-columns DS :all reverse)
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1.000 | 9 | C |
4.000 | 8 | B |
1.000 | 7 | A |
4.000 | 6 | C |
1.000 | 5 | B |
4.000 | 4 | A |
1.000 | 0 | C |
4.000 | 0 | B |
1.000 | 0 | A |
Modify several columns (dropping the others)
(-> DS
(api/select-columns [:V1 :V2])
(api/update-columns :all dfn/sqrt))
_unnamed [9 2]:
:V1 | :V2 |
---|---|
1.0 | 0.00000000 |
2.0 | 0.00000000 |
1.0 | 0.00000000 |
2.0 | 2.00000000 |
1.0 | 2.23606798 |
2.0 | 2.44948974 |
1.0 | 2.64575131 |
2.0 | 2.82842712 |
1.0 | 3.00000000 |
(-> DS
(api/select-columns (complement #{:V4}))
(api/update-columns :all dfn/exp))
_unnamed [9 2]:
:V1 | :V2 |
---|---|
2.71828183 | 1.00000000 |
54.59815003 | 1.00000000 |
2.71828183 | 1.00000000 |
54.59815003 | 54.59815003 |
2.71828183 | 148.41315910 |
54.59815003 | 403.42879349 |
2.71828183 | 1096.63315843 |
54.59815003 | 2980.95798704 |
2.71828183 | 8103.08392758 |
Modify several columns (keeping the others)
(def DS (api/update-columns DS [:V1 :V2] dfn/sqrt))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1.0 | 0.00000000 | A |
2.0 | 0.00000000 | B |
1.0 | 0.00000000 | C |
2.0 | 2.00000000 | A |
1.0 | 2.23606798 | B |
2.0 | 2.44948974 | C |
1.0 | 2.64575131 | A |
2.0 | 2.82842712 | B |
1.0 | 3.00000000 | C |
(def DS (api/update-columns DS (complement #{:V4}) #(dfn/pow % 2)))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1.0 | 0.0 | A |
4.0 | 0.0 | B |
1.0 | 0.0 | C |
4.0 | 4.0 | A |
1.0 | 5.0 | B |
4.0 | 6.0 | C |
1.0 | 7.0 | A |
4.0 | 8.0 | B |
1.0 | 9.0 | C |
Modify columns using a condition (dropping the others)
(-> DS
(api/select-columns :type/numerical)
(api/update-columns :all #(dfn/- % 1)))
_unnamed [9 2]:
:V1 | :V2 |
---|---|
0.0 | -1.0 |
3.0 | -1.0 |
0.0 | -1.0 |
3.0 | 3.0 |
0.0 | 4.0 |
3.0 | 5.0 |
0.0 | 6.0 |
3.0 | 7.0 |
0.0 | 8.0 |
Modify columns using a condition (keeping the others)
(def DS (api/convert-types DS :type/numerical :int32))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 0 | A |
4 | 0 | B |
1 | 0 | C |
4 | 4 | A |
1 | 5 | B |
4 | 5 | C |
1 | 7 | A |
4 | 8 | B |
1 | 9 | C |
Use a complex expression
(-> DS
(api/group-by [:V4])
(api/head 2)
(api/add-or-replace-column :V2 "X")
(api/ungroup))
_unnamed [6 3]:
:V1 | :V2 | :V4 |
---|---|---|
4 | X | B |
1 | X | B |
1 | X | C |
4 | X | C |
1 | X | A |
4 | X | A |
Use multiple expressions
(api/dataset (let [x (dfn/+ (DS :V1) (dfn/sum (DS :V2)))]
(println (seq (DS :V1)))
(println (api/info (api/select-columns DS :V1)))
{:A (range 1 (inc (api/row-count DS)))
:B x}))
(1 4 1 4 1 4 1 4 1) _unnamed: descriptive-stats [1 9]:
:col-name | :datatype | :n-valid | :n-missing | :min | :mean | :max | :standard-deviation | :skew |
---|---|---|---|---|---|---|---|---|
:V1 | :int32 | 9 | 0 | 1.0 | 2.33333333 | 4.0 | 1.58113883 | 0.27105237 |
_unnamed [9 2]:
:A | :B |
---|---|
1 | 39.0 |
2 | 42.0 |
3 | 39.0 |
4 | 42.0 |
5 | 39.0 |
6 | 42.0 |
7 | 39.0 |
8 | 42.0 |
9 | 39.0 |
Expression chaining using >
(-> DS
(api/group-by [:V4])
(api/aggregate {:V1sum #(dfn/sum (% :V1))})
(api/select-rows #(> (:V1sum %) 5) ))
_unnamed [3 2]:
:V4 | :V1sum |
---|---|
B | 9.0 |
C | 6.0 |
A | 6.0 |
(-> DS
(api/group-by [:V4])
(api/aggregate {:V1sum #(dfn/sum (% :V1))})
(api/order-by :V1sum :desc))
_unnamed [3 2]:
:V4 | :V1sum |
---|---|
B | 9.0 |
C | 6.0 |
A | 6.0 |
Set the key/index (order)
(def DS (api/order-by DS :V4))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 0 | A |
4 | 4 | A |
1 | 7 | A |
4 | 0 | B |
1 | 5 | B |
4 | 8 | B |
1 | 0 | C |
4 | 5 | C |
1 | 9 | C |
Select the matching rows
(api/select-rows DS #(= (:V4 %) "A"))
_unnamed [3 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 0 | A |
4 | 4 | A |
1 | 7 | A |
(api/select-rows DS (comp #{"A" "C"} :V4))
_unnamed [6 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 0 | A |
4 | 4 | A |
1 | 7 | A |
1 | 0 | C |
4 | 5 | C |
1 | 9 | C |
Select the first matching row
(-> DS
(api/select-rows #(= (:V4 %) "B"))
(api/first))
_unnamed [1 3]:
:V1 | :V2 | :V4 |
---|---|---|
4 | 0 | B |
(-> DS
(api/unique-by :V4)
(api/select-rows (comp #{"B" "C"} :V4)))
_unnamed [2 3]:
:V1 | :V2 | :V4 |
---|---|---|
4 | 0 | B |
1 | 0 | C |
Select the last matching row
(-> DS
(api/select-rows #(= (:V4 %) "A"))
(api/last))
_unnamed [1 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 7 | A |
Nomatch argument
(api/select-rows DS (comp #{"A" "D"} :V4))
_unnamed [3 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 0 | A |
4 | 4 | A |
1 | 7 | A |
Apply a function on the matching rows
(-> DS
(api/select-rows (comp #{"A" "C"} :V4))
(api/aggregate-columns :V1 (fn [col]
{:sum (dfn/sum col)})))
_unnamed [1 1]:
:V1-sum |
---|
12.0 |
Modify values for matching rows
(def DS (-> DS
(api/map-columns :V1 [:V1 :V4] #(if (= %2 "A") 0 %1))
(api/order-by :V4)))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
0 | 0 | A |
0 | 4 | A |
0 | 7 | A |
4 | 0 | B |
1 | 5 | B |
4 | 8 | B |
1 | 0 | C |
4 | 5 | C |
1 | 9 | C |
Use keys in by
(-> DS
(api/select-rows (comp (complement #{"B"}) :V4))
(api/group-by [:V4])
(api/aggregate-columns :V1 dfn/sum))
_unnamed [2 2]:
:V4 | :V1 |
---|---|
C | 6.0 |
A | 0.0 |
Set keys/indices for multiple columns (ordered)
(api/order-by DS [:V4 :V1])
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
0 | 0 | A |
0 | 4 | A |
0 | 7 | A |
1 | 5 | B |
4 | 0 | B |
4 | 8 | B |
1 | 0 | C |
1 | 9 | C |
4 | 5 | C |
Subset using multiple keys/indices
(-> DS
(api/select-rows #(and (= (:V1 %) 1)
(= (:V4 %) "C"))))
_unnamed [2 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 0 | C |
1 | 9 | C |
(-> DS
(api/select-rows #(and (= (:V1 %) 1)
(#{"B" "C"} (:V4 %)))))
_unnamed [3 3]:
:V1 | :V2 | :V4 |
---|---|---|
1 | 5 | B |
1 | 0 | C |
1 | 9 | C |
(-> DS
(api/select-rows #(and (= (:V1 %) 1)
(#{"B" "C"} (:V4 %))) {:result-type :as-indexes}))
(4 6 8)
Replace values
There is no mutating operations tech.ml.dataset
or easy way to set value.
(def DS (api/update-columns DS :V2 #(map-indexed (fn [idx v]
(if (zero? idx) 3 v)) %)))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
0 | 3 | A |
0 | 4 | A |
0 | 7 | A |
4 | 0 | B |
1 | 5 | B |
4 | 8 | B |
1 | 0 | C |
4 | 5 | C |
1 | 9 | C |
Reorder rows
(def DS (api/order-by DS [:V4 :V1] [:asc :desc]))
DS
_unnamed [9 3]:
:V1 | :V2 | :V4 |
---|---|---|
0 | 3 | A |
0 | 4 | A |
0 | 7 | A |
4 | 0 | B |
4 | 8 | B |
1 | 5 | B |
4 | 5 | C |
1 | 0 | C |
1 | 9 | C |
Modify colnames
(def DS (api/rename-columns DS {:V2 "v2"}))
DS
_unnamed [9 3]:
:V1 | v2 | :V4 |
---|---|---|
0 | 3 | A |
0 | 4 | A |
0 | 7 | A |
4 | 0 | B |
4 | 8 | B |
1 | 5 | B |
4 | 5 | C |
1 | 0 | C |
1 | 9 | C |
(def DS (api/rename-columns DS {"v2" :V2})) ;; revert back
Reorder columns
(def DS (api/reorder-columns DS :V4 :V1 :V2))
DS
_unnamed [9 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
Select first/last/… row by group
(-> DS
(api/group-by :V4)
(api/first)
(api/ungroup))
_unnamed [3 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
B | 4 | 0 |
C | 4 | 5 |
(-> DS
(api/group-by :V4)
(api/select-rows [0 2])
(api/ungroup))
_unnamed [6 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 7 |
B | 4 | 0 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 9 |
(-> DS
(api/group-by :V4)
(api/tail 2)
(api/ungroup))
_unnamed [6 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 8 |
B | 1 | 5 |
C | 1 | 0 |
C | 1 | 9 |
Select rows using a nested query
(-> DS
(api/group-by :V4)
(api/order-by :V2)
(api/first)
(api/ungroup))
_unnamed [3 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
B | 4 | 0 |
C | 1 | 0 |
Add a group counter column
(-> DS
(api/group-by [:V4 :V1])
(api/ungroup {:add-group-id-as-column :Grp}))
_unnamed [9 4]:
:Grp | :V4 | :V1 | :V2 |
---|---|---|---|
0 | A | 0 | 3 |
0 | A | 0 | 4 |
0 | A | 0 | 7 |
1 | B | 1 | 5 |
2 | C | 1 | 0 |
2 | C | 1 | 9 |
3 | B | 4 | 0 |
3 | B | 4 | 8 |
4 | C | 4 | 5 |
Get row number of first (and last) observation by group
(-> DS
(api/add-or-replace-column :row-id (range))
(api/select-columns [:V4 :row-id])
(api/group-by :V4)
(api/ungroup))
_unnamed [9 2]:
:V4 | :row-id |
---|---|
A | 0 |
A | 1 |
A | 2 |
B | 3 |
B | 4 |
B | 5 |
C | 6 |
C | 7 |
C | 8 |
(-> DS
(api/add-or-replace-column :row-id (range))
(api/select-columns [:V4 :row-id])
(api/group-by :V4)
(api/first)
(api/ungroup))
_unnamed [3 2]:
:V4 | :row-id |
---|---|
A | 0 |
B | 3 |
C | 6 |
(-> DS
(api/add-or-replace-column :row-id (range))
(api/select-columns [:V4 :row-id])
(api/group-by :V4)
(api/select-rows [0 2])
(api/ungroup))
_unnamed [6 2]:
:V4 | :row-id |
---|---|
A | 0 |
A | 2 |
B | 3 |
B | 5 |
C | 6 |
C | 8 |
Handle list-columns by group
(-> DS
(api/select-columns [:V1 :V4])
(api/fold-by :V4))
_unnamed [3 2]:
:V4 | :V1 |
---|---|
B | [4 4 1] |
C | [4 1 1] |
A | [0 0 0] |
(-> DS
(api/group-by :V4)
(api/unmark-group))
_unnamed [3 3]:
:name | :group-id | :data |
---|---|---|
A | 0 | Group: A [3 3]: |
B | 1 | Group: B [3 3]: |
C | 2 | Group: C [3 3]: |
Grouping sets (multiple by at once)
Not available.
Write data to a csv file
(api/write-csv! DS "DF.csv")
nil
Write data to a tab-delimited file
(api/write-csv! DS "DF.txt" {:separator \tab})
nil
or
(api/write-csv! DS "DF.tsv")
nil
Read a csv / tab-delimited file
(api/dataset "DF.csv" {:key-fn keyword})
DF.csv [9 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
(api/dataset "DF.txt" {:key-fn keyword})
DF.txt [9 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
(api/dataset "DF.tsv" {:key-fn keyword})
DF.tsv [9 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
Read a csv file selecting / droping columns
(api/dataset "DF.csv" {:key-fn keyword
:column-whitelist ["V1" "V4"]})
DF.csv [9 2]:
:V1 | :V4 |
---|---|
0 | A |
0 | A |
0 | A |
4 | B |
4 | B |
1 | B |
4 | C |
1 | C |
1 | C |
(api/dataset "DF.csv" {:key-fn keyword
:column-blacklist ["V4"]})
DF.csv [9 2]:
:V1 | :V2 |
---|---|
0 | 3 |
0 | 4 |
0 | 7 |
4 | 0 |
4 | 8 |
1 | 5 |
4 | 5 |
1 | 0 |
1 | 9 |
Read and rbind several files
(apply api/concat (map api/dataset ["DF.csv" "DF.csv"]))
null [18 3]:
V4 | V1 | V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
Melt data (from wide to long)
(def mDS (api/pivot->longer DS [:V1 :V2] {:target-columns :variable
:value-column-name :value}))
mDS
_unnamed [18 3]:
:V4 | :variable | :value |
---|---|---|
A | :V1 | 0 |
A | :V1 | 0 |
A | :V1 | 0 |
B | :V1 | 4 |
B | :V1 | 4 |
B | :V1 | 1 |
C | :V1 | 4 |
C | :V1 | 1 |
C | :V1 | 1 |
A | :V2 | 3 |
A | :V2 | 4 |
A | :V2 | 7 |
B | :V2 | 0 |
B | :V2 | 8 |
B | :V2 | 5 |
C | :V2 | 5 |
C | :V2 | 0 |
C | :V2 | 9 |
Cast data (from long to wide)
(-> mDS
(api/pivot->wider :variable :value {:fold-fn vec})
(api/update-columns [:V1 :V2] (partial map count)))
_unnamed [3 3]:
:V4 | V1 | V2 |
---|---|---|
B | [4 4 1] | [0 8 5] |
A | [0 0 0] | [3 4 7] |
C | [4 1 1] | [5 0 9] |
(-> mDS
(api/pivot->wider :variable :value {:fold-fn vec})
(api/update-columns [:V1 :V2] (partial map dfn/sum)))
_unnamed [3 3]:
:V4 | V1 | V2 |
---|---|---|
B | [4 4 1] | [0 8 5] |
A | [0 0 0] | [3 4 7] |
C | [4 1 1] | [5 0 9] |
(-> mDS
(api/map-columns :value #(> % 5))
(api/pivot->wider :value :variable {:fold-fn vec})
(api/update-columns [true false] (partial map #(if (sequential? %) (count %) 1))))
_unnamed [3 3]:
:V4 | true | false |
---|---|---|
C | :V2 | [:V1 :V1 :V1 :V2 :V2] |
A | :V2 | [:V1 :V1 :V1 :V2 :V2] |
B | :V2 | [:V1 :V1 :V1 :V2 :V2] |
Split
(api/group-by DS :V4 {:result-type :as-map})
{"A" Group: A [3 3]:
:V4 | :V1 | :V2 |
---|---|---|
A | 0 | 3 |
A | 0 | 4 |
A | 0 | 7 |
, "B" Group: B [3 3]:
:V4 | :V1 | :V2 |
---|---|---|
B | 4 | 0 |
B | 4 | 8 |
B | 1 | 5 |
, "C" Group: C [3 3]:
:V4 | :V1 | :V2 |
---|---|---|
C | 4 | 5 |
C | 1 | 0 |
C | 1 | 9 |
}
Split and transpose a vector/column
(-> {:a ["A:a" "B:b" "C:c"]}
(api/dataset)
(api/separate-column :a [:V1 :V2] ":"))
_unnamed [3 2]:
:V1 | :V2 |
---|---|
A | a |
B | b |
C | c |
Skipped
(def x (api/dataset {"Id" ["A" "B" "C" "C"]
"X1" [1 3 5 7]
"XY" ["x2" "x4" "x6" "x8"]}))
(def y (api/dataset {"Id" ["A" "B" "B" "D"]
"Y1" [1 3 5 7]
"XY" ["y1" "y3" "y5" "y7"]}))
x y
_unnamed [4 3]:
Id | X1 | XY |
---|---|---|
A | 1 | x2 |
B | 3 | x4 |
C | 5 | x6 |
C | 7 | x8 |
_unnamed [4 3]:
Id | Y1 | XY |
---|---|---|
A | 1 | y1 |
B | 3 | y3 |
B | 5 | y5 |
D | 7 | y7 |
Join matching rows from y to x
(api/left-join x y "Id")
left-outer-join [5 6]:
Id | X1 | XY | right.Id | Y1 | right.XY |
---|---|---|---|---|---|
A | 1 | x2 | A | 1 | y1 |
B | 3 | x4 | B | 3 | y3 |
B | 3 | x4 | B | 5 | y5 |
C | 5 | x6 | |||
C | 7 | x8 |
Join matching rows from x to y
(api/right-join x y "Id")
right-outer-join [4 6]:
Id | X1 | XY | right.Id | Y1 | right.XY |
---|---|---|---|---|---|
A | 1 | x2 | A | 1 | y1 |
B | 3 | x4 | B | 3 | y3 |
B | 3 | x4 | B | 5 | y5 |
D | 7 | y7 |
Join matching rows from both x and y
(api/inner-join x y "Id")
inner-join [3 5]:
Id | X1 | XY | Y1 | right.XY |
---|---|---|---|---|
A | 1 | x2 | 1 | y1 |
B | 3 | x4 | 3 | y3 |
B | 3 | x4 | 5 | y5 |
Join keeping all the rows
(api/full-join x y "Id")
full-join [6 6]:
Id | X1 | XY | right.Id | Y1 | right.XY |
---|---|---|---|---|---|
A | 1 | x2 | A | 1 | y1 |
B | 3 | x4 | B | 3 | y3 |
B | 3 | x4 | B | 5 | y5 |
C | 5 | x6 | |||
C | 7 | x8 | |||
D | 7 | y7 |
Return rows from x matching y
(api/semi-join x y "Id")
semi-join [2 3]:
Id | X1 | XY |
---|---|---|
A | 1 | x2 |
B | 3 | x4 |
Return rows from x not matching y
(api/anti-join x y "Id")
anti-join [2 3]:
Id | X1 | XY |
---|---|---|
C | 5 | x6 |
C | 7 | x8 |
Select columns while joining
(api/right-join (api/select-columns x ["Id" "X1"])
(api/select-columns y ["Id" "XY"])
"Id")
right-outer-join [4 4]:
Id | X1 | right.Id | XY |
---|---|---|---|
A | 1 | A | y1 |
B | 3 | B | y3 |
B | 3 | B | y5 |
D | y7 |
(api/right-join (api/select-columns x ["Id" "XY"])
(api/select-columns y ["Id" "XY"])
"Id")
right-outer-join [4 4]:
Id | XY | right.Id | right.XY |
---|---|---|---|
A | x2 | A | y1 |
B | x4 | B | y3 |
B | x4 | B | y5 |
D | y7 |
Aggregate columns while joining
(-> y
(api/group-by ["Id"])
(api/aggregate {"sumY1" #(dfn/sum (% "Y1"))})
(api/right-join x "Id")
(api/add-or-replace-column "X1Y1" (fn [ds] (dfn/* (ds "sumY1")
(ds "X1"))))
(api/select-columns ["right.Id" "X1Y1"]))
right-outer-join [4 2]:
right.Id | X1Y1 |
---|---|
A | 1.0 |
B | 24.0 |
C | NaN |
C | NaN |
Update columns while joining
(-> x
(api/select-columns ["Id" "X1"])
(api/map-columns "SqX1" "X1" (fn [x] (* x x)))
(api/right-join y "Id")
(api/drop-columns ["X1" "Id"]))
right-outer-join [4 4]:
SqX1 | right.Id | Y1 | XY |
---|---|---|---|
1 | A | 1 | y1 |
9 | B | 3 | y3 |
9 | B | 5 | y5 |
D | 7 | y7 |
Adds a list column with rows from y matching x (nest-join)
(-> (api/left-join x y "Id")
(api/drop-columns ["right.Id"])
(api/fold-by (api/column-names x)))
_unnamed [4 5]:
XY | X1 | Id | Y1 | right.XY |
---|---|---|---|---|
x4 | 3 | B | [3 5] | ["y3" "y5"] |
x6 | 5 | C | [] | [] |
x8 | 7 | C | [] | [] |
x2 | 1 | A | [1] | ["y1"] |
Some joins are skipped
Cross join
(def cjds (api/dataset {:V1 [[2 1 1]]
:V2 [[3 2]]}))
cjds
_unnamed [1 2]:
:V1 | :V2 |
---|---|
[2 1 1] | [3 2] |
(reduce #(api/unroll %1 %2) cjds (api/column-names cjds))
_unnamed [6 2]:
:V1 | :V2 |
---|---|
2 | 3 |
2 | 2 |
1 | 3 |
1 | 2 |
1 | 3 |
1 | 2 |
(-> (reduce #(api/unroll %1 %2) cjds (api/column-names cjds))
(api/unique-by))
_unnamed [4 2]:
:V1 | :V2 |
---|---|
2 | 3 |
2 | 2 |
1 | 3 |
1 | 2 |
(def x (api/dataset {:V1 [1 2 3]}))
(def y (api/dataset {:V1 [4 5 6]}))
(def z (api/dataset {:V1 [7 8 9]
:V2 [0 0 0]}))
x y z
_unnamed [3 1]:
:V1 |
---|
1 |
2 |
3 |
_unnamed [3 1]:
:V1 |
---|
4 |
5 |
6 |
_unnamed [3 2]:
:V1 | :V2 |
---|---|
7 | 0 |
8 | 0 |
9 | 0 |
Bind rows
(api/bind x y)
null [6 1]:
:V1 |
---|
1 |
2 |
3 |
4 |
5 |
6 |
(api/bind x z)
null [6 2]:
:V1 | :V2 |
---|---|
1 | |
2 | |
3 | |
7 | 0 |
8 | 0 |
9 | 0 |
Bind rows using a list
(->> [x y]
(map-indexed #(api/add-or-replace-column %2 :id (repeat %1)))
(apply api/bind))
null [6 2]:
:V1 | :id |
---|---|
1 | 0 |
2 | 0 |
3 | 0 |
4 | 1 |
5 | 1 |
6 | 1 |
Bind columns
(api/append x y)
_unnamed [3 2]:
:V1 | :V1 |
---|---|
1 | 4 |
2 | 5 |
3 | 6 |
(def x (api/dataset {:V1 [1 2 2 3 3]}))
(def y (api/dataset {:V1 [2 2 3 4 4]}))
x y
_unnamed [5 1]:
:V1 |
---|
1 |
2 |
2 |
3 |
3 |
_unnamed [5 1]:
:V1 |
---|
2 |
2 |
3 |
4 |
4 |
Intersection
(api/intersect x y)
intersection [2 1]:
:V1 |
---|
2 |
3 |
Difference
(api/difference x y)
difference [1 1]:
:V1 |
---|
1 |
Union
(api/union x y)
union [4 1]:
:V1 |
---|
1 |
2 |
3 |
4 |
(api/concat x y)
null [10 1]:
:V1 |
---|
1 |
2 |
2 |
3 |
3 |
2 |
2 |
3 |
4 |
4 |
Equality not implemented
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close