Skip to content

Instantly share code, notes, and snippets.

@AmebaBrain
AmebaBrain / crosstab_dynamic.sql
Last active February 1, 2021 21:30
crosstab dynamic
drop table tmp_sales;
CREATE TABLE if not exists tmp_sales (
VendorID INT,
Employee VARCHAR,
Orders INT
);
insert
into tmp_sales
values (1, 'employee_a', 10)
@AmebaBrain
AmebaBrain / Julia_GaussianMixtures.ipynb
Last active March 17, 2019 00:03
Julia's GaussianMixtures package demo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.