Skip to content

Instantly share code, notes, and snippets.

@adidonato
adidonato / .block
Created October 13, 2018 09:47 — forked from mbostock/.block
Hierarchical Edge Bundling
license: gpl-3.0
height: 960
border: no

Keybase proof

I hereby claim:

  • I am adidonato on github.
  • I am adidonato (https://keybase.io/adidonato) on keybase.
  • I have a public key ASD1aLEnE7kEjcIryUo-gzc0K715sfuf16KH7rzvKm9f7wo

To claim this, I am signing this object:

@adidonato
adidonato / useful_pandas_snippets.py
Created November 5, 2015 17:16 — forked from bsweger/useful_pandas_snippets.md
Useful Pandas Snippets
#List unique values in a DataFrame column
pd.unique(df.column_name.ravel())
#Convert Series datatype to numeric, getting rid of any non-numeric values
df['col'] = df['col'].astype(str).convert_objects(convert_numeric=True)
#Grab DataFrame rows where column has certain values
valuelist = ['value1', 'value2', 'value3']
df = df[df.column.isin(value_list)]
#!/usr/local/bin/blue-python2.7
"""
TESTED WITH:
array = np.random.random(10)
value = 0.5
WHICH RESULTED IN:
@adidonato
adidonato / compose_apple_mail.sh
Created September 7, 2015 13:45
Mac osx: Send files via email using Mail.app from the terminal
#!/bin/bash
###################################################################
# usage: ./compose_apple_mail.sh 'address' 'Subject' path_to_file #
# no arguments are compulsory #
###################################################################
echo "tell application \"Mail\"
activate