Skip to content

Instantly share code, notes, and snippets.

View lee1043's full-sized avatar
๐Ÿ˜Š

Jiwoo Lee lee1043

๐Ÿ˜Š
View GitHub Profile
@lee1043
lee1043 / .block
Last active October 15, 2018 20:10 — forked from mostaphaRoudsari/.block
Parallel Coordinates with mouseover highlight and tooltip (ENSO)
license: mit
@angstwad
angstwad / dict_merge.py
Last active December 22, 2024 16:02
Recursive dictionary merge in Python
import collections
def dict_merge(dct, merge_dct):
""" Recursive dict merge. Inspired by :meth:``dict.update()``, instead of
updating only top-level keys, dict_merge recurses down into dicts nested
to an arbitrary depth, updating keys. The ``merge_dct`` is merged into
``dct``.
:param dct: dict onto which the merge is executed
:param merge_dct: dct merged into dct
@mostaphaRoudsari
mostaphaRoudsari / .block
Last active November 26, 2020 04:03
Parallel Coordinates with mouseover highlight and tooltip
license: mit
@ycopin
ycopin / taylorDiagram.py
Last active April 14, 2025 08:22
Taylor diagram for python/matplotlib [ 10.5281/zenodo.5548061 ]
#!/usr/bin/env python
# Copyright: This document has been placed in the public domain.
"""
Taylor diagram (Taylor, 2001) implementation.
Note: If you have found these software useful for your research, I would
appreciate an acknowledgment.
"""