https://github.com/practicalli/clojure-data-science
Techniques and tools for data science with Clojure
https://github.com/practicalli/clojure-data-science
book clojure data-science repl
Last synced: 6 months ago
JSON representation
Techniques and tools for data science with Clojure
- Host: GitHub
- URL: https://github.com/practicalli/clojure-data-science
- Owner: practicalli
- License: cc-by-sa-4.0
- Created: 2020-04-04T14:40:33.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-05-03T23:37:02.000Z (8 months ago)
- Last Synced: 2025-05-25T10:43:14.625Z (8 months ago)
- Topics: book, clojure, data-science, repl
- Language: Makefile
- Homepage: https://practical.li/clojure-data-science
- Size: 9.06 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 86
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Data Science with Clojure
```none
██████╗ ██████╗ █████╗ ██████╗████████╗██╗ ██████╗ █████╗ ██╗ ██╗ ██╗
██╔══██╗██╔══██╗██╔══██╗██╔════╝╚══██╔══╝██║██╔════╝██╔══██╗██║ ██║ ██║
██████╔╝██████╔╝███████║██║ ██║ ██║██║ ███████║██║ ██║ ██║
██╔═══╝ ██╔══██╗██╔══██║██║ ██║ ██║██║ ██╔══██║██║ ██║ ██║
██║ ██║ ██║██║ ██║╚██████╗ ██║ ██║╚██████╗██║ ██║███████╗███████╗██║
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═╝
```
## Book status
[](https://github.com/practicalli/clojure-data-science/actions/workflows/megalinter.yaml)
[](https://github.com/practicalli/clojur-data-sciencee/actions/workflows/publish-book.yaml)
[](https://github.com/practicalli/clojur-data-sciencee/actions/workflows/pages/pages-build-deployment)
[](https://github.com/practicalli/clojure-data-science/issues)
[](https://github.com/practicalli/clojure-data-science/pulls)


## Creative commons license
This work is licensed under a Creative Commons Attribution 4.0 ShareAlike License (including images & stylesheets).
## Overview
A guide to writing services and applications in the context of data science
Introduces libraries and tools useful for creating those applications
Visualization of data
Integration with other data science tooling
Reference to useful mathematical techniques
This guide does not claim to make any attempt to teach you how to be a professional data scientist.

> Alpha stage book - very early concept capturing experiences of data science work from the last 3 commercial engagments by the Practicalli team
A practical guide to data mining, data wrangling and visualisation tools, techniques and libraries. Guides will take a story telling approach to ensure a meaningful context in which design decisions are taken.
A starting point for Clojure developers on their journey into Data Science. As Data Science is such a vast subject area, no one resource can cover such diversity, so this guide will recommend numerous resources that go far deeper into specific areas.
## Target Audience
This guide is aimed at software engineers interested in data science or working as data analysts or with data science teams. No data science experience is expected and the authors of this guide are not data science experts.
Mathematics concepts underpin much of data science and will be explained as they are used, or recommend resources linked to. Mathematics experience should also notbe required.
## Contributing
Issues and pull requests are most welcome. Please detail issues as much as you can. Pull requests are simpler to work with when they are specific to a page or at most a section. The smaller the change the quicker it is to review and merge.
Please [see the detailed contributing section of the book](contributing.html) before raising an issue or pull request
* [Current Issues](https://github.com/practicalli/clojure-data-science/issues)
* [Current pull requests](https://github.com/practicalli/clojure-data-science/pulls)
[Practicalli Clojure CLI Config](clojure/clojure-cli/practicalli-config.md) provides a user level configuration used in this guide and issues and pull requests can also be made there.
By submitting content ideas and corrections you are agreeing they can be used in this workshop under the [Creative Commons Attribution ShareAlike 4.0 International license](https://creativecommons.org/licenses/by-sa/4.0/). Attribution will be detailed via [GitHub contributors](https://github.com/practicalli/clojure-data-science/graphs/contributors).
## Sponsor Practicalli
[](https://github.com/sponsors/practicalli-johnny/)
All sponsorship funds are used to support the continued development of [Practicalli series of books and videos](https://practical.li/), although most work is done at personal cost and time.
Thanks to [Cognitect](https://www.cognitect.com/), [Nubank](https://nubank.com.br/) and a wide range of other [sponsors](https://github.com/sponsors/practicalli-johnny#sponsors) for your continued support
## Star History
[](https://star-history.com/#practicalli/clojure-data-science&Date)
## GitHub Actions
The megalinter GitHub actions will run when a pull request is created,checking basic markdown syntax.
A review of the change will be carried out by the Practicalli team and the PR merged if the change is acceptable.
The Publish Book GitHub action will run when PR's are merged into main (or the Practicalli team pushes changes to the default branch).
Publish book workflow installs Material for MkDocs version 9
## Local development
Install mkdocs version 9 using the Python pip package manager
```bash
pip install mkdocs-material=="9.*"
```
Install the plugins used by the Practicalli site using Pip (these are also installed in the GitHub Action workflow)
```bash
pip3 install mkdocs-material mkdocs-callouts mkdocs-glightbox mkdocs-git-revision-date-localized-plugin mkdocs-redirects pillow cairosvg
```
> pillow and cairosvg python packages are required for [Social Cards](https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/)
Fork the GitHub repository and clone that fork to your computer,
```bash
git clone https://github.com//.git
```
Run a local server from the root of the cloned project
```bash
mkdocs serve
```
The website will open at