mirror of
https://github.com/simon-brooke/clj-wordcloud.git
synced 2025-07-01 17:38:09 +00:00
Add badge and fix examples
This commit is contained in:
parent
c023e2352f
commit
aaf84eac36
10
README.md
10
README.md
|
@ -1,7 +1,11 @@
|
||||||
# clj-wordcloud [](https://travis-ci.org/tirkarthi/clj-wordcloud)
|
# clj-wordcloud [](https://clojars.org/xtreak/clj-wordcloud) [](https://travis-ci.org/tirkarthi/clj-wordcloud)
|
||||||
|
|
||||||
A simple clojure wrapper around kumo to generate wordcloud
|
A simple clojure wrapper around kumo to generate wordcloud
|
||||||
|
|
||||||
|
## Leiningen
|
||||||
|
|
||||||
|
`[xtreak/clj-wordcloud "0.0.1"]`
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
Given a map of element and the frequency the following image is generated. More examples/examples.clj.
|
Given a map of element and the frequency the following image is generated. More examples/examples.clj.
|
||||||
|
@ -10,7 +14,7 @@ Given a map of element and the frequency the following image is generated. More
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
(ns examples
|
(ns examples
|
||||||
(:require '[clj-wordcloud.core :refer :all]))
|
(:require [clj-wordcloud.core :refer :all]))
|
||||||
|
|
||||||
(let [frequency-map (zipmap (random-words 100) (shuffle (range 300)))
|
(let [frequency-map (zipmap (random-words 100) (shuffle (range 300)))
|
||||||
word-cloud (word-cloud frequency-map
|
word-cloud (word-cloud frequency-map
|
||||||
|
@ -34,7 +38,7 @@ Given a map of element and the frequency the following image is generated. More
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
(ns examples
|
(ns examples
|
||||||
(:require '[clj-wordcloud.core :refer :all]))
|
(:require [clj-wordcloud.core :refer :all]))
|
||||||
|
|
||||||
(let [frequency-map (zipmap (range 100 150) (shuffle (range 300)))
|
(let [frequency-map (zipmap (range 100 150) (shuffle (range 300)))
|
||||||
word-cloud (word-cloud frequency-map
|
word-cloud (word-cloud frequency-map
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 173 KiB After Width: | Height: | Size: 66 KiB |
|
@ -1,5 +1,5 @@
|
||||||
(ns examples
|
(ns examples
|
||||||
(:require '[clj-wordcloud.core :refer :all]))
|
(:require [clj-wordcloud.core :refer :all]))
|
||||||
|
|
||||||
|
|
||||||
(defn random-words
|
(defn random-words
|
||||||
|
|
Loading…
Reference in a new issue