This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns hooray-data.core | |
(:gen-class) | |
(:use (incanter core stats charts io)) | |
(:use [incanter.processing :only (norm)])) | |
(def data (read-dataset | |
"https://raw.github.com/liebke/incanter/master/data/iris.dat" | |
:delim \space | |
:header true)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A set of bash/zsh functions that provide simple virtual environment | |
# capabilities for node. To install, just copy this file into your home | |
# directory and add the following to your .bashrc or .zshrc file: | |
# | |
# if [[ -f "$HOME/.nenv" ]]; then | |
# source "$HOME/.nenv" | |
# fi | |
# | |
# What this script provides is a set of functions that are activated whenever |
OlderNewer