Built with blockbuilder.org
From enjalots youtube tutorial :
https://www.youtube.com/watch?v=OnqDeuRW5CI&feature=youtu.be
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="D3 intro #1" /> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Drawing SVG Shapes</title> | |
</head> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="D3 intro #3" /> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Drawing SVG shapes with D3</title> | |
</head> | |
<body> | |
<svg width="50" height ="50"> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="D3 intro #3" /> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Drawing SVG shapes</title> | |
</head> | |
<body> | |
<Svg width="250" height=50> |
<!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> |
angular.module('app', ['ngResource', 'ngRoute']); | |
angular.module('app').config( function( $routeProvider, $locationProvider ) { | |
$locationProvider.html5Mode(true); | |
$routeProvider |
[a-z0-9!#$%&'*+/=?^_`{|}˜-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}˜-]+)*@ (?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])? |
{ | |
"metadata": { | |
"name": "", | |
"signature": "sha256:e3717668e11ea67888f9f37c428dddc06343ee08573444bd09bc32db963b02c8" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ |
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) |
# 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 |
Built with blockbuilder.org
From enjalots youtube tutorial :
https://www.youtube.com/watch?v=OnqDeuRW5CI&feature=youtu.be