西田 直樹
西田 直樹
<html lang='en'> | |
<head> | |
<title>Nyaplotjs example -- Heatmap</title> | |
<script src='http://d3js.org/d3.v3.min.js'></script> | |
<script src='https://rawgit.com/domitry/Nyaplotjs/master/release/nyaplot.js'></script> | |
</head> | |
<body> | |
<div id='vis'></div> | |
<script> | |
var data1 = [], MAX=50, MIN=0; |
<html lang='en'> | |
<head> | |
<title>Nyaplotjs example -- Vector field</title> | |
<script src='http://d3js.org/d3.v3.min.js'></script> | |
<script src='https://rawgit.com/domitry/Nyaplotjs/master/release/nyaplot.js'></script> | |
</head> | |
<body> | |
<div id='vis'></div> | |
<script> | |
var data1 = [], MAX=50, MIN=0; |
<html lang='en'> | |
<head> | |
<title>Nyaplotjs example -- Scatter</title> | |
<script src='http://d3js.org/d3.v3.min.js'></script> | |
<script src='https://rawgit.com/domitry/Nyaplotjs/master/release/nyaplot.js'></script> | |
</head> | |
<body> | |
<div id='vis'></div> | |
<script> | |
var data1 = [], MAX=50, MIN=0; |
西田 直樹
西田 直樹
Mikon is a flexible data structure for Ruby language, inspired by data.frame of R and Pandas of Python. Its goal is to make it easy to manipulate the real data, apply statistical function to it and visualize the result in Ruby language.
It is compatible with Nyaplot::DataFrame
and Statsample::Vector
, and most methods the both gem have can be applied to Mikon's data structure.
FROM ubuntu:14.04 | |
RUN apt-get update | |
RUN apt-get install -y g++ python-dev python-pip python-zmq libatlas-base-dev libzmq3-dev git curl | |
# ipython | |
RUN pip install ipython jinja2 tornado | |
# ruby | |
RUN apt-get install -y ruby2.0 ruby2.0-dev libssl-dev |