(see YouTube channel for individual videos)
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
| def lighten_color(color, amount=0.5): | |
| """ | |
| Lightens the given color by multiplying (1-luminosity) by the given amount. | |
| Input can be matplotlib color string, hex string, or RGB tuple. | |
| Examples: | |
| >> lighten_color('g', 0.3) | |
| >> lighten_color('#F034A3', 0.6) | |
| >> lighten_color((.3,.55,.1), 0.5) | |
| """ |
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
| /** | |
| * To apply the theme: | |
| * 1) Open dev tools with CTRL + SHIFT + I | |
| * 2) Go to the console | |
| * 3) Paste the following code | |
| * Note: You will have to do this again whenever Github Desktop updates | |
| */ | |
| const fs = require('fs'); | |
| const path = require('path'); |
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 vaex | |
| import numpy as np | |
| import dask.dataframe as dd | |
| import dask | |
| import dask.distributed | |
| import json | |
| import os | |
| import time | |
| import argparse | |
| import multiprocessing |
OlderNewer