Skip to content

Commit

Permalink
For time frequencies, use 'h' instead of 'H' which is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinecarme committed Jun 16, 2024
1 parent ed3e5a9 commit 160fe69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import numpy as np
import pandas as pd

DATA_FREQ = 'H'
PERIODS = ["D" , "H"]
DATA_FREQ = 'h'
PERIODS = ["D" , "h"]
H = 365
N = H * 10
lDateColumn = "Date"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import numpy as np
import pandas as pd

DATA_FREQ = 'H'
PERIODS = ["T" , "H"]
DATA_FREQ = 'h'
PERIODS = ["min" , "h"]
H = 365
N = H * 10
lDateColumn = "Date"
Expand Down

0 comments on commit 160fe69

Please sign in to comment.