Skip to content

Instantly share code, notes, and snippets.

@fhoffa
fhoffa / top_reddit_words.md
Last active September 1, 2021 20:08
The top 5 words for the top subreddits

The top 5 words for the top subreddits:

subr words
pics hell,minutes,hospital,build,backyard
funny soon,wanted,dads,photos,sums
videos better,change,plane,simple,curiosity
politics subject,democrat,democracy,basis,google
technology streaming,snowden,fast,edward,sued
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fhoffa
fhoffa / planes_correlation.ipynb
Last active December 22, 2015 10:29
Planes correlation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"metadata": {
"name": "io sensors correlation plots"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fhoffa
fhoffa / correlation between rows.sql
Created September 1, 2014 19:07
correlation between rows
SELECT CORR(a.value, b.value), a.rowid, b.rowid
FROM
(
SELECT column, value, rowid FROM
(
SELECT 'c1' column, c1 AS value, rowid
FROM
(SELECT 1 c1, 2 c2, 3 c3, 'id1' rowid), (SELECT 9 c1, 2 c2, 3 c3, 'id2' rowid), (SELECT 4 c1, 1 c2, 3 c3, 'id3' rowid)
),
(