Skip to content

Instantly share code, notes, and snippets.

View ccarouge's full-sized avatar

Claire Carouge ccarouge

View GitHub Profile
@ccarouge
ccarouge / singleton.py
Created February 15, 2024 05:01
Create singleton object in python
"""Singleton Object."""
class Singleton(type):
"""Singleton base (meta) class."""
_instances = {}
def __call__(cls, *args, **kwargs):
"""Create the object on first call, return otherwise.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ccarouge
ccarouge / Correlation coef.ipynb
Created March 2, 2021 04:52
Calculate correlation coef. when data has missing values
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.
@ccarouge
ccarouge / Monte_carlo.ipynb
Last active June 29, 2020 05:40
Heatwave monte carlo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ccarouge
ccarouge / Monthly data.ipynb
Created May 19, 2020 01:55
Convert CSV to NetCDF
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.
@ccarouge
ccarouge / zero_pad.ipynb
Created December 2, 2019 02:55
Upsample data and fill with 0.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ccarouge
ccarouge / ensemble_mean.ipynb
Last active November 12, 2019 05:01
Compare models on different calendars
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.