Skip to content

A collection of workbooks designed around exploring data with Clojure

License

Notifications You must be signed in to change notification settings

KevinGreene/exploring-data

Repository files navigation

Exploring Data

The source code designed to accompany the workshop "Exploring Data With Clojure" for LambdaJam 2015.

Why

Clojure is a great tool for exploring and analyzing data

  • Being based on the JVM, Clojure has access to a wealth of libraries
  • Being based on the JVM, Clojure has access to a wealth of distributed computing and tuning tools
  • The REPL allows for testing code as it is written and exploring the data
  • Boot allows you to create simple scripts

Usage

As of right now, load up the files in your favorite Editor + REPL, and have fun.

I'd personally recommend Emacs, Cursive (an Intellij plugin), or NightCode

Suggestions

Random suggestions to ease your development

Alembic

For exploring data, I'd also recommend editing your Leiningen profile, located at ~/.lein/profiles.clj to include a dependency on [alembic "0.3.2"]

This way, if you're ever in a REPL and want to add another library, you can run

(use '[alembic.still])
(alembic.still/distill '[new.library "0.0.1"])

Or you can edit your project.clj file, and run

(use '[alembic.still])
(alembic.still/load-project)

to reload the Leiningen project

In-REPL Documentation

Running

(use 'clojure.repl)

will give you access to all of the functions in the clojure.repl namespace, notably doc, which will print out documentation related to a function.

Finding Data to Explore

Quora

Reddit

Github

Kaggle

Guide

Intro - Get acquainted with the very basics of Clojure, functions, and sequences

Data - How to load data from files and the web

Divvy - Visualizing data from Divvy's Data Challenge

Monte Carlo - Using Incanter and core clojure functions to easily graph Monte Carlo simulations and results

Classics - Deconstructing natural works with OpenNLP and other language tools

License

The MIT License (MIT)

Copyright (c) 2015 Kevin Greene

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A collection of workbooks designed around exploring data with Clojure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published