A personal diary of DataFrame munging over the years.
Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals | |
| from gevent import monkey; monkey.patch_all() | |
| import re | |
| from urlparse import urljoin | |
| from gevent.pool import Pool | |
| import requests |
A personal diary of DataFrame munging over the years.
Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)
| all: example.ipynb example.html | |
| example.md: example.Rmd | |
| ./knit | |
| example.ipynb: example.md | |
| notedown example.md | sed '/%%r/d' > example.ipynb | |
| example.html: example.Rmd | |
| R -e "knitr::knit2html('example.Rmd')" |
Based on D3.JS and Dimple, ChartFactory provide the ability to build quickly D3.JS charts without coding any lines of javascript. Just define your dashboard in a JSON and voila !
charts: [
{id:'chart1',
width:800,height:250,
xAxis:{type:'Category',field: "Month",orderRule:'Date'},