Built with blockbuilder.org
Built with blockbuilder.org
Built with blockbuilder.org
Built with blockbuilder.org
From enjalots youtube tutorial :
https://www.youtube.com/watch?v=OnqDeuRW5CI&feature=youtu.be
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
# import modules and establish Oracle ODBC connection | |
# plot config | |
import matplotlib.pyplot as plt | |
import matplotlib.colors as colors | |
import matplotlib.cm as cm | |
%matplotlib inline | |
import pyodbc |
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
axes = [ax, axb, axc] | |
legend_loc = ['upper left', 'upper right', (0.75, 0.7)] | |
axes_grid = [True, False, False] | |
ax_data = zip(axes, legend_loc, axes_grid) | |
for axis, legend_loc, grid in ax_data: | |
handles, labels = axis.get_legend_handles_labels() | |
axis.legend(handles, labels, loc=legend_loc, frameon=False) | |
axis.grid(grid) |
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
{ | |
"metadata": { | |
"name": "", | |
"signature": "sha256:e3717668e11ea67888f9f37c428dddc06343ee08573444bd09bc32db963b02c8" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ |
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-z0-9!#$%&'*+/=?^_`{|}˜-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}˜-]+)*@ (?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])? |
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
angular.module('app', ['ngResource', 'ngRoute']); | |
angular.module('app').config( function( $routeProvider, $locationProvider ) { | |
$locationProvider.html5Mode(true); | |
$routeProvider |
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 name="description" content="D3 intro 4 - bar chart" /> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> |