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
date | value | |
---|---|---|
2013-01 | 53 | |
2013-02 | 165 | |
2013-03 | 269 | |
2013-04 | 344 | |
2013-05 | 376 | |
2013-06 | 410 | |
2013-07 | 421 | |
2013-08 | 405 | |
2013-09 | 376 |
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
Date | Close | |
---|---|---|
3-31-1992 | 0.28 | |
4-30-1992 | 0.2875 | |
5-29-1992 | 0.275 | |
6-30-1992 | 0.25 | |
7-31-1992 | 0.25 | |
8-31-1992 | 0.225 | |
9-30-1992 | 0.225 | |
10-30-1992 | 0.2125 | |
11-30-1992 | 0.1375 |
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
date | close | open | |
---|---|---|---|
1-May-12 | 68.13 | 34.12 | |
30-Apr-12 | 63.98 | 45.56 | |
27-Apr-12 | 67.00 | 67.89 | |
26-Apr-12 | 89.70 | 78.54 | |
25-Apr-12 | 99.00 | 89.23 | |
24-Apr-12 | 130.28 | 99.23 | |
23-Apr-12 | 166.70 | 101.34 | |
20-Apr-12 | 234.98 | 122.34 | |
19-Apr-12 | 345.44 | 134.56 |
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
license: gpl-3.0 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title></title> | |
<script type='text/javascript' src="http://d3js.org/d3.v2.js"></script> | |
<script type='text/javascript' src="slopegraph.js"></script> | |
<style type='text/css'> | |
line.slope-line{ | |
stroke:green |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
license: gpl-3.0 |
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
license: MIT | |
border: no | |
height: 800 |
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
#!/usr/bin/python | |
import mechanize | |
import lxml.html | |
BASE_URL = "http://www2.durhamcountync.gov/sheriff/ips/default.aspx" | |
def parse_names(root): | |
# finds the names and prints | |
names = root.xpath("//a[@class='rvsnavy-bold']") |
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
// Built-in modules | |
var csv = require("csv"); | |
var fs = require("fs"); | |
var url = require("url"); | |
// Loaded from NPM | |
var $ = require("cheerio"); // jQuery-like DOM library | |
var async = require("async"); // Easier concurrency utils | |
var request = require("request"); // Make HTTP requests simply |