Skip to content

Instantly share code, notes, and snippets.

View Tdual's full-sized avatar
🏠
Working from home

tdual Tdual

🏠
Working from home
View GitHub Profile
{
"AWSEBDockerrunVersion": 2,
"volumes": [
{
"name": "storage",
"host": {
"sourcePath": "/storage"
}
}
],
@Tdual
Tdual / infer_freq
Created July 4, 2020 13:36
infer_freq
def infer_freq(self, pd_series):
d = {
"A": "year",
"M": "month",
"W": "week",
"D": "day",
"H": "hour",
"T": "min",
"S": "sec",
"L": "millisec",