Liking cljdoc? Tell your friends :D

Interval maps and sets

Clojars

Cljdoc

CircleCI

Compatible with Clojurescript.

Storing intervals in sorted maps and sets. Commonly known as interval trees.

Opens many data science applications, from geometry to genomic analysis.

Advantages over common implementations and other languages:

  • First class in Clojure, leverages sorted maps and sets
  • Hence, persistent and immutable
  • Open, adding/removing intervals do not recompute the whole tree
  • Complex and convenient querying, see music example below

Usage

This is an overview.

The full API is available in Cljdoc.

First, we shall explore interval maps as they are more interesting. They map intervals to sets of values, such as intervals of seconds to one or several musical notes.

Then, we shall quickly see similar concepts for interval sets. They record intervals in an "on/off" fashion, without values, such as keeping track of when was a temperature above a threshold.

Requiring namespaces:

(require '[helins.interval.map :as imap]
         '[helins.interval.set :as iset])

Glossary

Following terms are used in the examples:

NameDescription
IntervalA tuple [Point Point] designating an inclusive interval
PointAn arbitrary numerical value (seconds, centimeters, inches, ...) or nil for infinity
SegmentA tuple [Interval ValueSet]
ValueSetA set of arbitrary values

Defining an interval map

Following examples are available in the helins.interval.example.music namespace to test at the REPL.

Let us define our short piece of music by starting from an empty interval map and then "marking" intervals with musical notes. Assuming intervals are expressed in seconds:

(def music
     (-> imap/empty
         ;; Broken C minor chord.
         (imap/mark  0  8 :c)
         (imap/mark  3  8 :e-flat)
         (imap/mark  5  8 :g)
         ;; After a pause, G is repeated.
         (imap/mark 10 11 :g)))

Querying a point an interval map

A precise point is queried using the standard get function which returns a ValueSet.

;; What notes are played at second 4?
;;
(= (get music
        4)

   #{:c
     :e-flat})


;; Nothing is being played at second 9.
;;
(nil? (get music
           9))

Standard find returns the interval as well:

(= (find music
         4)
   
   [[3 5] #{:c
            :e-flat}])

Querying segments in an interval map

Converting a map to a sequence shows all Segments.

We can see exactly how notes are played, when they start, end, how they overlap:

(= (seq music)

   (list [[0 3]   #{:c}]
         [[3 5]   #{:c
                    :e-flat}]
         [[5 8]   #{:c
                    :e-flat
                    :g}]
         [[10 11] #{:g}]))

It is often useful to query Segments for parts of an interval map. This is done by using standard subseq since an interval map is a Clojure sorted map.

;; What was happening in-between second 2 and second 4?
;;
;; Are returned only relevant segments.
;;
(= (subseq music
           >= 2
           <= 4)

   (list [[0 3] #{:c}]
         [[3 5] #{:c
                  :e-flat}]))

Working with segments

Segments are easy to work with and can offer many insights. For instance:

;; Reconstructs exactly what notes are played at what intervals.
;;
;; G has two intervals. Indeed, it is played during the broken chord and
;; on its own a bit later, so:
;;
(= (imap/by-value (seq music))
  
   {:c      #{[ 0  8]}
    :e-flat #{[ 3  8]}
    :g      #{[ 5  8]
              [10 11]}})


;; What notes are being played, in total?
;;
(= (imap/union (seq music))
   
   #{:c
     :e-flat
     :g})

Erasing intervals in interval maps

Values can be selectively erased.

For instance, our C note is being played throughout the whole broken chord (from second 0 to second 8). We could start it later by erasing its beginning:

(def music-2
     (imap/erase music
                 0
                 4
                 :c))


(nil? (get music-2
           1))


(= (get music-2
        4)

   #{:c
     :e-flat})

Erasing is very flexible and permissive:

;; Nothing changes, :whatever is not even recorded.
;;
(= music
   (imap/erase music
               0
               56456
               :whatever))

Working with interval sets

Following examples are available in the helins.interval.example.temperature namespace.

Interval sets are like interval maps but without values. They are a lot simpler and are meant to record a single phenomenon.

Supposing we recorded temperature above a certain threshold, for a day:

(def too-hot
     (-> iset/empty
         (iset/mark 11 13)
         (iset/mark 14 16)
         (iset/erase 15 20)))


;; Was it too hot at noon?
;; Yes, an interval proofs that.
;;
(= (get too-hot
        12)
   [11 13])


;; Was it too hot at hour 16?
;; No interval found, hence no.
;;
(nil? (get too-hot
           16))


;; Segments:
;;
(= (seq too-hot)

   (list [11 13]
         [14 15]))


;; What happened before noon?
;;
(= (subseq too-hot
           >= 0
           <= 12)
   (list [11 13]))

Open intervals and infinity

Infinity is designated by nil, meaning an absence of boundary:

;; Interval from 5 to +Infinity
;;
[5 nil]


;; Interval from -Infinity to 5
;;
[nil 5]



;; Infinity
;;
[nil nil]

Hence, handling infinity happens naturally:

;; An interval set with an interval from 5 to +Infinity.
;;
(def infinite-from-5
     (iset/mark iset/empty
                5
                nil))


;; Is there something at this very high point?
;; Yes, a segment towards infinity proves that.
;;
(= (get infinite-from-5
        78456544)

   [5 nil])

Running tests

On the JVM, using Kaocha:

$ ./bin/test/jvm/run
$ ./bin/test/jvm/watch

On NodeJS, using Kaocha-CLJS:

$ ./bin/test/node/run
$ ./bin/test/node/watch

In the browser, using Chui:

$ ./bin/test/browser/compile
# Then open ./resources/chui/index.html

# For testing an advanced build
$ ./bin/test/browser/advanced

Development

Starting in Clojure JVM mode, mentioning an additional deps alias (here, a local setup of NREPL):

$ ./bin/dev/clojure :nrepl

Starting in CLJS mode using Shadow-CLJS:

$ ./bin/dev/cljs
# Then open ./resources/public/index.html

License

Copyright © 2020 Adam Helinski

Licensed under the term of the Mozilla Public License 2.0, see LICENSE.

Can you improve this documentation?Edit on GitHub

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

× close